mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
38 lines
506 B
Protocol Buffer
38 lines
506 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "github.com/meshtastic/gomeshproto";
|
|
|
|
/*
|
|
* TODO: REPLACE
|
|
*/
|
|
message Telemetry {
|
|
|
|
/*
|
|
* TODO: REPLACE
|
|
*/
|
|
float temperature = 1;
|
|
|
|
/*
|
|
* TODO: REPLACE
|
|
*/
|
|
float relative_humidity = 2;
|
|
|
|
/*
|
|
* TODO: REPLACE
|
|
*/
|
|
float barometric_pressure = 3;
|
|
|
|
/*
|
|
* TODO: REPLACE
|
|
*/
|
|
float gas_resistance = 4;
|
|
|
|
/*
|
|
* TODO: REPLACE
|
|
*/
|
|
float voltage = 5;
|
|
|
|
/*
|
|
* TODO: REPLACE
|
|
*/
|
|
float current = 6;
|
|
}
|