diff options
author | Danny Nguyen <danny@80pct.com> | 2017-05-29 16:20:06 -0400 |
---|---|---|
committer | Danny Nguyen <danny@80pct.com> | 2017-05-29 16:20:06 -0400 |
commit | 4a8da0cb45abc9fd490944682acc71ccb0d5ee72 (patch) | |
tree | b0e9ad068075e0ae4ed76753b8ce422a059dc866 /keyboards/nyquist/rev1/rev1.c | |
parent | aeade1b1972c8d3d8f32dd21e1ae31e6c9e702db (diff) | |
download | qmk_firmware-4a8da0cb45abc9fd490944682acc71ccb0d5ee72.tar.gz |
Modify pinout and layouts for Nyquist
Diffstat (limited to 'keyboards/nyquist/rev1/rev1.c')
-rw-r--r-- | keyboards/nyquist/rev1/rev1.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/keyboards/nyquist/rev1/rev1.c b/keyboards/nyquist/rev1/rev1.c index c505d3a6e..fc984e18c 100644 --- a/keyboards/nyquist/rev1/rev1.c +++ b/keyboards/nyquist/rev1/rev1.c @@ -1,10 +1,17 @@ -#include "lets_split.h" +#include "nyquist.h" #ifdef AUDIO_ENABLE float tone_startup[][2] = SONG(STARTUP_SOUND); float tone_goodbye[][2] = SONG(GOODBYE_SOUND); #endif +#ifdef SSD1306OLED +void led_set_kb(uint8_t usb_led) { + // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here + led_set_user(usb_led); +} +#endif + void matrix_init_kb(void) { #ifdef AUDIO_ENABLE |