Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit e2cafe1

Browse files
authored
v1.1.1
### Major Releases v1.1.1 1. Add **MultiWiFi feature to auto(Re)connect to the best WiFi at runtime** 2. Fix bug, typo and minor improvement. 3. Completely enhanced examples to use new MultiWiFi feature. 4. Add setCORSHeader function to allow **configurable CORS Header**. See [Using CORS feature](https://github.com/khoih-prog/ESPAsync_WiFiManager#15-using-cors-cross-origin-resource-sharing-feature) 5. Bump up to v1.1.1 to sync with [ESP_WiFiManager v1.0.11](https://github.com/khoih-prog/ESP_WiFiManager/releases/tag/v1.1.1).
1 parent 10cb2ed commit e2cafe1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -885,9 +885,9 @@ void loop()
885885
//ESPAsync_wifiManager.setAPStaticIPConfig(IPAddress(192, 168, 100, 1), IPAddress(192, 168, 100, 1), IPAddress(255, 255, 255, 0));
886886

887887
#if !USE_DHCP_IP
888-
#if USE_CONFIGURABLE_DNS
888+
#if USE_CONFIGURABLE_DNS
889889
// Set static IP, Gateway, Subnetmask, DNS1 and DNS2. New in v1.0.5
890-
ESPAsync_wifiManager.setSTAStaticIPConfig(stationIP, gatewayIP, netMask, dns1IP, dns2IP);
890+
ESPAsync_wifiManager.setSTAStaticIPConfig(stationIP, gatewayIP, netMask, dns1IP, dns2IP);
891891
#else
892892
// Set static IP, Gateway, Subnetmask, Use auto DNS1 and DNS2.
893893
ESPAsync_wifiManager.setSTAStaticIPConfig(stationIP, gatewayIP, netMask);
@@ -2153,7 +2153,7 @@ MQTT connection successful!
21532153
TWWWW WTWWWW WWTW
21542154
```
21552155
2156-
2. This is terminal debug output when running [Async_ConfigOnSwitchFS_MQTT_Ptr](examples/Async_ConfigOnSwitchFS_MQTT_Ptr) on ***ESP8266 NodeMCU 1.0.***. Config Portal was requested to input and save MQTT Credentials. The boards then connected to Adafruit MQTT Server successfully.
2156+
2. This is terminal debug output when running [Async_ConfigOnDRD_FS_MQTT_Ptr](examples/Async_ConfigOnDRD_FS_MQTT_Ptr) on ***ESP8266 NodeMCU 1.0.***. Config Portal was requested to input and save MQTT Credentials. The boards then connected to Adafruit MQTT Server successfully.
21572157
21582158
```
21592159
Starting Async_ConfigOnDRD_FS_MQTT_Ptr using LittleFS on ESP8266_NODEMCU

0 commit comments

Comments
 (0)