]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix RGBLIGHT startup color (#1975)
authordrashna <drashna@live.com>
Mon, 6 Nov 2017 16:43:38 +0000 (08:43 -0800)
committerJack Humbert <jack.humb@gmail.com>
Mon, 6 Nov 2017 16:43:38 +0000 (11:43 -0500)
* Fix RGBLIGHT startup color

While it's awesome to see the layer indicating code in here (no really!), and the general rule is to not alter the default keymap/code....

The problem with the layer_state_set_kb call handling this, is that the code doesn't seem to be called at startup.  So the default layer color won't ever get set on startup.  It needs to be called in the init function to be properly set.

I've played with this extensively, and if you check my keymaps, that is precisely why I have the setrgb/sethsv in the init function.

* Removed typo (pipe)

keyboards/ergodox_ez/keymaps/default/keymap.c

index d2976812f5ac8e57e6ebd53113beb7677ed29cfb..3c15b8a44cb85a52220a946744570c26750b0ca0 100644 (file)
@@ -194,7 +194,9 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
 
 // Runs just one time when the keyboard initializes.
 void matrix_init_user(void) {
-
+#ifdef RGBLIGHT_COLOR_LAYER_0
+  rgblight_setrgb(RGBLIGHT_COLOR_LAYER_0);
+#endif
 };
 
 // Runs constantly in the background, in a loop.