mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-08-14 01:45:54 +08:00
Update esp3d.cpp
add missing mdns.update(); for ESP8266 in loop thanks @dmonty2 for pointing this
This commit is contained in:
parent
0d785a020e
commit
983d229ee8
@ -255,6 +255,11 @@ void Esp3D::begin(uint16_t startdelayms, uint16_t recoverydelayms)
|
|||||||
//Process which handle all input
|
//Process which handle all input
|
||||||
void Esp3D::process()
|
void Esp3D::process()
|
||||||
{
|
{
|
||||||
|
#ifdef ARDUINO_ARCH_ESP8266
|
||||||
|
#ifdef MDNS_FEATURE
|
||||||
|
wifi_config.mdns.update();
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
#if !defined(ASYNCWEBSERVER)
|
#if !defined(ASYNCWEBSERVER)
|
||||||
//web requests for sync
|
//web requests for sync
|
||||||
web_interface->web_server.handleClient();
|
web_interface->web_server.handleClient();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user