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/gray_studio/hb85/config.h | 3 +++ keyboards/gray_studio/hb85/hb85.c | 9 +++------ 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'keyboards/gray_studio/hb85') diff --git a/keyboards/gray_studio/hb85/config.h b/keyboards/gray_studio/hb85/config.h index dff360ec6a..f3fb20ec6b 100644 --- a/keyboards/gray_studio/hb85/config.h +++ b/keyboards/gray_studio/hb85/config.h @@ -33,3 +33,6 @@ along with this program. If not, see . #define RGBLED_NUM 5 #define RGBLIGHT_ANIMATIONS + +#define BACKLIGHT_PIN D4 +#define BACKLIGHT_LEVELS 3 diff --git a/keyboards/gray_studio/hb85/hb85.c b/keyboards/gray_studio/hb85/hb85.c index 57f5e60314..4b3ff64f1e 100644 --- a/keyboards/gray_studio/hb85/hb85.c +++ b/keyboards/gray_studio/hb85/hb85.c @@ -27,16 +27,13 @@ void led_init_ports(void) { setPinOutput(D0); setPinOutput(D1); setPinOutput(D6); - writePinHigh(D0); - writePinHigh(D1); - writePinHigh(D6); } bool led_update_kb(led_t led_state) { if (led_update_user(led_state)) { - writePin(D0, !led_state.num_lock); - writePin(D1, !led_state.caps_lock); - writePin(D6, !led_state.scroll_lock); + writePin(D0, led_state.num_lock); + writePin(D1, led_state.caps_lock); + writePin(D6, led_state.scroll_lock); } return true; } -- cgit v1.2.3