TW

Results 2664 comments of TW

I also don't like typing on a smartphone, but there are people who typo tons of messages on smartphones...

## Implementation ideas ### ESP IDF based Check signed code (on update / on boot): https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html#signed-app-verification-without-hardware-secure-boot https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/kconfig.html#config-secure-signed-on-boot-no-secure-boot https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html#custom-sdkconfig-defaults https://github.com/espressif/esp-idf/blob/master/examples/system/ota/native_ota_example/main/native_ota_example.c#L228 https://github.com/espressif/esp-idf/blob/master/components/app_update/include/esp_ota_ops.h Run arduino code as an idf component: https://github.com/espressif/arduino-esp32/blob/master/docs/esp-idf_component.md This pretty...

Even if you can reach the USB plug, it is still uncomfortable that way (and unlikely that all/most people frequently do that). Of course one does not need to install...

Arduino's partition scheme "Minimal SPIFFS" offers 1.9 MB max. "APP" partitions (two of them, for OTA updates) and 190kB SPIFFS. @rexfue Some questions: - do we use a significant SPIFFS...

I just wondered where it stores the data one enters via the web interface.

OK, I'll now work on implementing a simple solution based on OTAWebUpdater. It won't be very secure, but the point is just having anything that does not require plugging into...

The code from #137 was merged into master, so we now have a simple browser based way to update.

@rexfue noted that IOTWebConf also has an Updater. I had a look at that and the code looks quite similar, except that they do not have the "progress indication" which...

Are you saying you prefer current master branch over something based on IOTWebConf? It looks pretty easy, so I might have that ready today (assuming the library code works).

OK, IotWebConf based updater + docs merged into master now (I reverted my previous OTA code). So starting from V1.12.0, we have OTA capability, yay! \o/ It's still a bit...