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.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/qwertyydox/rev1/rev1.c b/keyboards/qwertyydox/rev1/rev1.c
new file mode 100644
index 000000000..609c479eb
--- /dev/null
+++ b/keyboards/qwertyydox/rev1/rev1.c
@@ -0,0 +1,22 @@
1#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};