aboutsummaryrefslogtreecommitdiff
path: root/keyboards/rgbkb/zen/rev1/rev1.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/rgbkb/zen/rev1/rev1.c')
-rw-r--r--keyboards/rgbkb/zen/rev1/rev1.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/keyboards/rgbkb/zen/rev1/rev1.c b/keyboards/rgbkb/zen/rev1/rev1.c
index 5f4cd32f6..520a869e5 100644
--- a/keyboards/rgbkb/zen/rev1/rev1.c
+++ b/keyboards/rgbkb/zen/rev1/rev1.c
@@ -1,22 +1 @@
1#include "rev1.h" #include "rev1.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};
22