Added notes and screenshots to README.md

ESPAsyncWiFiManager (alanswx port) tested
Tested choices of ESPAsyncDNSServer and standard DNSServer
This commit is contained in:
lorol
2020-03-12 07:46:16 -04:00
parent 3860983960
commit 7d648b45a2
4 changed files with 8 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -1,12 +1,12 @@
![](SCREENSHOT.PNG) ![](SCREENSHOT.PNG) ![](AWIFIMAN.JPG)
* SmartSwitch application ## SmartSwitch
* Based on ESP_AsyncFSBrowser * Based on ESP_AsyncFSBrowser
* Temperature Control for heater with schedule for car block heater or battery charger * Temperature Control for heater with schedule for car block heater or battery charger
* Wide browser compatibility, no extra server-side needed. * Wide browser compatibility, no extra server-side needed.
* HTTP server and WebSocket, single port * HTTP server and WebSocket, single port
* Standalone, no JS dependencies for the browser from Internet (I hope) * Standalone, no JS dependencies for the browser from Internet (I hope)
* Based on ESP_AsyncFSBrowser * Added ESPAsyncWiFiManager
* Real Time (NTP) w/ Time Zones * Real Time (NTP) w/ Time Zones
* Memorized settings to EEPROM * Memorized settings to EEPROM
* Multiple clients can be connected at same time, they see each other requests * Multiple clients can be connected at same time, they see each other requests

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View File

@@ -60,7 +60,11 @@ AsyncWebServer server(80); //single port - easy for forwarding
AsyncWebSocket ws("/ws"); AsyncWebSocket ws("/ws");
#ifdef USE_WFM #ifdef USE_WFM
#ifdef USE_EADNS
AsyncDNSServer dns;
#else
DNSServer dns; DNSServer dns;
#endif
#else #else
const char* ssid = "MYSSD"; const char* ssid = "MYSSD";
const char* password = "MYPASSWD"; const char* password = "MYPASSWD";