@@ -82,7 +82,7 @@ static void hid_mouse_jiggler_timer_callback(void* context) {
model->counter++;
hid_hal_mouse_move(
hid_mouse_jiggler->hid,
- (model->counter % 2 == 0) ? MOUSE_MOVE_TINY : -MOUSE_MOVE_TINY,
+ (model->counter % 2 == 0) ? MOUSE_MOVE_SHORT : -MOUSE_MOVE_SHORT,
0);
}
},
@@ -2,7 +2,7 @@
#include <gui/view.h>
-#define MOUSE_MOVE_TINY 1
+#define MOUSE_MOVE_SHORT 5
typedef struct Hid Hid;
typedef struct HidMouseJiggler HidMouseJiggler;