add ws85 serialmodule mode, add gust,lull to env teleme

This commit is contained in:
Tavis 2024-07-09 21:50:10 -10:00
parent d191975ebc
commit 29f8011bce
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 = 15;
/*
* Wind lull in m/s
*/
float wind_lull = 16;
}
/*