feature/http_call_send_json #3

Merged
f merged 56 commits from feature/http_call_send_json into master 2022-11-27 11:02:22 +01:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit 9abd468fbc - Show all commits

View file

@ -567,7 +567,7 @@ void _fsm_loop()
}
#ifdef WEBUPDATER_FEATURE
setSensorData(currentSensorData);
sentWindspeed(currentSensorData[SENSOR_WINDSPEED]);
#endif
#endif

View file

@ -79,6 +79,11 @@ void doWebUpdater(void)
//*************************************************************************//
void sentWindspeed(float ws)
{
_webUpdater_sensValues[SENSOR_WINDSPEED] = ws;
}
void setWifiReconnectCnt(uint32_t wrc)
{
_wifi_reconnect_cnt = wrc;