{"id":19999160,"url":"https://github.com/mr-addict/esp32-async-webserver-api","last_synced_at":"2026-05-03T11:32:01.639Z","repository":{"id":166541564,"uuid":"642050036","full_name":"MR-Addict/esp32-async-webserver-api","owner":"MR-Addict","description":"ESP32 Async Webserver API with SSD1306","archived":false,"fork":false,"pushed_at":"2023-05-17T18:43:18.000Z","size":1028,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-01T23:29:11.796Z","etag":null,"topics":["arduino","async-webserver","esp32"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MR-Addict.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-17T17:56:31.000Z","updated_at":"2023-11-16T07:06:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"79a5a91e-ddf3-4170-b4b6-7a41a1d2fa88","html_url":"https://github.com/MR-Addict/esp32-async-webserver-api","commit_stats":null,"previous_names":["mr-addict/esp32-async-webserver-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MR-Addict/esp32-async-webserver-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MR-Addict%2Fesp32-async-webserver-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MR-Addict%2Fesp32-async-webserver-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MR-Addict%2Fesp32-async-webserver-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MR-Addict%2Fesp32-async-webserver-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MR-Addict","download_url":"https://codeload.github.com/MR-Addict/esp32-async-webserver-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MR-Addict%2Fesp32-async-webserver-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32567187,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","async-webserver","esp32"],"created_at":"2024-11-13T05:10:51.993Z","updated_at":"2026-05-03T11:32:01.620Z","avatar_url":"https://github.com/MR-Addict.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ESP32 Async Webserver With SSD1306\n\n## 1. Libraries\n\nYou can find all of them in **libraries** folder.\n\n```cpp\n#include \u003cAdafruit_GFX.h\u003e\n#include \u003cAdafruit_SSD1306.h\u003e\n#include \u003cAsyncTCP.h\u003e\n#include \u003cESPAsyncWebServer.h\u003e\n#include \u003cArduinoJson.h\u003e\n```\n\n## 2. API\n\n| Endpoint | Method | Description                |\n| :------- | :----- | :------------------------- |\n| /api     | GET    | Get sensor status and name |\n| /api     | PUT    | Set sensor name            |\n\n## 3. Examples\n\n**Curl**\n\n```sh\n# get status and name\ncurl esp32-ip-address/api\n\n# update name\ncurl -X PUT esp32-ip-address/api -d \"name=01\"\n```\n\n**Fetch**\n\n```js\n// get data\nfunction handleClick() {\n  fetch(\"http://esp32-ip-address/api\")\n    .then((res) =\u003e res.json())\n    .then((res) =\u003e console.log(res));\n}\n\n// put data\nfunction handleSubmit(event) {\n  event.preventDefault();\n  const data = new FormData();\n  data.append(\"name\":\"01\");\n\n  fetch(\"http://esp32-ip-address/api\", { method: \"PUT\", body: data })\n    .then((res) =\u003e res.json())\n    .then((res) =\u003e console.log(res));\n}\n```\n\n## 4. Demo Video\n\nhttps://github.com/MR-Addict/esp32-async-webserver-api/assets/75357598/cd468b28-57a9-4a3d-8380-d391eefce8e7\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-addict%2Fesp32-async-webserver-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmr-addict%2Fesp32-async-webserver-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-addict%2Fesp32-async-webserver-api/lists"}