diff options
author | Drashna Jaelre <drashna@live.com> | 2020-06-15 03:41:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-15 03:41:28 -0700 |
commit | 357a888d805c21c9cb4917f55d558195e8b85db5 (patch) | |
tree | fd1e8c30c3754ff89e8efd7e94ced3a1a8d92035 /users/drashna/drashna.c | |
parent | 7f5656996ca2f5a62a148ef9165d0681ba806f07 (diff) |
[Keymap] Drashna's Keymap Update - Display Edition (#9282)
OLED Display fixes
Add support for RGBLIGHT Layers
Add gaming layer to corn and kyria
RGBLight Startup Animation fixes and improvements (uses matrix_scan now!)
Pimoroni Trackball support added (IT'S RGB!!!)
Fix issues due to code changes
Diffstat (limited to 'users/drashna/drashna.c')
-rw-r--r-- | users/drashna/drashna.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/users/drashna/drashna.c b/users/drashna/drashna.c index ba19d4803f..5c0f180278 100644 --- a/users/drashna/drashna.c +++ b/users/drashna/drashna.c @@ -113,13 +113,9 @@ void shutdown_user(void) { rgblight_setrgb_red(); #endif // RGBLIGHT_ENABLE #ifdef RGB_MATRIX_ENABLE -# ifdef __AVR__ rgb_matrix_set_color_all(0xFF, 0x00, 0x00); rgb_matrix_update_pwm_buffers(); -# else - rgb_matrix_sethsv_noeeprom(0, 255, 255); - rgb_matrix_mode_noeeprom(1); -# endif + #endif // RGB_MATRIX_ENABLE shutdown_keymap(); } |