add existing 128x64 screen setting to protos (#672)

This commit is contained in:
Thomas Göttgens 2025-04-07 11:46:44 +02:00 committed by GitHub
parent 5add3bae21
commit 5a5ab103d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -603,17 +603,17 @@ message Config {
*/
enum OledType {
/*
* Default / Auto
* Default / Autodetect
*/
OLED_AUTO = 0;
/*
* Default / Auto
* Default / Autodetect
*/
OLED_SSD1306 = 1;
/*
* Default / Auto
* Default / Autodetect
*/
OLED_SH1106 = 2;
@ -621,6 +621,11 @@ message Config {
* Can not be auto detected but set by proto. Used for 128x128 screens
*/
OLED_SH1107 = 3;
/*
* Can not be auto detected but set by proto. Used for 128x64 screens
*/
OLED_SH1107_128_64 = 4;
}
/*