File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## 3.13.2 [ 2024-06-04]
3
+ ### Fixes
4
+ - [ 236] ( https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/236 ) - Fix compilation problem on ESP32 Core 3.0.0
5
+
2
6
## 3.13.1 [ 2023-03-08]
3
7
### Fixes
4
8
- [ 210] ( https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/210 ) - Allow setting of options without previously set connection params
Original file line number Diff line number Diff line change 33
33
# include < ESP8266HTTPClient.h>
34
34
#elif defined(ESP32)
35
35
# include < HTTPClient.h>
36
+ # include < WiFiClient.h>
37
+ # include < WiFiClientSecure.h>
36
38
#else
37
39
# error "This library currently supports only ESP8266 and ESP32."
38
40
#endif
@@ -131,4 +133,5 @@ friend class Test;
131
133
bool isConnected () const { return _httpClient && _httpClient->connected (); }
132
134
};
133
135
134
- #endif // _HTTP_SERVICE_H_
136
+ #endif // _HTTP_SERVICE_H_
137
+
You can’t perform that action at this time.
0 commit comments