summaryrefslogtreecommitdiffstats
path: root/keyboards/lily58/rev1/rev1.c
diff options
context:
space:
mode:
authorNaoki Katahira <kata0510.com@gmail.com>2018-09-15 19:14:39 +0200
committerDrashna Jaelre <drashna@live.com>2018-09-15 19:14:39 +0200
commit9712501bf3291942067ac75b50b1675a265a3f11 (patch)
tree7225957f8b883babda6b25df88a3291ecdde7d98 /keyboards/lily58/rev1/rev1.c
parentdb35065e1431246b5297e644a867ee6f5449a6f4 (diff)
downloadqmk_firmware-9712501bf3291942067ac75b50b1675a265a3f11.tar.gz
qmk_firmware-9712501bf3291942067ac75b50b1675a265a3f11.tar.xz
Keyboard: Add Lily58 Keyboard (#3893)
* add Lily58 * file fix
Diffstat (limited to 'keyboards/lily58/rev1/rev1.c')
-rw-r--r--keyboards/lily58/rev1/rev1.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/lily58/rev1/rev1.c b/keyboards/lily58/rev1/rev1.c
new file mode 100644
index 000000000..64dd084b2
--- /dev/null
+++ b/keyboards/lily58/rev1/rev1.c
@@ -0,0 +1,24 @@
+#include "lily58.h"
+
+/*
+#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
+*/
+
+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();
+};
+