mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
add environmental measurements
This commit is contained in:
parent
efa2aa613e
commit
9306464417
2 changed files with 16 additions and 0 deletions
9
environmental_measurement.proto
Normal file
9
environmental_measurement.proto
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
syntax = "proto3";
|
||||
|
||||
message EnvironmentalMeasurement {
|
||||
|
||||
float temperature = 1;
|
||||
float relative_humidity = 2;
|
||||
float barometric_pressure = 3;
|
||||
|
||||
}
|
||||
|
|
@ -101,6 +101,13 @@ enum PortNum {
|
|||
*/
|
||||
RANGE_TEST_APP = 66;
|
||||
|
||||
/*
|
||||
* Provides a format to send and receive environmental data from the Meshtastic network.
|
||||
*
|
||||
* Maintained by Charles Crossan (crossan007) : crossan007@gmail.com
|
||||
*/
|
||||
ENVIRONMENTAL_MEASUREMENT_APP = 67;
|
||||
|
||||
/*
|
||||
* Private applications should use portnums >= 256.
|
||||
* To simplify initial development and testing you can use "PRIVATE_APP"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue