Merge pull request #532 from tavdog/ws85_gust_lull

add ws85 serialmodule mode, add gust,lull to env telemetry
pull/533/head v2.4.0
Ben Meadors 2024-07-10 14:40:36 -05:00 zatwierdzone przez GitHub
commit 10494bf328
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -304,6 +304,8 @@ message ModuleConfig {
NMEA = 4;
// NMEA messages specifically tailored for CalTopo
CALTOPO = 5;
// Ecowitt WS85 weather station
WS85 = 6;
}
/*

Wyświetl plik

@ -118,6 +118,16 @@ message EnvironmentMetrics {
* Weight in KG
*/
float weight = 15;
/*
* Wind gust in m/s
*/
float wind_gust = 16;
/*
* Wind lull in m/s
*/
float wind_lull = 17;
}
/*