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

Commit

Permalink
v1.0.0 for ESP8266 + LwIP W5500
Browse files Browse the repository at this point in the history
#### Releases v1.0.0

1. Initial coding to port `synchronous` [ESP_WiFiManager](https://github.com/khoih-prog/ESP_WiFiManager) to ESP8266 boards using `LwIP W5500 Ethernet`.
2. Use `allman astyle`
  • Loading branch information
khoih-prog committed Dec 12, 2022
1 parent 2deebdf commit 92138a5
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1406,7 +1406,7 @@ void loop()
Serial.println(F("\nConfiguration portal requested."));
digitalWrite(LED_BUILTIN, LED_ON); // turn the LED on by making the voltage LOW to tell us we are in configuration mode.

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager;
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down
2 changes: 1 addition & 1 deletion examples/ConfigOnDoubleReset/ConfigOnDoubleReset.ino
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ void setup()

initSTAIPConfigStruct(EthSTA_IPconfig);

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager;
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down
2 changes: 1 addition & 1 deletion examples/ConfigOnDoubleReset_TZ/ConfigOnDoubleReset_TZ.ino
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ void setup()

initSTAIPConfigStruct(EthSTA_IPconfig);

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager;
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down
4 changes: 2 additions & 2 deletions examples/ConfigOnSwitch/ConfigOnSwitch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ void setup()

digitalWrite(LED_BUILTIN, LED_ON); // turn the LED on by making the voltage LOW to tell us we are in configuration mode.

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager;
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down Expand Up @@ -680,7 +680,7 @@ void loop()
Serial.println(F("\nConfiguration portal requested."));
digitalWrite(LED_BUILTIN, LED_ON); // turn the LED on by making the voltage LOW to tell us we are in configuration mode.

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager;
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down
4 changes: 2 additions & 2 deletions examples/ConfigOnSwitchFS/ConfigOnSwitchFS.ino
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ void setup()

unsigned long startedAt = millis();

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager;
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down Expand Up @@ -852,7 +852,7 @@ void loop()
Serial.println(F("\nConfiguration portal requested."));
digitalWrite(LED_BUILTIN, LED_ON); // turn the LED on by making the voltage LOW to tell us we are in configuration mode.

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager;
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ void setup()

initSTAIPConfigStruct(EthSTA_IPconfig);

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager;
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down Expand Up @@ -787,7 +787,7 @@ void loop()
Serial.println(F("\nConfiguration portal requested."));
digitalWrite(LED_BUILTIN, LED_ON); // turn the LED on by making the voltage LOW to tell us we are in configuration mode.

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager;
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down
2 changes: 1 addition & 1 deletion examples/ESP_FSWebServer/ESP_FSWebServer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ void setup()

digitalWrite(LED_BUILTIN, LED_ON);

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager(&webServer, &dnsServer);
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down
2 changes: 1 addition & 1 deletion examples/ESP_FSWebServer_DRD/ESP_FSWebServer_DRD.ino
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ void setup()

digitalWrite(LED_BUILTIN, LED_ON);

//Local intialization. Once its business is done, there is no need to keep it around
//Local initialization. Once its business is done, there is no need to keep it around
// Use this to default DHCP hostname to ESP8266-XXXXXX or ESP32-XXXXXX
//ESP8266_W5500_Manager ESP8266_W5500_manager(&webServer, &dnsServer);
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down

0 comments on commit 92138a5

Please sign in to comment.