pfalcon / yaota8266

Yet another OTA solution for ESP8266, this time supporting large (>512KB) firmwares even on 1MB devices (repo is rebased)
120 stars 33 forks source link

Tutorial?!? #26

Open jedie opened 4 years ago

jedie commented 4 years ago

The existing README explains well the basics, but it is not a concrete guide.

What I wonder, for example, is how the WLAN connection should be set up? What about the SSID and the necessary password?

EDIT: I found https://schinckel.net/tags/yaota/ That helps a little bit...

So i start the ota from micropython with:

import ota
ota.start()

So i must setup the WiFi connection first and then call ota.start() ?

jedie commented 4 years ago

I found https://github.com/micropython/micropython/issues/2535 that contains some information. Still, it'd be good if there was something easy to understand.