Keyboard: Lily58 update serial.c and add OLED (#4715)
* update serial.c and add OLED * update readme * keymap fix * keymap fix2
This commit is contained in:
parent
5b5f452bf9
commit
ea47be936b
36 changed files with 1972 additions and 215 deletions
|
@ -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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue