diff --git a/meshtastic/admin.proto b/meshtastic/admin.proto index a34c4aa..c64306f 100644 --- a/meshtastic/admin.proto +++ b/meshtastic/admin.proto @@ -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; } \ No newline at end of file diff --git a/meshtastic/telemetry.proto b/meshtastic/telemetry.proto index 93e8f21..32996f4 100644 --- a/meshtastic/telemetry.proto +++ b/meshtastic/telemetry.proto @@ -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; }