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