We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 126f8d0 commit a9bdeb3Copy full SHA for a9bdeb3
src/AdafruitIO.h
@@ -148,7 +148,11 @@ class AdafruitIO {
148
Adafruit IO, in milliseconds */
149
150
Adafruit_MQTT *_mqtt; /*!< Reference to Adafruit_MQTT, _mqtt. */
151
- HttpClient *_http; /*!< Reference to HTTPClient, _http */
+ #if defined ARDUINO_ARCH_ESP32
152
+ HTTPClient *_http; /*!< Reference to ESP32 HTTPClient, _http */
153
+ #else
154
+ HttpClient *_http; /*!< Reference to HTTPClient, _http */
155
+ #endif
156
157
char _version[10]; /*!< Adafruit IO Arduino library version */
158
0 commit comments