I'm trying to handle ethernet disconnection scenarios, however if I try to call ArduinoOTA.end() compiler returns with error:
class EthernetServer' has no member named 'stop'
Upon closer inspection it looks like EthernetServer does not have a stop() method afterall.
What is the recommended way to proceed? What happens if I never call end()? Should I call begin() after reconnection?
I'm trying to handle ethernet disconnection scenarios, however if I try to call
ArduinoOTA.end()compiler returns with error:class EthernetServer' has no member named 'stop'Upon closer inspection it looks like EthernetServer does not have a
stop()method afterall.What is the recommended way to proceed? What happens if I never call
end()? Should I callbegin()after reconnection?