summaryrefslogtreecommitdiffstats
path: root/keyboard/planck/planck.c
diff options
context:
space:
mode:
authorStephan Bösebeck <stephan.boesebeck@holidayinsider.com>2016-01-25 10:52:29 +0100
committerStephan Bösebeck <stephan.boesebeck@holidayinsider.com>2016-01-25 10:52:29 +0100
commitda7f259a1ff085946b87602905fca74577a29903 (patch)
treee6b1e5bd2a24a49c15e38368360b7263581f493f /keyboard/planck/planck.c
parentf958b2e83203e4e0ba1814d7c5936e20a337f0a8 (diff)
parent99c72d0d9b5baec52f801887ee595e623aaf0b3f (diff)
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'keyboard/planck/planck.c')
-rw-r--r--keyboard/planck/planck.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/keyboard/planck/planck.c b/keyboard/planck/planck.c
index b62862af04..63ca54761c 100644
--- a/keyboard/planck/planck.c
+++ b/keyboard/planck/planck.c
@@ -15,6 +15,11 @@ void * matrix_init_kb(void) {
backlight_init_ports();
#endif
+ #ifdef RGBLIGHT_ENABLE
+ rgblight_init();
+ #endif
+
+
// Turn status LED on
DDRE |= (1<<6);
PORTE |= (1<<6);
@@ -28,4 +33,4 @@ void * matrix_scan_kb(void) {
if (matrix_scan_user) {
(*matrix_scan_user)();
}
-}; \ No newline at end of file
+};