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/ares | |
| 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/ares')
| -rw-r--r-- | keyboards/ares/ares.c | 3 | ||||
| -rw-r--r-- | keyboards/ares/config.h | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/ares/ares.c b/keyboards/ares/ares.c index e6379cb18..95d4b878f 100644 --- a/keyboards/ares/ares.c +++ b/keyboards/ares/ares.c | |||
| @@ -24,12 +24,11 @@ void keyboard_pre_init_kb(void) { | |||
| 24 | 24 | ||
| 25 | void led_init_ports(void) { | 25 | void led_init_ports(void) { |
| 26 | setPinOutput(D1); | 26 | setPinOutput(D1); |
| 27 | writePinHigh(D1); | ||
| 28 | } | 27 | } |
| 29 | 28 | ||
| 30 | bool led_update_kb(led_t led_state) { | 29 | bool led_update_kb(led_t led_state) { |
| 31 | if (led_update_user(led_state)) { | 30 | if (led_update_user(led_state)) { |
| 32 | writePin(D1, !led_state.caps_lock); | 31 | writePin(D1, led_state.caps_lock); |
| 33 | } | 32 | } |
| 34 | return true; | 33 | return true; |
| 35 | } | 34 | } |
diff --git a/keyboards/ares/config.h b/keyboards/ares/config.h index c50587db9..e298dfc95 100644 --- a/keyboards/ares/config.h +++ b/keyboards/ares/config.h | |||
| @@ -39,6 +39,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 39 | 39 | ||
| 40 | #define BACKLIGHT_PIN D4 | 40 | #define BACKLIGHT_PIN D4 |
| 41 | #define BACKLIGHT_LEVELS 3 | 41 | #define BACKLIGHT_LEVELS 3 |
| 42 | |||
| 42 | #define RGBLIGHT_ANIMATIONS | 43 | #define RGBLIGHT_ANIMATIONS |
| 43 | 44 | ||
| 44 | #define NO_UART 1 | 45 | #define NO_UART 1 |
