1
0
Fork 0

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:
Naoki Katahira 2019-01-06 02:30:48 +09:00 committed by Drashna Jaelre
parent 5b5f452bf9
commit ea47be936b
36 changed files with 1972 additions and 215 deletions

View file

@ -0,0 +1,15 @@
#include <stdio.h>
#include "lily58.h"
char mode_icon[24];
const char *read_mode_icon(bool swap) {
static char logo[][2][3] = {{{0x95, 0x96, 0}, {0xb5, 0xb6, 0}}, {{0x97, 0x98, 0}, {0xb7, 0xb8, 0}}};
if (swap == false) {
snprintf(mode_icon, sizeof(mode_icon), "%s\n%s", logo[0][0], logo[0][1]);
} else {
snprintf(mode_icon, sizeof(mode_icon), "%s\n%s", logo[1][0], logo[1][1]);
}
return mode_icon;
}