Universal and automatic mouse jiggler:as easy as possible
additional parts (about 12€)
and some hot glue and cable ties to fix the parts in the case.
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
}
The author marked this model as their own original creation.