aboutsummaryrefslogtreecommitdiff
path: root/keyboards/keebio/nyquist/rev3/rev3.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/keebio/nyquist/rev3/rev3.c')
-rw-r--r--keyboards/keebio/nyquist/rev3/rev3.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/keyboards/keebio/nyquist/rev3/rev3.c b/keyboards/keebio/nyquist/rev3/rev3.c
new file mode 100644
index 000000000..34500fb10
--- /dev/null
+++ b/keyboards/keebio/nyquist/rev3/rev3.c
@@ -0,0 +1,21 @@
1#include "rev3.h"
2
3#ifdef SSD1306OLED
4void led_set_kb(uint8_t usb_led) {
5 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
6 led_set_user(usb_led);
7}
8#endif
9
10void matrix_init_kb(void) {
11
12 // // green led on
13 // DDRD |= (1<<5);
14 // PORTD &= ~(1<<5);
15
16 // // orange led on
17 // DDRB |= (1<<0);
18 // PORTB &= ~(1<<0);
19
20 matrix_init_user();
21};