summaryrefslogtreecommitdiffstats
path: root/keyboards/lily58/rev1/rev1.c
diff options
context:
space:
mode:
authorNaoki Katahira <kata0510.com@gmail.com>2019-01-05 18:30:48 +0100
committerDrashna Jaelre <drashna@live.com>2019-01-05 18:30:48 +0100
commitea47be936b41a31e2644ad3403d91010916683ce (patch)
treec8db4d32373542cd1236a4d537fa45a00ed7b6fb /keyboards/lily58/rev1/rev1.c
parent5b5f452bf9feae121ec5c2f3e9d5d993fcb73f92 (diff)
downloadqmk_firmware-ea47be936b41a31e2644ad3403d91010916683ce.tar.gz
qmk_firmware-ea47be936b41a31e2644ad3403d91010916683ce.tar.xz
Keyboard: Lily58 update serial.c and add OLED (#4715)
* update serial.c and add OLED * update readme * keymap fix * keymap fix2
Diffstat (limited to 'keyboards/lily58/rev1/rev1.c')
-rw-r--r--keyboards/lily58/rev1/rev1.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/keyboards/lily58/rev1/rev1.c b/keyboards/lily58/rev1/rev1.c
index 4c54d7717..e78f2ccfa 100644
--- a/keyboards/lily58/rev1/rev1.c
+++ b/keyboards/lily58/rev1/rev1.c
@@ -1,14 +1,8 @@
#include "lily58.h"
-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();
-}; \ No newline at end of file
+#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 \ No newline at end of file