Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions meshtastic/telemetry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,10 @@ enum TelemetrySensorType {
* SHT family of sensors for temperature and humidity
*/
SHTXX = 50;
/*
* VL53L0X distance, sensor
*/
VL53L0X = 51;
}

/*
Expand Down Expand Up @@ -922,3 +926,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;
}