protobufs/telemetry.proto

39 lines
506 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
option go_package = "github.com/meshtastic/gomeshproto";
2022-02-21 18:48:42 +11:00
/*
* TODO: REPLACE
*/
message Telemetry {
2022-02-21 18:48:42 +11:00
/*
* TODO: REPLACE
*/
float temperature = 1;
2022-02-21 18:48:42 +11:00
/*
* TODO: REPLACE
*/
float relative_humidity = 2;
2022-02-21 18:48:42 +11:00
/*
* TODO: REPLACE
*/
float barometric_pressure = 3;
2022-02-21 18:48:42 +11:00
/*
* TODO: REPLACE
*/
2022-01-26 15:20:25 -06:00
float gas_resistance = 4;
2022-02-21 18:48:42 +11:00
/*
* TODO: REPLACE
*/
float voltage = 5;
2022-02-21 18:48:42 +11:00
/*
* TODO: REPLACE
*/
float current = 6;
}