{"id":22956783,"url":"https://github.com/pearorchards/esp_wifiminus","last_synced_at":"2026-05-19T04:35:53.209Z","repository":{"id":266124215,"uuid":"897426925","full_name":"PearOrchards/esp_wifiminus","owner":"PearOrchards","description":"A demo WiFi component for the ESP32","archived":false,"fork":false,"pushed_at":"2024-12-02T17:17:33.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T01:32:30.801Z","etag":null,"topics":["esp32","wifi"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PearOrchards.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-02T15:59:47.000Z","updated_at":"2024-12-02T17:17:36.000Z","dependencies_parsed_at":"2024-12-02T18:41:39.670Z","dependency_job_id":null,"html_url":"https://github.com/PearOrchards/esp_wifiminus","commit_stats":null,"previous_names":["pearorchards/esp_wifiminus"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/PearOrchards/esp_wifiminus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PearOrchards%2Fesp_wifiminus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PearOrchards%2Fesp_wifiminus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PearOrchards%2Fesp_wifiminus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PearOrchards%2Fesp_wifiminus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PearOrchards","download_url":"https://codeload.github.com/PearOrchards/esp_wifiminus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PearOrchards%2Fesp_wifiminus/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264781029,"owners_count":23662775,"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":["esp32","wifi"],"created_at":"2024-12-14T17:11:43.131Z","updated_at":"2026-05-19T04:35:53.172Z","avatar_url":"https://github.com/PearOrchards.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# esp_wifiminus\nA starting point to creating WiFi applications on the ESP32. It requires an SSID, password, and the number of retries, and **that's it.**\n\n## Why?\nYou _could_ use one of the examples from the ESP_IDF folder, like I did for a while, but why use something that you can't (or, _shouldn't_) directly edit? But as for why I made this, well I was trying to connect to my Raspberry Pi, and the examples wouldn't even do that more than once, so, here we are.\n\n## Limitations\nJust like my CoAP client wrapper (which you can see [here](https://github.com/PearOrchards/esp_coap_client)), this is a very basic implementation, and provided zero configuration for anything more than SSID, password, and retries. However, there's nothing stopping you from implementing more yourself!\n\n## Basic Usage\n```c++\n// Include statements not included\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\nvoid app_main() {\n\n    ESP_ERROR_CHECK(nvs_flash_init());\n    ESP_ERROR_CHECK(esp_event_loop_create_default());\n    ESP_ERROR_CHECK(wifiminus::init());\n\n    // And then do whateeeever you like!\n}\n\n#ifdef __cplusplus\n}\n#endif\n```\n\n## Installation\nClone this repository, and move it so that your project looks something like this (other structures are also likely fine but this is the one I tested with):\n```commandline\nproject/\n |- components/\n | |- wifiminus/\n | | |- wifiminus.cpp\n | | |- README.md (the one you're reading!)\n | | |- ...\n | |- \u003cany other components\u003e\n |- main/\n | |- main.cpp\n | |- CMakeLists.txt\n | |- idf_component.yml\n |- CMakeLists.txt\n |- ...\n```\n\n### Updating CMakeLists.txt\n\nThe root `CMakeLists.txt` _should_ be okay left alone, though you may need to add something for CI. _An example was previously written here but, turns out, it doesn't work, so I've removed it._\n\nThe `main/CMakeLists.txt` should look like this (at the minimum):\n```cmake\nidf_component_register(SRCS main.cpp INCLUDE_DIRS \".\" REQUIRES wifiminus)\n```\n\nAnd this repo's `CMakeLists.txt` should be left as is.\n\n## Configuration\nThe SSID, password, and max retries can all be done within the `menuconfig`, which can be accessed by running this in the root of your working directory:\n```commandline\nidf.py menuconfig\n```\n_(replace idf.py if you use IDF commands in a different way)_\n\nThen, you should be able to find \"WiFiMinus Configuration\", and the fields can be edited in there.\n\n## Contributing and Issues\nIf you have any problems using this, please open an issue on this repository, and I'll try get back to you as soon as possible.\n\nIf you'd like to contribute, please open a pull request. I'm happy to accept any contributions, but remember that this is supposed to be simple. If you're looking to add a lot of features, it may be better to fork this repository.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpearorchards%2Fesp_wifiminus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpearorchards%2Fesp_wifiminus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpearorchards%2Fesp_wifiminus/lists"}