OTA_https.ino 944 B

123456789101112131415161718192021222324252627
  1. #include <M5Stack.h>
  2. #include <M5ez.h>
  3. void setup() {
  4. ez.begin();
  5. ezMenu OTA_menu ("OTA via https demo");
  6. OTA_menu.addItem("Settings", ez.settings.menu);
  7. OTA_menu.addItem("Get M5ez demo", OTA_demo);
  8. OTA_menu.run();
  9. }
  10. void loop() {
  11. }
  12. void OTA_demo() {
  13. if (ez.msgBox("Get M5ez demo program", "This will download and replace the current sketch with the M5ez demo program.", "Cancel#OK#") == "OK") {
  14. ezProgressBar progress_bar("OTA update in progress", "Downloading ...", "Abort");
  15. #include "raw_githubusercontent_com.h" // the root certificate is now in const char * root_cert
  16. if (ez.wifi.update("https://raw.githubusercontent.com/M5ez/M5ez/master/compiled_binaries/M5ez-demo.bin", root_cert, &progress_bar)) {
  17. ez.msgBox("Over The Air updater", "OTA download successful. Reboot to new firmware", "Reboot");
  18. ESP.restart();
  19. } else {
  20. ez.msgBox("OTA error", ez.wifi.updateError(), "OK");
  21. }
  22. }
  23. }