|
syntax = "proto3";
|
|
option go_package = "github.com/meshtastic/gomeshproto";
|
|
|
|
message EnvironmentalMeasurement {
|
|
|
|
float temperature = 1;
|
|
float relative_humidity = 2;
|
|
float barometric_pressure = 3;
|
|
float gas_resistance = 4;
|
|
float voltage = 5;
|
|
float current = 6;
|
|
|
|
}
|