initial commit

This commit is contained in:
2026-08-30 22:08:23 +02:00
commit 4a473f1b65
2 changed files with 17 additions and 0 deletions
View File
+17
View File
@@ -0,0 +1,17 @@
#include "DigiKeyboard.h"
void setup() {
// Give Linux time to enumerate the Digispark as a keyboard.
DigiKeyboard.delay(1000);
// Open a terminal.
DigiKeyboard.sendKeyStroke(KEY_T, MOD_CONTROL_LEFT | MOD_ALT_LEFT);
DigiKeyboard.delay(1000);
// Launch Firefox.
DigiKeyboard.print("firefox https://hadow.fr");
DigiKeyboard.sendKeyStroke(KEY_ENTER);
}
void loop() {
}