Merge pull request #623 from meshtastic/device-ui-update

device-ui update: store calibration data, added enum Norwegian language translation
This commit is contained in:
Ben Meadors 2024-11-17 19:20:27 -06:00 committed by GitHub
commit 52688fdccb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions

View file

@ -1,6 +1,7 @@
*DeviceUIConfig.screen_brightness int_size:8
*DeviceUIConfig.screen_timeout int_size:16
*DeviceUIConfig.ring_tone_id int_size:8
*DeviceUIConfig.calibration_data max_size:16
*NodeFilter.node_name max_size:16
*NodeFilter.hops_away int_size:8
*NodeHighlight.node_name max_size:16

View file

@ -61,6 +61,11 @@ message DeviceUIConfig {
* Node list highlightening
*/
NodeHighlight node_highlight = 13;
/*
* 8 integers for screen calibration data
*/
bytes calibration_data = 14;
}
@ -215,6 +220,11 @@ enum Language {
GREEK = 13;
/*
* Norwegian
*/
NORWEGIAN = 14;
/*
* Simplified Chinese (experimental)
*/
SIMPLIFIED_CHINESE = 30;