Add low power and change to SCD4X

This commit is contained in:
oscgonfer 2025-08-01 13:38:29 +02:00
parent 27d40f03d2
commit 6a26b23faf

View file

@ -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;
}