Skip to content

Instantly share code, notes, and snippets.

@aldrinleal
Created January 15, 2015 03:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aldrinleal/234190919134301f48cf to your computer and use it in GitHub Desktop.
Save aldrinleal/234190919134301f48cf to your computer and use it in GitHub Desktop.
vtnc.ino
void setup() {
delay(10000);
Keyboard.begin();
}
const char* msg = "// vai tomar bem no meio da rodinha do olho do cu";
void loop() {
for (char* c = (char*) msg; *c; c++) {
delay(1000);
Keyboard.write(*c);
}
for (;;)
delay(10000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment