{"id":26285387,"url":"https://github.com/solveditnpc/home-automation","last_synced_at":"2026-04-24T20:07:43.207Z","repository":{"id":282365528,"uuid":"940669143","full_name":"solveditnpc/home-automation","owner":"solveditnpc","description":"home automation using a relay and esp32 dev module with wifi capablities ","archived":false,"fork":false,"pushed_at":"2025-03-22T17:08:30.000Z","size":353,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-02T00:56:24.230Z","etag":null,"topics":["2025","cpp","embedded","esp32","esp32-dev-board","home-assistant-integration","home-automation","js","relay-board","server","web-application","wifi-configuration"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/solveditnpc.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-28T15:27:53.000Z","updated_at":"2025-09-26T07:07:24.000Z","dependencies_parsed_at":"2025-03-14T10:31:43.070Z","dependency_job_id":null,"html_url":"https://github.com/solveditnpc/home-automation","commit_stats":null,"previous_names":["solveditnpc/home-automation"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/solveditnpc/home-automation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solveditnpc%2Fhome-automation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solveditnpc%2Fhome-automation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solveditnpc%2Fhome-automation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solveditnpc%2Fhome-automation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/solveditnpc","download_url":"https://codeload.github.com/solveditnpc/home-automation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solveditnpc%2Fhome-automation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32238803,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"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":["2025","cpp","embedded","esp32","esp32-dev-board","home-assistant-integration","home-automation","js","relay-board","server","web-application","wifi-configuration"],"created_at":"2025-03-14T19:24:07.536Z","updated_at":"2026-04-24T20:07:43.188Z","avatar_url":"https://github.com/solveditnpc.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ESP32 Home Automation Project\n\nThis project implements a home automation system using an ESP32 Dev Module. Follow the instructions below to set up and run the project.\n\n## Hardware Requirements\n\n- ESP32 Dev Module\n- USB Cable for programming\n- Your home automation peripherals (relays,four male to female connecting wires)\n\n## ESP32 Dev Module Pin Layout\n\n![ESP32 DevKit V1 Pinout](board_circuit_pins/esp32%20devkit%20v1%20pinout.jpeg)\n\n## Software Setup Instructions (Windows)\n\n1. **Install Visual Studio Code**\n   - Download and install VSCode from [https://code.visualstudio.com/](https://code.visualstudio.com/)\n\n2. **Install PlatformIO Extension**\n   - Open VSCode\n   - Go to Extensions (Ctrl+Shift+X)\n   - Search for \"PlatformIO IDE\"\n   - Click Install\n\n3. **Clone/Setup the Project**\n   - Clone this repository or download the code\n   - Open VSCode\n   - Click \"Open Folder\" and select the project directory\n\n4. **Configure the Project**\n   - Open `platformio.ini` to verify the configuration\n   - Update the WiFi credentials in the code (change your wifi ssid and password)\n   - The default board configuration should be:\n     ```ini\n     [env:esp32dev]\n     platform = espressif32\n     board = esp32dev\n     framework = arduino\n     ```\n\n5. **Install Dependencies**\n   - PlatformIO will automatically install required dependencies\n   - Wait for the process to complete (check the PlatformIO status bar)\n\n## Building and Uploading\n\n1. **Connect ESP32**\n   - Connect your ESP32 to your computer via USB\n   - Windows should automatically install drivers\n   - If not, install CP210x USB driver manually\n\n2. **Select COM Port**\n   - Device Manager will show the COM port\n   - Note this port number for troubleshooting\n\n3. **Upload Code**\n   - Click the PlatformIO Upload button (→) or\n   - Use Ctrl+Alt+U to upload(or choose upload framework image from the platformio menu)\n\n## Accessing the Web Interface\n\n1. After uploading, open Serial Monitor in VSCode\n2. The ESP32 will print its IP address (e.g., `192.168.178.81`)\n3. Open your web browser and enter this IP address\n4. The web interface will be accessible on your local network\n\n## Troubleshooting\n\n- If upload fails:\n  - Check USB connection\n  - Verify COM port\n  - Hold BOOT button while uploading\n  - Press EN (reset) button after upload\n\n- If web interface is not accessible:\n  - Verify WiFi credentials\n  - Check ESP32's IP address in Serial Monitor\n  - Ensure you're on the same network\n\n## Support\n\nFor issues and questions, please open an issue in the repository.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolveditnpc%2Fhome-automation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsolveditnpc%2Fhome-automation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolveditnpc%2Fhome-automation/lists"}