mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-03 22:24:16 -04:00
Updating OLED Layout
- test drove a graphics heavy layout but it was too much - Going back to a more minimalist layout
This commit is contained in:
parent
5227e86273
commit
409bf5b702
4 changed files with 329 additions and 66 deletions
|
@ -22,6 +22,7 @@
|
|||
# define OLED_RENDER_DEFAULT_LAYER2 "Clmak"
|
||||
# define OLED_RENDER_DEFAULT_LAYER3 "Game "
|
||||
|
||||
# define OLED_RENDER_LAYER_1 " "
|
||||
# define OLED_RENDER_LAYER_2 " Nav "
|
||||
# define OLED_RENDER_LAYER_3 " Num "
|
||||
# define OLED_RENDER_LAYER_4 " Sym "
|
||||
|
@ -45,26 +46,34 @@ void render_mod_status(bool vertical);
|
|||
void render_feature_status(bool vertical);
|
||||
|
||||
|
||||
static const char PROGMEM scroll_off[] = {0x8D, 0};
|
||||
static const char PROGMEM scroll_on[] = {0x8E, 0};
|
||||
static const char PROGMEM scroll_off[] = {0xC0, 0};
|
||||
static const char PROGMEM scroll_on[] = {0xC1, 0};
|
||||
|
||||
static const char PROGMEM num_off[] = {0xAD, 0};
|
||||
static const char PROGMEM num_on[] = {0xAE, 0};
|
||||
static const char PROGMEM num_off[] = {0xC2, 0};
|
||||
static const char PROGMEM num_on[] = {0xC3, 0};
|
||||
|
||||
static const char PROGMEM caps_off[] = {0xCD, 0};
|
||||
static const char PROGMEM caps_on[] = {0xCE, 0};
|
||||
static const char PROGMEM caps_off[] = {0xC4, 0};
|
||||
static const char PROGMEM caps_on[] = {0xC5, 0};
|
||||
|
||||
static const char PROGMEM shift_off[] = {0x85, 0x86, 0};
|
||||
static const char PROGMEM shift_on[] = {0x87, 0x88, 0};
|
||||
static const char PROGMEM shift_off_upper[] = {0x80, 0x81, 0x82, 0};
|
||||
static const char PROGMEM shift_off_lower[] = {0xA0, 0xA1, 0xA2, 0};
|
||||
static const char PROGMEM shift_on_upper[] = {0x83, 0x84, 0x85, 0};
|
||||
static const char PROGMEM shift_on_lower[] = {0xA3, 0xA4, 0xA5, 0};
|
||||
|
||||
static const char PROGMEM ctrl_off[] = {0xA9, 0xAA, 0};
|
||||
static const char PROGMEM ctrl_on[] = {0xAB, 0xAC, 0};
|
||||
static const char PROGMEM ctrl_off_upper[] = {0x86, 0x87, 0x88, 0};
|
||||
static const char PROGMEM ctrl_off_lower[] = {0xA6, 0xA7, 0xA8, 0};
|
||||
static const char PROGMEM ctrl_on_upper[] = {0x89, 0x8A, 0x8B, 0};
|
||||
static const char PROGMEM ctrl_on_lower[] = {0xA9, 0xAA, 0xAB, 0};
|
||||
|
||||
static const char PROGMEM alt_off[] = {0xA5, 0xA6, 0};
|
||||
static const char PROGMEM alt_on[] = {0xA7, 0xA8, 0};
|
||||
static const char PROGMEM alt_off_upper[] = {0x8C, 0x8D, 0x8E, 0};
|
||||
static const char PROGMEM alt_off_lower[] = {0xAC, 0xAD, 0xAE, 0};
|
||||
static const char PROGMEM alt_on_upper[] = {0x8F, 0x90, 0x91, 0};
|
||||
static const char PROGMEM alt_on_lower[] = {0xAF, 0xB0, 0xB1, 0};
|
||||
|
||||
static const char PROGMEM gui_off[] = {0x89, 0x8A, 0};
|
||||
static const char PROGMEM gui_on[] = {0x8B, 0x8C, 0};
|
||||
static const char PROGMEM gui_off_upper[] = {0x92, 0x93, 0x94, 0};
|
||||
static const char PROGMEM gui_off_lower[] = {0xB2, 0xB3, 0xB4, 0};
|
||||
static const char PROGMEM gui_on_upper[] = {0x95, 0x96, 0x97, 0};
|
||||
static const char PROGMEM gui_on_lower[] = {0xB5, 0xB6, 0xB7, 0};
|
||||
|
||||
static const char PROGMEM rgb_off[] = {0xC5, 0xC6, 0};
|
||||
static const char PROGMEM rgb_on[] = {0xC7, 0xC8, 0};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue