You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C:\Users\user\Documents\Arduino\libraries\FHEM\src\FHEM.cpp: In member function 'void FHEM::PrepareClient(String)':
C:\Users\user\Documents\Arduino\libraries\FHEM\src\FHEM.cpp:83:14: error: call to 'HTTPClient::begin' declared with attribute error: obsolete API, use ::begin(WiFiClient, url)
83 | client.begin(URL);
| ~~~~~~~~~~~~^~~~~
exit status 1
localy fixed with:
on top add:
#include <WiFiClient.h>
WiFiClient wifiClient;
line 110: client.begin(wifiClient,URL);
The text was updated successfully, but these errors were encountered:
C:\Users\user\Documents\Arduino\libraries\FHEM\src\FHEM.cpp: In member function 'void FHEM::PrepareClient(String)':
C:\Users\user\Documents\Arduino\libraries\FHEM\src\FHEM.cpp:83:14: error: call to 'HTTPClient::begin' declared with attribute error: obsolete API, use ::begin(WiFiClient, url)
83 | client.begin(URL);
| ~~~~~~~~~~~~^~~~~
exit status 1
localy fixed with:
on top add:
#include <WiFiClient.h>
WiFiClient wifiClient;
line 110: client.begin(wifiClient,URL);
The text was updated successfully, but these errors were encountered: