{"id":18626492,"url":"https://github.com/matdombrock/ziotbp32","last_synced_at":"2026-04-11T22:02:38.866Z","repository":{"id":117889456,"uuid":"359108230","full_name":"matdombrock/zIOTBP32","owner":"matdombrock","description":"An Arduino compatible IOT boilerplate system for the ESP32 development board. Just add 3 lines of code and get a soft AP for setup and a full featured web server.","archived":false,"fork":false,"pushed_at":"2021-05-08T11:27:54.000Z","size":17594,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-27T06:12:57.454Z","etag":null,"topics":["arduino","boilerplate-template","esp32","esp32-arduino","wifi"],"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/matdombrock.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":"2021-04-18T10:12:21.000Z","updated_at":"2021-05-08T11:27:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"d3956bbf-df1c-4df9-9d88-2c2cac269d8c","html_url":"https://github.com/matdombrock/zIOTBP32","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matdombrock%2FzIOTBP32","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matdombrock%2FzIOTBP32/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matdombrock%2FzIOTBP32/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matdombrock%2FzIOTBP32/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matdombrock","download_url":"https://codeload.github.com/matdombrock/zIOTBP32/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239419323,"owners_count":19635380,"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","boilerplate-template","esp32","esp32-arduino","wifi"],"created_at":"2024-11-07T04:38:07.701Z","updated_at":"2025-11-03T21:30:28.670Z","avatar_url":"https://github.com/matdombrock.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zIOTBP32\n**INTERNET OF THINGS BOILERPLATE FOR ESP32**\n\n*An Arduino compatible IOT boilerplate system for the ESP32 development board. A simple to use drop-in solution for bootstrapping IOT functionality on any ESP32 project.*\n\n## Depends On\n* [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer)\n* [AsyncTCP](https://github.com/me-no-dev/AsyncTCP)\n* [Latest ESP32 Arduino Core](https://github.com/espressif/arduino-esp32)\n  \n## Features\n* Add to your project with just 3 lines of code\n* Super fast async web server\n* Automatic soft AP for configuring WiFi\n\n## About zIOTBP32\nThis is a very low abstraction boilerplate to easily get the [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) library running in your project. Because of this, the included documentation here will be light. Please see the excellent [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) documentation for more info and advanced usage.\n\n## Setup\n\n*Note: This is not a library and is not meant to be installed like a library. This is meant to be copied into your project directory. The files contained in the `zIOTBP32` directory can be customized by advanced users.*\n\n### Download and install:\nDownload this repo and put the `zIOTBP32-master/zIOTBP32` folder into your project directory.\n```\nyour-project/\n--zIOTBP32/\n--your_sketch.ino\n```\n  \n### Add the boilerplate to your sketch:\n```cpp\n#include \u003cArduino.h\u003e\n#include \"zIOTBP32/zsetupBP.h\"\n\nvoid setup() {\n  setupBP();\n}\n\nvoid loop() {\n  loopBP();\n}\n```\n\n### Routes\nA simple route method might look like this:\n```cpp\nvoid r_example(AsyncWebServerRequest *request){\n  String message = \"Hello World\";\n  request-\u003esend(200, \"text/plain\", message);\n}\n```\n\nIt can be added to the application at any time by doing something like this:\n```cpp\nserver.on(\"/example\", HTTP_GET, r_example);\n```\n\n## Advanced Setup\n```cpp\nvoid setupBP(const char *apName=\"ESP SETUP\", const char *ssid=NULL, const char *pkey=NULL)\n```\n\nYou can provide the `setupBP()` function with 3 optional arguments to set the soft AP name as well as the default WiFi credentials.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatdombrock%2Fziotbp32","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatdombrock%2Fziotbp32","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatdombrock%2Fziotbp32/lists"}