From 2cce18e4e2726eaa9cbdcae82526d4e098d49a6f Mon Sep 17 00:00:00 2001 From: IAteYourCookies Date: Sun, 30 Nov 2025 12:19:37 +0100 Subject: [PATCH] Adjusted Values so acceleration isnt accounted for anymore. (I recently turned it off everywhere) --- src/main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index cdd8f31..2900e16 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -58,14 +58,15 @@ void setup() { void loop() { int buttonState = digitalRead(buttonPin); - const int purepixels = 8182; - const int kiripurepixels = 27300; + const int desktopFullScreenWidth = 1920; // To move my mouse a whole screen width to the right on a 1080p screen + const int purepixels = 6230; + const int kiripurepixels = 12995; const int input = purepixels; if ((buttonState != previousButtonState) && (buttonState == LOW)) { digitalWrite(LED_BUILTIN, LOW); - smoothMouseMove(input, 0, 1000, (input / 10)); + smoothMouseMove(input, 0, 1500, (input / 10)); delay(500); Serial.println("Button Pressed - Mouse should have sent event."); }