From 945d47e96df217bb8af83ecfd21a808d2b73a711 Mon Sep 17 00:00:00 2001 From: FURK4NGG <105324908+FURK4NGG@users.noreply.github.com> Date: Sat, 11 Apr 2026 00:53:08 +0300 Subject: [PATCH] Update desktop_deck.ino --- desktop_deck.ino | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/desktop_deck.ino b/desktop_deck.ino index b2866a7..2db8d3f 100644 --- a/desktop_deck.ino +++ b/desktop_deck.ino @@ -19,7 +19,8 @@ void setup() { void loop() { int buton_durumu = analogRead(Buton); int roled = digitalRead(role_d); - Serial.println(buton_durumu); + Serial.println("A1 Buton: "+String(buton_durumu)); + Serial.println("D6 Buton: "+String(roled)); if (roled==1){ int roleK = !i; i=!i; @@ -127,13 +128,13 @@ void linux_printscreen(){ if(a==1){ Keyboard.press(KEY_LEFT_CTRL); Keyboard.press(KEY_LEFT_SHIFT); - Keyboard.press(KEY_PRINT_SCREEN); + Keyboard.press(0xCE); delay(100); Keyboard.releaseAll();} else{ Keyboard.press(KEY_LEFT_CTRL); Keyboard.press(KEY_LEFT_SHIFT); - Keyboard.press(KEY_PAUSE); + Keyboard.press(0xD0); delay(100); Keyboard.releaseAll();} }