No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SimpleUpdater.h 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * SimpleUpdater.h
  3. *
  4. * ESP8266 / ESP32 Relais Actor
  5. *
  6. * ----------------------------------------------------------------------------
  7. * "THE BEER-WARE LICENSE" (Revision 42):
  8. * <xythobuz@xythobuz.de> wrote this file. As long as you retain this notice
  9. * you can do whatever you want with this stuff. If we meet some day, and you
  10. * think this stuff is worth it, you can buy me a beer in return. Thomas Buck
  11. * ----------------------------------------------------------------------------
  12. */
  13. #ifndef __ESP_SIMPLE_UPDATER__
  14. #define __ESP_SIMPLE_UPDATER__
  15. #if defined(ARDUINO_ARCH_ESP8266)
  16. #include <ESP8266WebServer.h>
  17. #include <ESP8266HTTPUpdateServer.h>
  18. #define UPDATE_WEB_SERVER ESP8266WebServer
  19. #elif defined(ARDUINO_ARCH_ESP32)
  20. #include <WebServer.h>
  21. #define UPDATE_WEB_SERVER WebServer
  22. #else
  23. #error Platform not supported!
  24. #endif
  25. class SimpleUpdater {
  26. public:
  27. SimpleUpdater(String _uri = String("/update"));
  28. void setup(UPDATE_WEB_SERVER *_server);
  29. private:
  30. #if defined(ARDUINO_ARCH_ESP8266)
  31. ESP8266HTTPUpdateServer updateServer;
  32. #elif defined(ARDUINO_ARCH_ESP32)
  33. void get(void);
  34. void postResult(void);
  35. void postUpload(void);
  36. #endif
  37. String uri;
  38. UPDATE_WEB_SERVER *server;
  39. };
  40. #endif // __ESP_SIMPLE_UPDATER__