diff options
author | fauxpark <fauxpark@gmail.com> | 2020-01-24 14:24:10 +1100 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-01-23 19:24:10 -0800 |
commit | b56899976924043a9563c12987218abd78baf13d (patch) | |
tree | 10751dc02dd9fef177a1a4a57eda533a3f551b08 /keyboards/bfake | |
parent | fe50883c1568b1914fcadbe0c7f029c3f9fd99f4 (diff) |
Fix LED configuration for PS2AVRGB boards (#7989)
* Fix LED configuration for PS2AVRGB boards
* Undo backlight on state changes
Diffstat (limited to 'keyboards/bfake')
-rw-r--r-- | keyboards/bfake/bfake.c | 3 | ||||
-rw-r--r-- | keyboards/bfake/config.h | 1 |
2 files changed, 2 insertions, 2 deletions
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 <http://www.gnu.org/licenses/>. #define BACKLIGHT_PIN D4 #define BACKLIGHT_LEVELS 3 + #define RGBLIGHT_ANIMATIONS #define NO_UART 1 |