meshtastic-protobuf/telemetry.proto

147 wiersze
2.5 KiB
Protocol Buffer
Czysty Zwykły widok Historia

syntax = "proto3";
2022-03-26 19:09:18 +00:00
option java_package = "com.geeksville.mesh";
option optimize_for = LITE_RUNTIME;
option go_package = "github.com/meshtastic/gomeshproto";
2022-03-26 19:09:18 +00:00
option java_outer_classname = "TelemetryProtos";
2022-02-21 07:48:42 +00:00
/*
2022-03-26 19:09:18 +00:00
* Key native device metrics such as battery level
2022-02-21 07:48:42 +00:00
*/
2022-03-26 19:09:18 +00:00
message DeviceMetrics {
2022-03-18 22:24:20 +00:00
/*
2022-03-26 19:09:18 +00:00
* 1-100 (0 means powered)
2022-03-04 12:46:12 +00:00
*/
2022-03-26 19:09:18 +00:00
uint32 battery_level = 1;
2022-03-18 22:24:20 +00:00
/*
2022-03-26 19:09:18 +00:00
* Voltage measured
2022-03-04 12:46:12 +00:00
*/
2022-03-26 19:30:35 +00:00
float voltage = 2;
2022-03-04 12:46:12 +00:00
2022-03-18 22:24:20 +00:00
/*
2022-03-04 12:50:29 +00:00
* Utilization for the current channel, including well formed TX, RX and malformed RX (aka noise).
*/
float channel_utilization = 3;
2022-03-26 19:09:18 +00:00
2022-03-04 12:50:29 +00:00
/*
* Percent of airtime for transmission used within the last hour.
*/
float air_util_tx = 4;
2022-03-26 19:09:18 +00:00
}
2022-03-04 12:46:12 +00:00
2022-03-26 19:09:18 +00:00
/*
* Weather station or other environmental metrics
*/
message EnvironmentMetrics {
2022-02-21 07:48:42 +00:00
/*
2022-03-19 13:50:56 +00:00
* Temperature measured
2022-02-21 07:48:42 +00:00
*/
2022-03-26 19:09:18 +00:00
float temperature = 1;
2022-02-21 07:48:42 +00:00
/*
2022-03-19 13:50:56 +00:00
* Relative humidity percent measured
2022-02-21 07:48:42 +00:00
*/
2022-03-26 19:09:18 +00:00
float relative_humidity = 2;
2022-02-21 07:48:42 +00:00
/*
2022-03-19 13:50:56 +00:00
* Barometric pressure in hPA measured
2022-02-21 07:48:42 +00:00
*/
2022-03-26 19:09:18 +00:00
float barometric_pressure = 3;
2022-02-21 07:48:42 +00:00
/*
2022-03-19 13:50:56 +00:00
* Gas resistance in mOhm measured
2022-02-21 07:48:42 +00:00
*/
2022-03-26 19:09:18 +00:00
float gas_resistance = 4;
2022-02-21 07:48:42 +00:00
/*
2022-03-19 13:50:56 +00:00
* Voltage measured
2022-02-21 07:48:42 +00:00
*/
2022-03-26 19:41:53 +00:00
float voltage = 5;
2022-02-21 07:48:42 +00:00
/*
2022-03-19 13:50:56 +00:00
* Current measured
2022-02-21 07:48:42 +00:00
*/
2022-03-26 19:41:53 +00:00
float current = 6;
}
2022-03-26 19:09:18 +00:00
/*
* Types of Measurements the telemetry module is equipped to handle
*/
message Telemetry {
/*
* This is usually not sent over the mesh (to save space), but it is sent
* from the phone so that the local device can set its RTC If it is sent over
* the mesh (because there are devices on the mesh without GPS), it will only
* be sent by devices which has a hardware GPS clock (IE Mobile Phone).
* seconds since 1970
*/
fixed32 time = 1;
oneof variant {
/*
* Key native device metrics such as battery level
*/
DeviceMetrics device_metrics = 2;
/*
* Weather station or other environmental metrics
*/
EnvironmentMetrics environment_metrics = 3;
}
}
/*
* TODO: REPLACE
*/
enum TelemetrySensorType {
/*
* No external telemetry sensor
*/
NotSet = 0;
/*
* TODO: REPLACE
*/
DHT11 = 1;
/*
* TODO: REPLACE
*/
DS18B20 = 2;
/*
* TODO: REPLACE
*/
DHT12 = 3;
/*
* TODO: REPLACE
*/
DHT21 = 4;
/*
* TODO: REPLACE
*/
DHT22 = 5;
/*
* TODO: REPLACE
*/
BME280 = 6;
/*
* TODO: REPLACE
*/
BME680 = 7;
/*
* TODO: REPLACE
*/
MCP9808 = 8;
/*
* TODO: REPLACE
*/
SHTC3 = 9;
};