Created
February 6, 2021 19:42
-
-
Save mbcrump/e06c44285f60eb323c8740f7753fe2a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ Converted using digiQuack by CedArctic (https://github.com/CedArctic/digiQuack) | |
#include "DigiKeyboard.h" | |
void setup() { | |
delay(1000); | |
DigiKeyboard.sendKeyStroke(0); | |
// CTRL-ALT-T | |
DigiKeyboard.sendKeyStroke(KEY_T, MOD_CONTROL_LEFT | MOD_ALT_RIGHT); | |
DigiKeyboard.delay(1000); | |
DigiKeyboard.print("ls -l"); | |
DigiKeyboard.delay(1000); | |
DigiKeyboard.sendKeyStroke(KEY_ENTER); | |
//DigiKeyboard.delay(1000); | |
//DigiKeyboard.print("Hello, World!"); | |
} | |
void loop() { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment