mirror of
https://codeberg.org/ProgramSnail/my-crkbd-firmware.git
synced 2025-12-31 11:08:14 +00:00
init, separate crkbd config from qmk tree
This commit is contained in:
commit
f211e4a793
18 changed files with 1856 additions and 0 deletions
14
lib/mode_icon_reader.c
Normal file
14
lib/mode_icon_reader.c
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include <stdio.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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue