mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
10 lines
215 B
Protocol Buffer
10 lines
215 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "github.com/meshtastic/gomeshproto";
|
|
|
|
message EnvironmentalMeasurement {
|
|
|
|
float temperature = 1;
|
|
float relative_humidity = 2;
|
|
float barometric_pressure = 3;
|
|
|
|
}
|