Created
August 18, 2016 20:42
-
-
Save wware/bdb53a6003116c4524a58d47285ad65d to your computer and use it in GitHub Desktop.
Teensy program to keep your computer awake (and therefore your VPN). Compile with Tools->USB->Keyboard.
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
int count = 0; | |
void setup() { } | |
void loop() { | |
int i; | |
Keyboard.print("Hello World "); | |
Keyboard.print(count); | |
count = count + 1; | |
delay(2000); | |
for (i = 0; i < 20; i++) { | |
Keyboard.print("\177"); | |
delay(200); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment