From b56899976924043a9563c12987218abd78baf13d Mon Sep 17 00:00:00 2001 From: fauxpark Date: Fri, 24 Jan 2020 14:24:10 +1100 Subject: Fix LED configuration for PS2AVRGB boards (#7989) * Fix LED configuration for PS2AVRGB boards * Undo backlight on state changes --- keyboards/bfake/bfake.c | 3 +-- keyboards/bfake/config.h | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'keyboards/bfake') diff --git a/keyboards/bfake/bfake.c b/keyboards/bfake/bfake.c index eb328ba833..6d0c927462 100644 --- a/keyboards/bfake/bfake.c +++ b/keyboards/bfake/bfake.c @@ -24,12 +24,11 @@ void keyboard_pre_init_kb(void) { void led_init_ports(void) { setPinOutput(D1); - writePinHigh(D1); } bool led_update_kb(led_t led_state) { if (led_update_user(led_state)) { - writePin(D1, !led_state.caps_lock); + writePin(D1, led_state.caps_lock); } return true; } diff --git a/keyboards/bfake/config.h b/keyboards/bfake/config.h index 7c814ccc93..ef7a866d3d 100644 --- a/keyboards/bfake/config.h +++ b/keyboards/bfake/config.h @@ -39,6 +39,7 @@ along with this program. If not, see . #define BACKLIGHT_PIN D4 #define BACKLIGHT_LEVELS 3 + #define RGBLIGHT_ANIMATIONS #define NO_UART 1 -- cgit v1.2.3