This commit is contained in:
oscgonfer 2026-01-20 09:53:48 +01:00
parent af5d147428
commit 32906d5cdd
2 changed files with 24 additions and 24 deletions

View file

@ -638,61 +638,61 @@ message KeyVerificationAdmin {
message SensorConfig {
/*
* SCD4X CO2 Sensor configuration
*/
* SCD4X CO2 Sensor configuration
*/
SCD4X_config scd4x_config = 1;
/*
* SEN5X PM Sensor configuration
*/
* SEN5X PM Sensor configuration
*/
SEN5X_config sen5x_config = 2;
}
message SCD4X_config {
/*
* Set Automatic self-calibration enabled
*/
* Set Automatic self-calibration enabled
*/
optional bool set_asc = 1;
/*
* Recalibration target CO2 concentration in ppm (FRC or ASC)
*/
* Recalibration target CO2 concentration in ppm (FRC or ASC)
*/
optional uint32 set_target_co2_conc = 2;
/*
* Reference temperature in degC
*/
* Reference temperature in degC
*/
optional float set_temperature = 3;
/*
* Altitude of sensor in meters above sea level. 0 - 3000m (overrides ambient pressure)
*/
* Altitude of sensor in meters above sea level. 0 - 3000m (overrides ambient pressure)
*/
optional uint32 set_altitude = 4;
/*
* Sensor ambient pressure in Pa. 70000 - 120000 Pa (overrides altitude)
*/
* Sensor ambient pressure in Pa. 70000 - 120000 Pa (overrides altitude)
*/
optional uint32 set_ambient_pressure = 5;
/*
* Perform a factory reset of the sensor
*/
* Perform a factory reset of the sensor
*/
optional bool factory_reset = 6;
/*
* Power mode for sensor (true for low power, false for normal)
*/
* Power mode for sensor (true for low power, false for normal)
*/
optional bool set_power_mode = 7;
}
message SEN5X_config {
/*
* Reference temperature in degC
*/
* Reference temperature in degC
*/
optional float set_temperature = 1;
/*
* One-shot mode (true for low power - one-shot mode, false for normal - continuous mode)
*/
* One-shot mode (true for low power - one-shot mode, false for normal - continuous mode)
*/
optional bool set_one_shot_mode = 2;
}
}

View file

@ -846,7 +846,7 @@ enum HardwareModel {
MESHSTICK_1262 = 121;
/*
* LilyGo T-Beam 1W
* LilyGo T-Beam 1W
*/
TBEAM_1_WATT = 122;