Add config message for sen5x

This commit is contained in:
oscgonfer 2025-08-08 10:59:31 +02:00
parent e44958478b
commit 06a69c09db

View file

@ -586,6 +586,11 @@ message SensorConfig {
* SCD4X CO2 Sensor configuration
*/
SCD4X_config scd4x_config = 1;
/*
* SEN5X PM Sensor configuration
*/
SEN5X_config sen5x_config = 2;
}
message SCD4X_config {
@ -624,3 +629,10 @@ message SCD4X_config {
*/
optional bool set_power_mode = 7;
}
message SEN5X_config {
/*
* Reference temperature in degC
*/
optional float set_temperature = 1;
}