pull/128/head
Garth Vander Houwen 2022-03-04 04:50:29 -08:00 zatwierdzone przez Ben Meadors
rodzic 9495168928
commit d947de35e5
2 zmienionych plików z 32 dodań i 7 usunięć

Wyświetl plik

@ -1196,6 +1196,21 @@ message MyNodeInfo {
* Percent of airtime for transmission used within the last hour.
*/
float air_util_tx = 20;
/*
* How many routers are we in range of?
*/
repeated uint32 router = 21;
/*
* What is the snr of the last router message?
*/
repeated float router_snr = 22;
/*
* How long has it been since we last heard from the router?
*/
repeated uint32 router_sec = 23;
}
/*

Wyświetl plik

@ -20,6 +20,16 @@ message Telemetry {
*/
int32 battery_level = 2;
/*
* Utilization for the current channel, including well formed TX, RX and malformed RX (aka noise).
*/
float channel_utilization = 3;
/*
* Percent of airtime for transmission used within the last hour.
*/
float air_util_tx = 4;
/*
* This is sent by node only if it a router and if hop_limit is set to 0
* and is not being sent as a reliable message.
@ -27,35 +37,35 @@ message Telemetry {
* Note to Ben & Garth : When position is refactored, please move this to the same message
* "time" is moving to.
*/
bool router_heartbeat = 3;
bool router_heartbeat = 5;
/*
* TODO: REPLACE
*/
float temperature = 4;
float temperature = 6;
/*
* TODO: REPLACE
*/
float relative_humidity = 5;
float relative_humidity = 7;
/*
* TODO: REPLACE
*/
float barometric_pressure = 6;
float barometric_pressure = 8;
/*
* TODO: REPLACE
*/
float gas_resistance = 7;
float gas_resistance = 9;
/*
* TODO: REPLACE
*/
float voltage = 8;
float voltage = 10;
/*
* TODO: REPLACE
*/
float current = 9;
float current = 11;
}