Minor changes on VOC state array and docs

pull/750/head
oscgonfer 2025-08-29 15:28:20 +02:00
rodzic 51b444ec10
commit 77b00ce690
2 zmienionych plików z 17 dodań i 17 usunięć

Wyświetl plik

@ -637,7 +637,7 @@ message SEN5X_config {
optional float set_temperature = 1;
/*
* One-shot mode (true for low power - one-shot mode, false for normal - contionuous mode)
* One-shot mode (true for low power - one-shot mode, false for normal - continuous mode)
*/
optional bool set_one_shot_mode = 2;
}

Wyświetl plik

@ -812,23 +812,23 @@ message SEN5XState {
*/
bool last_cleaning_valid = 2;
/*
* VOC state time for SEN5X
*/
optional fixed64 voc_state = 3;
/*
* Last VOC state time for SEN5X
*/
optional uint32 voc_time = 4;
/*
* Last VOC state validity flag for SEN5X
*/
bool voc_valid = 5;
/*
* Config flag for one-shot mode (see admin.proto)
*/
bool one_shot_mode = 6;
bool one_shot_mode = 3;
/*
* Last VOC state time for SEN55
*/
optional uint32 voc_state_time = 4;
/*
* Last VOC state validity flag for SEN55
*/
optional bool voc_state_valid = 5;
/*
* VOC state array (8x uint8t) for SEN55
*/
optional fixed64 voc_state_array = 6;
}