using the latest Arduino 2.5.0 library and any example from this library (e.g., the LED sketch), mDNS does not work anymore: no device can be reached via its <hostname>.local domain.
If I add MDNS.update() in the loop() of the LED sketch, the device is reachable again (via ping w25.local). The LWIP version does not matter (I tried v2 and v1.4).
Hi,
using the latest Arduino 2.5.0 library and any example from this library (e.g., the LED sketch), mDNS does not work anymore: no device can be reached via its
<hostname>.local
domain.According to this comment, there should be a call to
MDNS.update()
in theloop()
so this call should be added to https://github.com/mozilla-iot/webthing-arduino/blob/305860fdd3aba08914c4f5d2d82d17eadc9617e5/ESPWebThingAdapter.h#L74-L76.If I add
MDNS.update()
in theloop()
of the LED sketch, the device is reachable again (viaping w25.local
). The LWIP version does not matter (I tried v2 and v1.4).