Skip to content
This repository was archived by the owner on Aug 23, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (21 loc) · 403 Bytes

File metadata and controls

28 lines (21 loc) · 403 Bytes

Arduino-Firmware

Arduino firmware update.

Support platform

  • esp8226
  • esp32

Usage

char* url = "http://myFirmware.Url";
double version = 1.0;
Firmware firmware = Firmware(url, version);
firmware.update();

OR

char* url = "http://myFirmware.Url";
double version = 1.0;
Firmware firmware = Firmware();
firmware.setUrl(url);
firmware.setVersion(1.0);
firmware.update();