March 5, 2022
Description
Universal and automatic mouse jiggler: as easy as possible
additional parts (about 10€)
arduino example code: (i used output pin 5)
void setup() {
pinMode(5, OUTPUT);
}
void loop() {
digitalWrite(5, 0); //ON
delay(25); //wait
digitalWrite(5, 1); //OFF and wait long time
delay(10000); //wait
}
License:
Creative Commons - Attribution - Non-Commercial