{"id":17647379,"url":"https://github.com/plapointe6/espsimpleremoteupdate","last_synced_at":"2025-04-13T02:22:37.788Z","repository":{"id":44610937,"uuid":"433221836","full_name":"plapointe6/EspSimpleRemoteUpdate","owner":"plapointe6","description":"Simple remote update for ESP32 and ESP8266","archived":false,"fork":false,"pushed_at":"2022-02-04T17:15:35.000Z","size":16,"stargazers_count":6,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-10T06:06:23.861Z","etag":null,"topics":["arduino","arduino-library","esp32","esp8266","iot"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/plapointe6.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-29T22:54:46.000Z","updated_at":"2024-09-16T07:49:08.000Z","dependencies_parsed_at":"2022-08-28T17:33:42.798Z","dependency_job_id":null,"html_url":"https://github.com/plapointe6/EspSimpleRemoteUpdate","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plapointe6%2FEspSimpleRemoteUpdate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plapointe6%2FEspSimpleRemoteUpdate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plapointe6%2FEspSimpleRemoteUpdate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plapointe6%2FEspSimpleRemoteUpdate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plapointe6","download_url":"https://codeload.github.com/plapointe6/EspSimpleRemoteUpdate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248654872,"owners_count":21140380,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arduino","arduino-library","esp32","esp8266","iot"],"created_at":"2024-10-23T11:13:11.679Z","updated_at":"2025-04-13T02:22:37.758Z","avatar_url":"https://github.com/plapointe6.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple remote program update handling for ESP8266 and ESP32\n\nSimple remote update management for ESP8266 and ESP32. \nAllow to easily set a light Web updater and/or OTA update. Intended to be used with an ESP8266 or ESP32.\n\nWhat this library can do:\n- Can host and manage a minimal web GUI to upload a new program (web updater)\n- Can enable and manage Arduino OTA\n- Automatically restart these services when a WiFI connection is lost.\n\nI took some code from palpointe6/EspMQTTClient. So, thanks to the contributors that worked on this part from EspMQTTClient: @EdJoPaTo, @hallard.\n\n\n# Get started\n\n```c++\n#include \"EspSimpleRemoteUpdate.h\"\n\nEspSimpleRemoteUpdate updater;\n\nvoid setup() {\n  updater.enableHTTPWebUpdater(\"USERNAME\", \"PASSWORD\");\n  updater.enableOTA(\"PASSWORD\");\n\n  // Obiviously, you need to do some WiFi connection stuff.\n  // EspSimpleRemoteUpdate will automatically detect a new WiFI connection and will start the enabled features automatically.\n}\n\nvoid loop() {\n  updater.handle(); // Calling this at every loop() is mandatory.\n}\n```\n\n# Some documentation\n\n```c++\n// Enable debugging messages (sent to Serial)\nenableDebuggingMessages();\n\n// Set the hostname\nsetHostname(const char* hostname);\n\n// Enable the web updater\nenableHTTPWebUpdater(const char* username = \"\", const char* password = \"\", const char* baseAddr = \"/\");\n\n// Enable Arduino OTA\nenableOTA(const char* password, const uint16_t port = 0);\n\n// Calling this at every loop() is mandatory.\nhandle();\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplapointe6%2Fespsimpleremoteupdate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplapointe6%2Fespsimpleremoteupdate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplapointe6%2Fespsimpleremoteupdate/lists"}