Skip to content

Instantly share code, notes, and snippets.

@RonjaPonja
Created June 19, 2013 18:48
Show Gist options
  • Select an option

  • Save RonjaPonja/5816851 to your computer and use it in GitHub Desktop.

Select an option

Save RonjaPonja/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