From 6a26b23faf7cb4bb221db702ab7b2ab19096dc72 Mon Sep 17 00:00:00 2001 From: oscgonfer Date: Fri, 1 Aug 2025 13:38:29 +0200 Subject: [PATCH] Add low power and change to SCD4X --- meshtastic/admin.proto | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/meshtastic/admin.proto b/meshtastic/admin.proto index 65e3eac..a981080 100644 --- a/meshtastic/admin.proto +++ b/meshtastic/admin.proto @@ -583,12 +583,12 @@ message KeyVerificationAdmin { message SensorConfig { /* - * SCDXX CO2 Sensor configuration + * SCD4X CO2 Sensor configuration */ - SCDXX_config scdxx_config = 1; + SCD4X_config scd4x_config = 1; } -message SCDXX_config { +message SCD4X_config { /* * Set Automatic self-calibration enabled */ @@ -618,4 +618,9 @@ message SCDXX_config { * Perform a factory reset of the sensor */ optional bool factory_reset = 7; + + /* + * Low Power mode for sensor + */ + optional bool low_power = 8; }