File tree 3 files changed +1
-20
lines changed
3 files changed +1
-20
lines changed Original file line number Diff line number Diff line change 1
1
name =Adafruit IO Arduino
2
- version =4.2.4
2
+ version =4.2.3
3
3
author =Adafruit
4
4
maintainer =Adafruit <
[email protected] >
5
5
sentence =Arduino library to access Adafruit IO.
Original file line number Diff line number Diff line change @@ -243,18 +243,6 @@ AdafruitIO_Dashboard *AdafruitIO::dashboard(const char *name) {
243
243
return new AdafruitIO_Dashboard (this , name);
244
244
}
245
245
246
- // due to breaking change within Arduino ESP32 BSP v2.0.8
247
- // see: https://github.com/espressif/arduino-esp32/pull/7941
248
- #ifdef ARDUINO_ARCH_ESP32
249
- /* *************************************************************************/
250
- /* !
251
- @brief Provide status explanation strings.
252
- @return A pointer to the status string literal, _status. _status is
253
- the AIO status value
254
- */
255
- /* *************************************************************************/
256
- const char *AdafruitIO::statusText () {
257
- #else
258
246
/* *************************************************************************/
259
247
/* !
260
248
@brief Provide status explanation strings.
@@ -263,7 +251,6 @@ const char *AdafruitIO::statusText() {
263
251
*/
264
252
/* *************************************************************************/
265
253
const __FlashStringHelper *AdafruitIO::statusText () {
266
- #endif
267
254
switch (_status) {
268
255
269
256
// CONNECTING
Original file line number Diff line number Diff line change @@ -87,13 +87,7 @@ class AdafruitIO {
87
87
AdafruitIO_Dashboard *dashboard (const char *name);
88
88
AdafruitIO_Time *time (aio_time_format_t format);
89
89
90
- // due to breaking change within Arduino ESP32 BSP v2.0.8
91
- // see: https://github.com/espressif/arduino-esp32/pull/7941
92
- #ifdef ARDUINO_ARCH_ESP32
93
- const char *statusText ();
94
- #else
95
90
const __FlashStringHelper *statusText ();
96
- #endif
97
91
98
92
aio_status_t status ();
99
93
/* *******************************************************************/
You can’t perform that action at this time.
0 commit comments