{"id":44802166,"url":"https://github.com/srcfl/zap-home-assistant","last_synced_at":"2026-02-16T13:35:09.326Z","repository":{"id":303077948,"uuid":"1014328320","full_name":"srcfl/zap-home-assistant","owner":"srcfl","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-23T14:40:34.000Z","size":104,"stargazers_count":1,"open_issues_count":3,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-27T01:45:26.172Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/srcfl.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-07-05T13:56:56.000Z","updated_at":"2025-11-28T11:26:24.000Z","dependencies_parsed_at":"2025-07-06T05:40:30.498Z","dependency_job_id":null,"html_url":"https://github.com/srcfl/zap-home-assistant","commit_stats":null,"previous_names":["frahlg/zap_hass","srcfl/spark-zap-home-assistant"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/srcfl/zap-home-assistant","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srcfl%2Fzap-home-assistant","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srcfl%2Fzap-home-assistant/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srcfl%2Fzap-home-assistant/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srcfl%2Fzap-home-assistant/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/srcfl","download_url":"https://codeload.github.com/srcfl/zap-home-assistant/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srcfl%2Fzap-home-assistant/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29509202,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T09:05:14.864Z","status":"ssl_error","status_checked_at":"2026-02-16T08:55:59.364Z","response_time":115,"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":[],"created_at":"2026-02-16T13:35:08.727Z","updated_at":"2026-02-16T13:35:09.316Z","avatar_url":"https://github.com/srcfl.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sourceful Zap - Home Assistant Integration\n\n[![hacs][hacs-badge]][hacs-url]\n[![Project Status: WIP][status-badge]][status-url]\n\nHome Assistant integration for the **Sourceful Zap** - a local coordination gateway for distributed energy resources.\n\n\u003e **Status:** In development. Targeting [Home Assistant Core](https://developers.home-assistant.io/docs/creating_component_index/) inclusion with [Bronze tier](https://developers.home-assistant.io/docs/core/integration-quality-scale/) quality scale.\n\n## About the Zap\n\nThe Zap is a ~$20 ESP32-based gateway enabling **local energy coordination** with \u003c200ms response times - critical for grid services that cloud APIs (2-5s latency) cannot support.\n\n**Supported protocols:** P1 · Modbus TCP/RTU · MQTT · OCPP · REST API\n\nLearn more: [sourceful.energy](https://sourceful.energy)\n\n## Installation\n\n### HACS (Coming Soon)\n\nOnce published, install via [HACS](https://hacs.xyz/).\n\n### Manual\n\n```bash\n# Clone to custom_components\ncd ~/.homeassistant/custom_components\ngit clone https://github.com/srcfl/zap-home-assistant.git sourceful_zap\n```\n\n### Legacy P1 Integration\n\nFor the working P1-only integration, use the [`legacy-v0.1`](https://github.com/srcfl/zap-home-assistant/tree/legacy-v0.1) branch.\n\n## Development\n\nThis integration follows [Home Assistant development guidelines](https://developers.home-assistant.io/docs/development_index/).\n\n### Requirements\n\n| Requirement | Reference |\n|-------------|-----------|\n| Config Flow | [Config Entries](https://developers.home-assistant.io/docs/config_entries_config_flow_handler/) |\n| Coordinator | [DataUpdateCoordinator](https://developers.home-assistant.io/docs/integration_fetching_data/) |\n| Translations | [Internationalization](https://developers.home-assistant.io/docs/internationalization/) |\n| Tests | [Testing](https://developers.home-assistant.io/docs/development_testing/) |\n| Quality Scale | [Bronze tier minimum](https://developers.home-assistant.io/docs/core/integration-quality-scale/) |\n\n### Structure\n\n```\ncustom_components/sourceful_zap/\n├── __init__.py          # Integration setup\n├── manifest.json        # Integration metadata\n├── config_flow.py       # UI configuration\n├── coordinator.py       # Data fetching\n├── sensor.py            # Sensor entities\n├── const.py             # Constants\n├── strings.json         # Translations\n└── translations/        # Localized strings\n```\n\nSee [File Structure](https://developers.home-assistant.io/docs/creating_integration_file_structure/) and [Manifest](https://developers.home-assistant.io/docs/creating_integration_manifest/) docs.\n\n### Local Development\n\n```bash\n# Set up dev environment\npython -m venv venv\nsource venv/bin/activate\npip install homeassistant\n\n# Run tests\npytest tests/\n```\n\n## Contributing\n\nJoin the discussion on [Discord](https://discord.com/invite/srcful).\n\n## License\n\nMIT - see [LICENSE](LICENSE)\n\n---\n\n**Sourceful Labs AB** · Kalmar, Sweden 🇸🇪\n\n[hacs-badge]: https://img.shields.io/badge/HACS-Custom-orange.svg\n[hacs-url]: https://hacs.xyz/\n[status-badge]: https://img.shields.io/badge/status-WIP-yellow.svg\n[status-url]: https://github.com/srcfl/zap-home-assistant\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrcfl%2Fzap-home-assistant","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsrcfl%2Fzap-home-assistant","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrcfl%2Fzap-home-assistant/lists"}