This commit is contained in:
Stelios Mavridis 2026-04-17 21:50:10 +02:00 committed by GitHub
commit 19a78854d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -881,6 +881,11 @@ enum TelemetrySensorType {
* DS248X Bridge for one-wire temperature sensors
*/
DS248X = 51;
/*
* VL53L0X distance, sensor
*/
VL53L0X = 52;
}
/*
@ -932,3 +937,17 @@ message SEN5XState {
*/
optional fixed64 voc_state_array = 6;
}
message VL53L0XState {
enum RangingMode {
Default = 0;
LongRange = 1;
HighSpeed = 2;
HighAccuracy = 3;
}
/*
* Current Ranging Mode
*/
RangingMode mode = 1;
}