Made major changes to OLED

- now I understand how the system works I can make my own fonts/graphics
- overhauled the 32x128 OLED screen display. Will still tweak it
This commit is contained in:
Victor 2024-05-27 00:08:27 -05:00
parent 1822862388
commit 7013d39810
Failed to generate hash of commit
5 changed files with 397 additions and 46 deletions

View file

@ -4,8 +4,7 @@ static uint8_t current_base_layer = _DEFAULT_LAYER_1;
layer_state_t layer_state_set_user(layer_state_t state) {
state = update_tri_layer_state(state, _NAVIGATION, _NUMBER, _SYMBOL);
return state;
return update_tri_layer_state(state, _NAVIGATION, _NUMBER, _SYMBOL);;
}