suppress "warning: integer overflow in expression" error

This commit is contained in:
2020-06-11 06:13:11 +09:00
parent 34df514fdc
commit b6c7f206d0

View File

@@ -1,12 +1,12 @@
#include <Mouse.h>
void setup() {
// put your setup code here, to run once:
Mouse.begin();
}
void loop() {
delay(10 * 60 * 1000); //10min * 60sec * 1000ms
unsigned long wait_duration = 10 * 60 * 1000UL; //10min * 60sec * 1000ms
delay(wait_duration);
Mouse.move(1,0,0);
Mouse.move(-1,0,0);
}