Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

device-ui update: store calibration data, added enum Norwegian language translation #623

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions meshtastic/device_ui.options
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions meshtastic/device_ui.proto
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ message DeviceUIConfig {
* Node list highlightening
*/
NodeHighlight node_highlight = 13;

/*
* 8 integers for screen calibration data
*/
bytes calibration_data = 14;
}


Expand Down Expand Up @@ -215,6 +220,11 @@ enum Language {
GREEK = 13;

/*
* Norwegian
*/
NORWEGIAN = 14;

/*
* Simplified Chinese (experimental)
*/
SIMPLIFIED_CHINESE = 30;
Expand Down