Add temperature offset to environment config

Introduced a new float field 'environment_temperature_offset' to the EnvironmentConfig message, allowing adjustment of reported sensor temperature readings by a specified offset in Celsius.
pull/715/head
Client 2025-06-24 20:16:38 +02:00
rodzic 6791138f0b
commit 036e81e82e
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -608,6 +608,12 @@ message ModuleConfig {
* Enable/Disable the health telemetry module on-device display
*/
bool health_screen_enabled = 13;
/*
* Temperature offset in Celsius to apply to sensor readings
* Positive values increase reported temperature, negative values decrease it
*/
float environment_temperature_offset = 14;
}
/*