mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
add veml7700 ambient light readings to the env merics
This commit is contained in:
parent
1bfe0354d1
commit
5f6dc3a1a8
1 changed files with 22 additions and 1 deletions
|
|
@ -82,6 +82,23 @@ message EnvironmentMetrics {
|
|||
* RCWL9620 Doppler Radar Distance Sensor, used for water level detection. Float value in mm.
|
||||
*/
|
||||
float distance = 8;
|
||||
|
||||
/*
|
||||
* VEML7700 high accuracy ambient light(Lux) digital 16-bit resolution sensor.
|
||||
*/
|
||||
float lux = 9;
|
||||
|
||||
/*
|
||||
* VEML7700 raw white light data digital 16-bit resolution sensor.
|
||||
*/
|
||||
uint32 white = 10;
|
||||
|
||||
/*
|
||||
* VEML7700 raw ALS data digital 16-bit resolution sensor.
|
||||
*/
|
||||
uint32 ALS = 11;
|
||||
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -309,4 +326,8 @@ enum TelemetrySensorType {
|
|||
* Sensirion High accuracy temperature and humidity
|
||||
*/
|
||||
SHT4X = 17;
|
||||
}
|
||||
/*
|
||||
* VEML7700 high accuracy ambient light(Lux) digital 16-bit resolution sensor.
|
||||
*/
|
||||
VEML7700 = 18;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue