mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
auto-detect override settings
This commit is contained in:
parent
b3dbf38076
commit
b18e2fb04d
1 changed files with 26 additions and 0 deletions
26
config.proto
26
config.proto
|
|
@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue