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

Commit 65d228f

Browse files
authored
v1.0.0 for ESP32 + LwIP W5500
#### Releases v1.0.0 1. Initial coding to port [ESPAsync_WiFiManager](https://github.com/khoih-prog/ESPAsync_WiFiManager) to ESP32 boards using `LwIP W5500 Ethernet`. 2. Use `allman astyle`
1 parent c70ffcc commit 65d228f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ then connect `WebBrowser` to configurable ConfigPortal IP address, e.g. `192.168
482482
#include <ESP_DoubleResetDetector.h> //https://github.com/khoih-prog/ESP_DoubleResetDetector
483483

484484
// Number of seconds after reset during which a
485-
// subseqent reset will be considered a double reset.
485+
// subsequent reset will be considered a double reset.
486486
#define DRD_TIMEOUT 10
487487

488488
// RTC Memory Address for the DoubleResetDetector to use
@@ -1005,7 +1005,7 @@ void loop()
10051005
Serial.println("\nConfiguration portal requested.");
10061006
digitalWrite(LED_BUILTIN, LED_ON); // turn the LED on by making the voltage LOW to tell us we are in configuration mode.
10071007

1008-
//Local intialization. Once its business is done, there is no need to keep it around
1008+
//Local initialization. Once its business is done, there is no need to keep it around
10091009
AsyncESP32_W5500_Manager AsyncESP32_W5500_Manager(&webServer, &dnsServer, "ConfigOnSwitchFS");
10101010

10111011
//Check if there is stored WiFi router/password credentials.
@@ -1436,7 +1436,7 @@ f.close();
14361436

14371437
### 6.3 Populate the just-read Jsonified data into the DynamicJsonDocument json object
14381438

1439-
We again use the same `DynamicJsonDocument json` object to store the data we've just read fron `CONFIG_FILE`.
1439+
We again use the same `DynamicJsonDocument json` object to store the data we've just read from `CONFIG_FILE`.
14401440

14411441
Why the same complicated `DynamicJsonDocument json` object ?? Because in steps 5, we did store `Jsonified data` using the same `DynamicJsonDocument json` object. It's much easier we now use it again to facilitate the parsing of `Jsonified data` back to the data we can use easily.
14421442

@@ -1616,7 +1616,7 @@ void loop()
16161616
Serial.println(F("\nConfiguration portal requested."));
16171617
digitalWrite(LED_BUILTIN, LED_ON); // turn the LED on by making the voltage LOW to tell us we are in configuration mode.
16181618

1619-
//Local intialization. Once its business is done, there is no need to keep it around
1619+
//Local initialization. Once its business is done, there is no need to keep it around
16201620
// Use this to default DHCP hostname to ESP32-XXXXXX
16211621
//AsyncESP32_W5500_Manager AsyncESP32_W5500_manager(&webServer, &dnsServer);
16221622
// Use this to personalize DHCP hostname (RFC952 conformed)

0 commit comments

Comments
 (0)