Skip to content

Instantly share code, notes, and snippets.

@Rmurthy1
Rmurthy1 / wabbajackDownloader.ahk
Created May 7, 2024 06:08
wabbajack auto downloader autohotkey (uses text selection instead of image recognition)
#Requires AutoHotkey v2.0
StopLoop := False
F5:: {
Global StopLoop
StopLoop := False
@Rmurthy1
Rmurthy1 / mem.ino
Created March 1, 2024 20:08
ESP 32 memory reporting block
Serial.println( " Heap: " );
Serial.print( " Total: " );
Serial.println( ESP.getHeapSize() );
Serial.print( " Used: " );
Serial.println( ESP.getHeapSize() - ESP.getFreeHeap() );
Serial.print( " Free: " );
Serial.println( ESP.getFreeHeap() );
Serial.println( " PSRAM: " );
Serial.print( " Total: " );
Serial.println( ESP.getPsramSize() );