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 [ESPAsync_WiFiManager](https://github.com/khoih-prog/ESPAsync_WiFiManager) to ESP8266 boards using `LwIP W5500 Ethernet`.
2. Use `allman astyle`
  • Loading branch information
khoih-prog authored Dec 10, 2022
1 parent 8f042c1 commit 5ee13be
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
* [Use Arduino Library Manager](#use-arduino-library-manager)
* [Manual Install](#manual-install)
* [VS Code & PlatformIO](#vs-code--platformio)
* [Libraries' Patches](#libraries-patches)
* [1. For ESPAsyncWebServer library](#1-for-espasyncwebserver-library)
* [HOWTO Fix `Multiple Definitions` Linker Error](#howto-fix-multiple-definitions-linker-error)
* [How It Works](#how-it-works)
* [HOWTO Basic configurations](#howto-basic-configurations)
Expand Down Expand Up @@ -200,8 +198,6 @@ in many files. But be sure to use the following `#include <AsyncESP8266_W5500_Ma
#include <AsyncESP8266_W5500_Manager.h> //https://github.com/khoih-prog/AsyncESP8266_W5500_Manager
```

Check [Async_ConfigOnDoubleReset_Multi](examples/Async_ConfigOnDoubleReset_Multi) for an example how and where to do so.

Have a look at the discussion in [Different behaviour using the src_cpp or src_h lib #80](https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/discussions/80)

---
Expand Down Expand Up @@ -321,7 +317,7 @@ then connect `WebBrowser` to configurable ConfigPortal IP address, e.g. `192.168
#include <ESP_DoubleResetDetector.h> //https://github.com/khoih-prog/ESP_DoubleResetDetector

// Number of seconds after reset during which a
// subseqent reset will be considered a double reset.
// subsequent reset will be considered a double reset.
#define DRD_TIMEOUT 10

// RTC Memory Address for the DoubleResetDetector to use
Expand Down Expand Up @@ -1459,7 +1455,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
//AsyncESP8266_W5500_Manager AsyncESP8266_W5500_manager(&webServer, &dnsServer);
// Use this to personalize DHCP hostname (RFC952 conformed)
Expand Down
8 changes: 4 additions & 4 deletions examples/Async_ESP_FSWebServer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ Connect to Config Portal @ the localIP address, e.g. `192.168.2.186`
You'll see this `Main` page:

<p align="center">
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Main.png">
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Main.png">
</p>

Select `Information` to enter the Info page where the board info will be shown (long page)

<p align="center">
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Info.png">
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Info.png">
</p>


Select `Configuration` to enter this page where you can select an AP and specify its WiFi Credentials

<p align="center">
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Configuration_Standard.png">
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Configuration_Standard.png">
</p>

Enter your credentials, then click `Save`.
Expand Down Expand Up @@ -63,7 +63,7 @@ Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp8
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local.png">
</p>

4. Edit / Delete / Download any file in the the folder by going to http://async-esp8266fs.local/edit
4. Edit / Delete / Download any file in the the folder by going to http://async-esp8266fs.local/edit.htm

<p align="center">
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local_edit.png">
Expand Down
8 changes: 4 additions & 4 deletions examples/Async_ESP_FSWebServer_DRD/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ Connect to Config Portal @ the localIP address, e.g. `192.168.2.186`
You'll see this `Main` page:

<p align="center">
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Main.png">
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Main.png">
</p>

Select `Information` to enter the Info page where the board info will be shown (long page)

<p align="center">
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Info.png">
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Info.png">
</p>


Select `Configuration` to enter this page where you can select an AP and specify its WiFi Credentials

<p align="center">
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Configuration_Standard.png">
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Configuration_Standard.png">
</p>

Enter your credentials, then click `Save`.
Expand Down Expand Up @@ -63,7 +63,7 @@ Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp8
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local.png">
</p>

4. Edit / Delete / Download any file in the the folder by going to http://async-esp8266fs.local/edit
4. Edit / Delete / Download any file in the the folder by going to http://async-esp8266fs.local/edit.htm

<p align="center">
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local_edit.png">
Expand Down

0 comments on commit 5ee13be

Please sign in to comment.