Replies: 1 comment 1 reply
-
Hello, Great! I will incorporate this along with other simplifications into the program. Best Regards, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi philibertc,
I managed to update the D1 via OTA.
You have to install also the "ArduinoOTA" from the Library.
Can you include this in the code future sketch:
`
#include <ArduinoOTA.h>
void setup() {
ArduinoOTA.setHostname("Pelletheater");
ArduinoOTA.setPassword("micronova");
ArduinoOTA.begin();
}
void loop() {
ArduinoOTA.handle();
}
`
Beta Was this translation helpful? Give feedback.
All reactions