auto-detect override settings

pull/231/head
Thomas Göttgens 2022-11-03 22:18:17 +01:00 zatwierdzone przez GitHub
rodzic b3dbf38076
commit b18e2fb04d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 26 dodań i 0 usunięć

Wyświetl plik

@ -399,6 +399,27 @@ message Config {
*/
IMPERIAL = 1;
}
/*
* Override OLED outo detect with this if it fails.
*/
enum OledType {
/*
* Default / Auto
*/
OLED_AUTO = 0;
/*
* Default / Auto
*/
OLED_SSD1306 = 1;
/*
* Default / Auto
*/
OLED_SH1106 = 2;
}
/*
* Number of seconds the screen stays on after pressing the user button or receiving a message
@ -432,6 +453,11 @@ message Config {
* Perferred display units
*/
DisplayUnits units = 6;
/*
* Override auto-detect in screen
*/
OledType oled = 7;
}
/*