-
Notifications
You must be signed in to change notification settings - Fork 1
Commands
XQuantumWaveX edited this page Sep 26, 2025
·
26 revisions
✅ Basic Functions
| Command | Example | Description |
|---|---|---|
REM |
REM Hello World! |
Comment line |
DELAY |
DELAY 1000 |
Wait in ms |
DEFAULTDELAY |
DEFAULTDELAY 200 |
Default delay between commands |
STRING |
STRING Hello World! |
Types text |
REPEAT |
REPEAT 3 |
Repeats last command |
LOCALE |
LOCALE DE |
Switches keyboard layout |
KEYCODE |
KEYCODE 0x02 0x04 |
Sends HID keycodes |
LED |
LED 40 20 10 |
Sets RGB color |
✅ Modifier & Special Keys
| Command | Aliases | Description |
|---|---|---|
CTRL |
CONTROL |
Control key |
SHIFT |
- | Shift key |
ALT |
- | Alt key |
WINDOWS |
GUI |
Windows key |
ENTER |
- | Enter/Return |
TAB |
- | Tab |
ESC |
ESCAPE |
Escape |
DELETE |
DEL |
Delete |
UP |
UPARROW |
Up arrow |
DOWN |
DOWNARROW |
Down arrow |
LEFT |
LEFTARROW |
Left arrow |
RIGHT |
RIGHTARROW |
Right arrow |
CAPSLOCK |
- | Caps Lock |
NUMLOCK |
- | Num Lock |
PRINTSCREEN |
- | Print Screen |
✅ Advanced Features
| Feature | Command Example | Description |
|---|---|---|
| Conditional Execution | IF_PRESENT SSID="MyWiFi" |
Runs only if SSID found |
IF_NOTPRESENT SSID="Guest" |
Runs if SSID not found | |
| Hold Keys | HOLD SHIFT 10 |
Hold SHIFT for 10s |
HOLD_TILL_STRING |
Hold until next STRING | |
| Rowed Payloads | BEGIN_ROWER … END_ROWER |
Chain multiple payloads |
| Math Ops |
VAR1=5 + VAR2=3 → VAR1+VAR2=8
|
Supports + - × ÷ |
| Variables | VAR myVar=Hello |
Define and reuse variables |
| Self-Destruct | SELFDESTRUCT password |
Erases firmware |