Merge pull request #532 from tavdog/ws85_gust_lull

add ws85 serialmodule mode, add gust,lull to env telemetry
This commit is contained in:
Ben Meadors 2024-07-10 14:40:36 -05:00 committed by GitHub
commit 10494bf328
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 0 deletions

View file

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

View file

@ -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;
}
/*