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/mehkee96 | |
| parent | fe50883c1568b1914fcadbe0c7f029c3f9fd99f4 (diff) | |
| download | qmk_firmware-b56899976924043a9563c12987218abd78baf13d.tar.gz qmk_firmware-b56899976924043a9563c12987218abd78baf13d.zip | |
Fix LED configuration for PS2AVRGB boards (#7989)
* Fix LED configuration for PS2AVRGB boards
* Undo backlight on state changes
Diffstat (limited to 'keyboards/mehkee96')
| -rw-r--r-- | keyboards/mehkee96/mehkee96.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/keyboards/mehkee96/mehkee96.c b/keyboards/mehkee96/mehkee96.c index 2da25b6b8..ae83a1bb5 100644 --- a/keyboards/mehkee96/mehkee96.c +++ b/keyboards/mehkee96/mehkee96.c | |||
| @@ -25,14 +25,12 @@ void keyboard_pre_init_kb(void) { | |||
| 25 | void led_init_ports(void) { | 25 | void led_init_ports(void) { |
| 26 | setPinOutput(D0); | 26 | setPinOutput(D0); |
| 27 | setPinOutput(D1); | 27 | setPinOutput(D1); |
| 28 | writePinHigh(D0); | ||
| 29 | writePinHigh(D1); | ||
| 30 | } | 28 | } |
| 31 | 29 | ||
| 32 | bool led_update_kb(led_t led_state) { | 30 | bool led_update_kb(led_t led_state) { |
| 33 | if (led_update_user(led_state)) { | 31 | if (led_update_user(led_state)) { |
| 34 | writePin(D0, !led_state.num_lock); | 32 | writePin(D0, led_state.num_lock); |
| 35 | writePin(D1, !led_state.caps_lock); | 33 | writePin(D1, led_state.caps_lock); |
| 36 | } | 34 | } |
| 37 | return true; | 35 | return true; |
| 38 | } | 36 | } |
