Skip to content

Instantly share code, notes, and snippets.

@alecGraves
Created April 11, 2019 17:34
Show Gist options
  • Save alecGraves/fb33d4396e36fbdbeda677cece6aaab0 to your computer and use it in GitHub Desktop.
Save alecGraves/fb33d4396e36fbdbeda677cece6aaab0 to your computer and use it in GitHub Desktop.
#include <Mouse.h>
void setup() {
// must run for mouse to work
Mouse.begin();
}
void loop() {
for(int i(0); i<40; ++i){
Mouse.move(1, 1, 0);
delay(25);
}
for(int i(0); i<40; ++i){
Mouse.move(-1, -1, 0);
delay(25);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment