diff options
author | Naoki Katahira <kata0510.com@gmail.com> | 2019-01-06 02:30:48 +0900 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-01-05 09:30:48 -0800 |
commit | ea47be936b41a31e2644ad3403d91010916683ce (patch) | |
tree | c8db4d32373542cd1236a4d537fa45a00ed7b6fb /keyboards/lily58/lily58.c | |
parent | 5b5f452bf9feae121ec5c2f3e9d5d993fcb73f92 (diff) | |
download | qmk_firmware-ea47be936b41a31e2644ad3403d91010916683ce.tar.gz qmk_firmware-ea47be936b41a31e2644ad3403d91010916683ce.zip |
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/lily58.c')
-rw-r--r-- | keyboards/lily58/lily58.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/keyboards/lily58/lily58.c b/keyboards/lily58/lily58.c index 697e3820c6..eacd90a82d 100644 --- a/keyboards/lily58/lily58.c +++ b/keyboards/lily58/lily58.c @@ -1 +1,10 @@ - #include "lily58.h" +#include "lily58.h" +#include "ssd1306.h" + +bool process_record_kb(uint16_t keycode, keyrecord_t *record) { +#ifdef SSD1306OLED + return process_record_gfx(keycode,record) && process_record_user(keycode, record); +#else + return process_record_user(keycode, record); +#endif +}
\ No newline at end of file |