GithubHelp home page GithubHelp logo

esp-updater's Introduction

esp-updater

just start the docker-compose file:

docker-compose up

arduino code could look like this:

WiFiClient espClient;

#define AUTO_WIFI_UPDATES (true)

#if AUTO_WIFI_UPDATES
#include <ESP8266httpUpdate.h>

boolean httpUpdateInProgress = false;
#endif

void setup() {

  // your setup stuff comes here..
  // ...

#if AUTO_WIFI_UPDATES

   ESPhttpUpdate.onProgress([](int cur, int total) {
      static int last = 0;
      if (cur == 0 || cur == total || cur - last > 1000) {
         Serial.printf("%d/%d\n", cur, total);
         last = cur;
      }
   });

   ESPhttpUpdate.onStart([]() {
      Serial.printf("update starts\n");
      httpUpdateInProgress = true;
   });

   ESPhttpUpdate.onEnd([]() {
      Serial.printf("update ends\n");
      httpUpdateInProgress = false;
   });

   t_httpUpdate_return updateResult = ESPhttpUpdate.update(
       espClient,
       "your-update-server-name-comes-here", // hostname or ip
       35982,
       "/update/your-application-name", // .. update server will search in this folder then!
       "1.2.3"); // needs to be a semver version string here!!

   switch (updateResult) {
      case HTTP_UPDATE_FAILED:
         Serial.println("[update] Update failed.");
         break;

      case HTTP_UPDATE_NO_UPDATES:
         Serial.println("[update] Update no Update.");
         break;

      case HTTP_UPDATE_OK:
         Serial.println("[update] Update ok.");  // may not be called since we reboot the ESP
         break;
   }

#endif

}

tested with an ESP8266

esp-updater's People

Contributors

slaesh avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.