diff options
author | Stephan Bösebeck <stephan.boesebeck@holidayinsider.com> | 2016-01-25 10:52:29 +0100 |
---|---|---|
committer | Stephan Bösebeck <stephan.boesebeck@holidayinsider.com> | 2016-01-25 10:52:29 +0100 |
commit | da7f259a1ff085946b87602905fca74577a29903 (patch) | |
tree | e6b1e5bd2a24a49c15e38368360b7263581f493f /keyboard/planck/planck.h | |
parent | f958b2e83203e4e0ba1814d7c5936e20a337f0a8 (diff) | |
parent | 99c72d0d9b5baec52f801887ee595e623aaf0b3f (diff) |
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'keyboard/planck/planck.h')
-rw-r--r-- | keyboard/planck/planck.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/keyboard/planck/planck.h b/keyboard/planck/planck.h index e775ea7c62..00b01b54df 100644 --- a/keyboard/planck/planck.h +++ b/keyboard/planck/planck.h @@ -6,6 +6,9 @@ #ifdef BACKLIGHT_ENABLE #include "backlight.h" #endif +#ifdef RGBLIGHT_ENABLE + #include "rgblight.h" +#endif #include <stddef.h> #ifdef MIDI_ENABLE #include <keymap_midi.h> @@ -22,7 +25,7 @@ { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b }, \ { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b }, \ { k30, k31, k32, k33, k34, k35, k35, k37, k38, k39, k3a, k3b } \ -} +} #define PLANCK_GRID( \ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, \ @@ -35,9 +38,9 @@ { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b }, \ { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b }, \ { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b } \ -} +} void * matrix_init_user(void); void * matrix_scan_user(void); -#endif
\ No newline at end of file +#endif |