diff options
author | Danny <nooges@users.noreply.github.com> | 2018-04-20 20:02:09 -0400 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-04-20 17:02:09 -0700 |
commit | c604cd6fd716a84432ecc66edb69d74b5d23bbad (patch) | |
tree | fcce87af81eae55cc23fbc8346dcdab8ad482f5d /keyboards/nyquist/rev2/rev2.c | |
parent | 2a63e212794627ee649e4649355ecce8d1a790b8 (diff) |
Add Nyquist Rev. 2 (#2414)
Diffstat (limited to 'keyboards/nyquist/rev2/rev2.c')
-rw-r--r-- | keyboards/nyquist/rev2/rev2.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/keyboards/nyquist/rev2/rev2.c b/keyboards/nyquist/rev2/rev2.c new file mode 100644 index 0000000000..9922b8995a --- /dev/null +++ b/keyboards/nyquist/rev2/rev2.c @@ -0,0 +1,21 @@ +#include "rev2.h" + +#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) { + + // // green led on + // DDRD |= (1<<5); + // PORTD &= ~(1<<5); + + // // orange led on + // DDRB |= (1<<0); + // PORTB &= ~(1<<0); + + matrix_init_user(); +}; |