{"id":26518898,"url":"https://github.com/cspyridakis/esp32-espidf-cpp-base","last_synced_at":"2026-05-15T12:08:22.838Z","repository":{"id":281516797,"uuid":"890421003","full_name":"CSpyridakis/esp32-espidf-cpp-base","owner":"CSpyridakis","description":"A VS Code project tree for ESP32 that utilizes espidf under the hood.","archived":false,"fork":false,"pushed_at":"2024-12-18T18:46:05.000Z","size":36,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-01T00:27:43.716Z","etag":null,"topics":["esp","esp-idf","esp32","mcu"],"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/CSpyridakis.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-11-18T14:38:56.000Z","updated_at":"2025-01-16T10:46:33.000Z","dependencies_parsed_at":"2025-03-09T16:37:14.045Z","dependency_job_id":"7d425d28-afec-4759-b9c9-3e167fa8e78f","html_url":"https://github.com/CSpyridakis/esp32-espidf-cpp-base","commit_stats":null,"previous_names":["cspyridakis/esp32-espidf-cpp-base"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CSpyridakis/esp32-espidf-cpp-base","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSpyridakis%2Fesp32-espidf-cpp-base","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSpyridakis%2Fesp32-espidf-cpp-base/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSpyridakis%2Fesp32-espidf-cpp-base/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSpyridakis%2Fesp32-espidf-cpp-base/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CSpyridakis","download_url":"https://codeload.github.com/CSpyridakis/esp32-espidf-cpp-base/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSpyridakis%2Fesp32-espidf-cpp-base/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33066184,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["esp","esp-idf","esp32","mcu"],"created_at":"2025-03-21T10:16:20.755Z","updated_at":"2026-05-15T12:08:22.810Z","avatar_url":"https://github.com/CSpyridakis.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# esp32-espidf-base\n\n[Reference manual ESP-IDF](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/index.html)\n\n## Installation:\n\n### Linux:\n```\n# Step 1. Install Prerequisites\nsudo apt-get install git wget flex bison gperf python3 python3-pip python3-venv cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0\n\n# Step 2. Get ESP-IDF\nmkdir -p ~/esp\ncd ~/esp\ngit clone https://github.com/espressif/esp-idf.git --depth=1\n\n# Step 3. Set up the Tools\ncd ~/esp/esp-idf\n./install.sh all\n\n# Step 4. Set up the Environment Variables\nalias get_idf='. $HOME/esp/esp-idf/export.sh' # Set in ~/.zshrc\n\n# Step 5. Open VS-Code and Install ESP-IDF\n\n# DONE! You are ready to use\n```\n\n### MAC (Homebrew)\n```\n# Step 1. Install Prerequisites\nbrew install cmake ninja dfu-util\nbrew install python3\n\n# Step 2. Get ESP-IDF\nmkdir -p ~/esp\ncd ~/esp\ngit clone https://github.com/espressif/esp-idf.git\n\n# Step 3. Set up the Tools\ncd ~/esp/esp-idf\n./install.sh all\n\n# Step 4. Set up the Environment Variables\nalias get_idf='. $HOME/esp/esp-idf/export.sh' # Set in ~/.zshrc\n```\n\n---\n---\n\n## Useful commands:\n\n* `PORT` on MAC: /dev/cu.usbxxx\n\n### Set target IMPORTANT: based on the board you are using!!!\nidf.py set-target esp32-s3\n\n### Menu config\nidf.py menuconfig\n\n### Build project\nidf.py build\n\n### Flash binary\nidf.py -p `PORT` flash\n\n### Open Monitor\nidf.py -p `PORT` [-b `BAUD`] monitor\n\n### Flash and Monitor\nidf.py -p `PORT` flash monitor\n\n### Add BSP (Board support package)\nidf.py add-dependency \u003cdependency\u003e\n\n### Flash Erase\nidf.py -p `PORT` erase-flash\n\n## OTA Erase\nidf.py -p `PORT` erase-otadata\n\n\n\n---\n\n[Concepts](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html)\n\n* \n* **Project Configuration** the `sdkconfig` to modify it use `idf.py menuconfig`\n* **app**: occasionally there are 2 apps 1. `project-app` and 2. `bootloader-app`\n* **components** modular pieces compiled to static libs\n* **target** the hardware that will run the app","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcspyridakis%2Fesp32-espidf-cpp-base","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcspyridakis%2Fesp32-espidf-cpp-base","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcspyridakis%2Fesp32-espidf-cpp-base/lists"}