1
0
Fork 0

[Keyboard] Satisfaction75 Protoype/Rev1 split, and new VIA features (#5303)

* Add satisfaction75 revision 1

* Update manufacturer

* Add tester layout and update rev1 comments

* Add ifdef guards for OLED for tester

* Add oled disabling rules

* Update to save backlight settings and setup for VIA custom config

* Add new VIA values to satisfaction75

* Safety guard in clock set mode

* Fix mistaken doc edit

* Address PR comments

* bring the default back to pass travis CI

* Address further PR comments
This commit is contained in:
Andrew Kannan 2019-03-11 23:47:50 -04:00 committed by Drashna Jaelre
parent fd43259cbd
commit e046872a80
13 changed files with 326 additions and 46 deletions

View file

@ -3,6 +3,7 @@
__attribute__ ((weak))
void draw_ui() {
#ifdef QWIIC_MICRO_OLED_ENABLE
clear_buffer();
last_flush = timer_read();
send_command(DISPLAYON);
@ -22,6 +23,7 @@ void draw_ui() {
send_command(DISPLAYOFF);
break;
}
#endif
}
void draw_encoder(int8_t startX, int8_t startY, bool show_legend){