Skip to content

Instantly share code, notes, and snippets.

@HerrSpace
Created June 19, 2013 18:48
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 HerrSpace/5816851 to your computer and use it in GitHub Desktop.
Save HerrSpace/5816851 to your computer and use it in GitHub Desktop.
tioan
void setup() {
Mouse.begin();
}
void loop() {
Mouse.move(0, 0, 0);
delay(20);
Mouse.move(0, 1000, 0);
delay(20);
Mouse.move(1000, 1000, 0);
delay(20);
Mouse.move(1000, 0, 0);
delay(20);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment