Porównaj commity

...

4 Commity

Autor SHA1 Wiadomość Data
Ben Meadors f92900c5f8
Merge pull request #483 from meshtastic/uptime
Add uptime seconds
2024-04-11 07:01:42 -05:00
Ben Meadors 4051bdbee0
Add uptime seconds 2024-04-10 07:07:37 -05:00
Thomas Göttgens 22cbd0d4cf
Merge pull request #482 from meshtastic/bme680-iaq
Add field for Air quality index (VOC for other sensors)
2024-04-09 14:09:21 +02:00
Thomas Göttgens 61de46ab06 Add fieldfor Air quality index (VOC for other sensors) 2024-04-09 14:01:40 +02:00
2 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
# options for nanopb
# https://jpa.kapsi.fi/nanopb/docs/reference.html#proto-file-options
*EnvironmentMetrics.iaq int_size:16

Wyświetl plik

@ -31,6 +31,11 @@ message DeviceMetrics {
* Percent of airtime for transmission used within the last hour.
*/
float air_util_tx = 4;
/*
* How long the device has been running since the last reboot (in seconds)
*/
uint32 uptime_seconds = 5;
}
/*
@ -66,6 +71,12 @@ message EnvironmentMetrics {
* Current measured (To be depreciated in favor of PowerMetrics in Meshtastic 3.x)
*/
float current = 6;
/*
* relative scale IAQ value as measured by Bosch BME680 . value 0-500.
* Belongs to Air Quality but is not particle but VOC measurement. Other VOC values can also be put in here.
*/
uint32 iaq = 7;
}
/*