max - reduced keyboard backlight brightness to 32

This commit is contained in:
pelgraine
2026-06-02 23:07:32 +10:00
parent ef13cfac7e
commit 6966ae724b
+1 -1
View File
@@ -4118,7 +4118,7 @@ void handleKeyboardInput() {
if (key == KB_KEY_KBD_BACKLIGHT) {
static bool kbdBacklightOn = false;
kbdBacklightOn = !kbdBacklightOn;
analogWrite(KB_BL_PIN, kbdBacklightOn ? 128 : 0);
analogWrite(KB_BL_PIN, kbdBacklightOn ? 32 : 0);
Serial.printf("Keyboard backlight %s\n", kbdBacklightOn ? "ON" : "OFF");
return;
}