mirror of
https://github.com/me-no-dev/ESPAsyncWebServer.git
synced 2025-10-01 16:50:54 +02:00
Added notes and screenshots to README.md
ESPAsyncWiFiManager (alanswx port) tested Tested choices of ESPAsyncDNSServer and standard DNSServer
This commit is contained in:
BIN
examples/SmartSwitch/AWIFIMAN.JPG
Normal file
BIN
examples/SmartSwitch/AWIFIMAN.JPG
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
@@ -1,12 +1,12 @@
|
|||||||

|
 
|
||||||
|
|
||||||
* 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 |
@@ -60,7 +60,11 @@ AsyncWebServer server(80); //single port - easy for forwarding
|
|||||||
AsyncWebSocket ws("/ws");
|
AsyncWebSocket ws("/ws");
|
||||||
|
|
||||||
#ifdef USE_WFM
|
#ifdef USE_WFM
|
||||||
DNSServer dns;
|
#ifdef USE_EADNS
|
||||||
|
AsyncDNSServer dns;
|
||||||
|
#else
|
||||||
|
DNSServer dns;
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
const char* ssid = "MYSSD";
|
const char* ssid = "MYSSD";
|
||||||
const char* password = "MYPASSWD";
|
const char* password = "MYPASSWD";
|
||||||
|
Reference in New Issue
Block a user