{"id":29736425,"url":"https://github.com/g1ibby/esp-presence","last_synced_at":"2026-05-03T22:34:19.664Z","repository":{"id":304428782,"uuid":"1015373316","full_name":"g1ibby/esp-presence","owner":"g1ibby","description":"ESP32-C6 SuperMini + LD2410c/SEN0610(C4001) presence senor + Case 3D model in build123d/cadquery + ESPHOME configs","archived":false,"fork":false,"pushed_at":"2025-07-13T03:03:35.000Z","size":575,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-22T17:46:20.800Z","etag":null,"topics":["3d-models","build123d","c4001","cadquery","esp32","esphome","home-assistant","ld2410","ld2410c","presence-detection"],"latest_commit_sha":null,"homepage":"","language":"Python","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/g1ibby.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,"zenodo":null}},"created_at":"2025-07-07T12:04:54.000Z","updated_at":"2025-07-13T03:03:38.000Z","dependencies_parsed_at":"2025-07-13T04:29:18.281Z","dependency_job_id":"f2773748-5c93-4e4e-b3bc-1e0ff1b10eff","html_url":"https://github.com/g1ibby/esp-presence","commit_stats":null,"previous_names":["g1ibby/esp-presence"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/g1ibby/esp-presence","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/g1ibby%2Fesp-presence","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/g1ibby%2Fesp-presence/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/g1ibby%2Fesp-presence/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/g1ibby%2Fesp-presence/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/g1ibby","download_url":"https://codeload.github.com/g1ibby/esp-presence/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/g1ibby%2Fesp-presence/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32587821,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"ssl_error","status_checked_at":"2026-05-03T22:09:10.534Z","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":["3d-models","build123d","c4001","cadquery","esp32","esphome","home-assistant","ld2410","ld2410c","presence-detection"],"created_at":"2025-07-25T14:21:36.233Z","updated_at":"2026-05-03T22:34:19.660Z","avatar_url":"https://github.com/g1ibby.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ESP-Presence\n\nESP32-C6 SuperMini-based presence detection system with mmWave radar sensors and custom 3D-printed cases.\n\n## Overview\n\nThis project combines:\n- **ESP32-C6 SuperMini** microcontroller\n- **LD2410C** or **SEN0610 (C4001)** mmWave presence sensors  \n- **3D-printable cases** designed in build123d/CadQuery\n- **ESPHome** configurations for Home Assistant integration\n\n## Components\n\n### ESPHome Configurations\n- `esp32c6-ld2410c.yaml` - Configuration for LD2410C sensor\n- `esp32c6-sen0610.yaml` - Configuration for SEN0610 (C4001) sensor\n\n### 3D Cases\nCases are modeled using **build123d** and **CadQuery** frameworks:\n- **LD2410C case**: `ld2410c/` - Compact enclosure for ESP32-C6 + LD2410C\n- **SEN0610 case**: `sen0610/` - Enclosure for ESP32-C6 + SEN0610 sensor\n  - STL files: `enclosure_base.stl`, `enclosure_lid.stl`, `corner_holder.stl`\n  - Assembly preview:\n  \n![SEN0610 Assembly](sen0610/images/assembly.png)\n\n## Project Structure\n```\nesp-presence/\n├── esp32c6-ld2410c.yaml    # ESPHome config for LD2410C\n├── esp32c6-sen0610.yaml    # ESPHome config for SEN0610\n├── ld2410c/                # LD2410C case (build123d/CadQuery)\n└── sen0610/                # SEN0610 case (build123d)\n    └── images/assembly.png # Assembly visualization\n```\n\n## Development Setup\n\n### Prerequisites\n- [uv](https://docs.astral.sh/uv/) (Python package manager)\n\n### Install ESPHome\n```bash\ncp secrets.yaml.example secrets.yaml  # fill in your WiFi credentials\nuv sync                                # installs ESPHome + dependencies\n```\n\n### Usage\n```bash\nmake compile-ld2410c   # compile LD2410C config\nmake compile-sen0610   # compile SEN0610 config\nmake compile-all       # compile both\n\nmake run-ld2410c       # compile + flash LD2410C (ESP32 must be connected via USB)\nmake run-sen0610       # compile + flash SEN0610\n\nmake logs-ld2410c      # stream device logs\nmake logs-sen0610\n\nmake clean             # remove .esphome/ build cache (~2 GB)\n```\n\nThe first compile downloads the ESP-IDF toolchain (~2 GB).\n\n### 3D Cases\nEach case subdirectory (`ld2410c/`, `sen0610/`) is an independent `uv` project for build123d/CadQuery:\n```bash\ncd sen0610 \u0026\u0026 uv sync  # install case design dependencies separately\n```\n\n## Requirements\n- Python 3.13+\n- uv","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fg1ibby%2Fesp-presence","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fg1ibby%2Fesp-presence","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fg1ibby%2Fesp-presence/lists"}