File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ He is making great Arduino libraries.
43
43
- ** Flexible Configuration:** ESPConnect can either control the configuration persistence for you or let you do it
44
44
- ** mDNS / DNS Support**
45
45
- ** Ethernet support**
46
- - ** Ready for Arduino 3 (ESP-IDF 5.1)**
46
+ - ** Ready for Arduino 3 (ESP-IDF >= 5.1)**
47
47
- ** ESP8266 support** (except for Ethernet)
48
48
- ** Supports Static IP configuration**
49
49
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ He is making great Arduino libraries.
43
43
- ** Flexible Configuration:** ESPConnect can either control the configuration persistence for you or let you do it
44
44
- ** mDNS / DNS Support**
45
45
- ** Ethernet support**
46
- - ** Ready for Arduino 3 (ESP-IDF 5.1)**
46
+ - ** Ready for Arduino 3 (ESP-IDF >= 5.1)**
47
47
- ** ESP8266 support** (except for Ethernet)
48
48
- ** Supports Static IP configuration**
49
49
Original file line number Diff line number Diff line change @@ -635,11 +635,7 @@ void Mycila::ESPConnect::_enableCaptivePortal() {
635
635
636
636
// we have some results
637
637
for (int i = 0 ; i < n; ++i) {
638
- #if ARDUINOJSON_VERSION_MAJOR == 6
639
- JsonObject entry = json.createNestedObject ();
640
- #else
641
- JsonObject entry = json.add <JsonObject>();
642
- #endif
638
+ JsonObject entry = json.add <JsonObject>();
643
639
entry[" name" ] = WiFi.SSID (i);
644
640
entry[" rssi" ] = WiFi.RSSI (i);
645
641
entry[" signal" ] = _wifiSignalQuality (WiFi.RSSI (i));
You can’t perform that action at this time.
0 commit comments