12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /**
- * httpUpdateSPIFFS.ino
- *
- * Created on: 27.11.2017
- *
- */
- #include <Arduino.h>
- #include <WiFi.h>
- #include <HTTPClient.h>
- #include <ESP32httpUpdate.h>
- #define USE_SERIAL Serial
- void setup() {
- USE_SERIAL.begin(115200);
- // USE_SERIAL.setDebugOutput(true);
- USE_SERIAL.println();
- USE_SERIAL.println();
- USE_SERIAL.println();
- for(uint8_t t = 4; t > 0; t--) {
- USE_SERIAL.printf("[SETUP] WAIT %d...\n", t);
- USE_SERIAL.flush();
- delay(1000);
- }
- WiFi.begin("SSID", "PASSWORD");
- }
- void loop() {
- // wait for WiFi connection
- if((WiFi.status() == WL_CONNECTED)) {
- USE_SERIAL.println("Update SPIFFS...");
- t_httpUpdate_return ret = ESPhttpUpdate.updateSpiffs("http://server/spiffs.bin");
- if(ret == HTTP_UPDATE_OK) {
- USE_SERIAL.println("Update sketch...");
- ret = ESPhttpUpdate.update("http://server/file.bin");
- switch(ret) {
- case HTTP_UPDATE_FAILED:
- USE_SERIAL.printf("HTTP_UPDATE_FAILED Error (%d): %s", ESPhttpUpdate.getLastError(), ESPhttpUpdate.getLastErrorString().c_str());
- break;
- case HTTP_UPDATE_NO_UPDATES:
- USE_SERIAL.println("HTTP_UPDATE_NO_UPDATES");
- break;
- case HTTP_UPDATE_OK:
- USE_SERIAL.println("HTTP_UPDATE_OK");
- break;
- }
- }
- }
- }
|