From 036e81e82ea01325e4b5ccc2b512229aef391b8a Mon Sep 17 00:00:00 2001 From: Client Date: Tue, 24 Jun 2025 20:16:38 +0200 Subject: [PATCH] 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. --- meshtastic/module_config.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meshtastic/module_config.proto b/meshtastic/module_config.proto index e6c1694..d2d66ec 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -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; } /*