{"id":49093743,"url":"https://github.com/craftingmod/matter-elac","last_synced_at":"2026-04-20T19:35:06.851Z","repository":{"id":340529697,"uuid":"1166464637","full_name":"craftingmod/matter-elac","owner":"craftingmod","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-25T13:15:19.000Z","size":609,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-25T13:19:22.758Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/craftingmod.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":"2026-02-25T08:53:42.000Z","updated_at":"2026-02-25T13:15:23.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/craftingmod/matter-elac","commit_stats":null,"previous_names":["craftingmod/matter-elac"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/craftingmod/matter-elac","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craftingmod%2Fmatter-elac","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craftingmod%2Fmatter-elac/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craftingmod%2Fmatter-elac/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craftingmod%2Fmatter-elac/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/craftingmod","download_url":"https://codeload.github.com/craftingmod/matter-elac/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craftingmod%2Fmatter-elac/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32062763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2026-04-20T19:35:04.564Z","updated_at":"2026-04-20T19:35:06.840Z","avatar_url":"https://github.com/craftingmod.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Matter-Elac\n\n![Project Thumbnail](./public/thumb.avif)\n\nMatter bridge for ELAC DS-A101-G.\n\nCurrently, only DS-A101-G is supported.\n\n## Customize\n\n`ELAC_IP` Environment must be set. (Check `DS-A101-G` app to find ip of amp.)\n\nGo to `http://\u003cELAC_IP\u003e/` and turning on `Ethernet always ON` is highly recommended.\n\n- Ports\n\n1.  `5502`: QR Paring web port(TCP). Can be customized by `WEB_PORT` env.\n2.  `5542`: Matter port(TCP/UDP). Can be customized by `MATTER_PORT` env.\n3.  `5353`: Matter mDNS port(UDP). Must be used `5353` port.\n\n## Quick Start (Docker)\n\nThe easiest way to run the bridge is using the pre-built Docker image from the GitHub Container Registry.\n\n*Note: `--network host` is required for mDNS discovery to work properly.*\n\n```bash\n# Provide your ELAC amplifier's IP address\nexport ELAC_IP=\"192.168.x.x\"\n\n# Run the bridge\ndocker run -d --name elac-bridge \\\n  --restart always \\\n  --network host \\\n  -v elac-matter-data:/usr/src/app/data \\\n  -e ELAC_IP=$ELAC_IP \\\n  ghcr.io/craftingmod/matter-elac:latest\n```\n\n## Pairing with SmartThings (or other Matter controllers)\n\n1. Open your web browser and go to: `http://\u003cYOUR_DOCKER_HOST_IP\u003e:5502/`\n2. You will see a Matter pairing QR code.\n3. Open the SmartThings app, tap \"Add device\", and scan the QR code.\n\n### SmartThings Edge Driver\nTo use the custom features of the ELAC amplifier, you need to install the custom edge driver *before* pairing.\n1. Click the invitation link: [SmartThings Edge Driver Invite](https://bestow-regional.api.smartthings.com/invite/d4294nK49bMo)\n2. Enroll your hub and install the `ELAC Matter` driver.\n3. *Note: This driver only provides the UI/Capabilities; the Docker bridge above MUST be running for it to work.*\n\n---\n\n## Advanced Configurations\n\n### Environment Variables\n| Variable | Default | Description |\n|---|---|---|\n| `ELAC_IP` | **Required** | The IP address of your DS-A101-G amplifier. |\n| `MATTER_PORT` | `5542` | The Matter communication port (TCP/UDP). |\n| `WEB_PORT` | `5502` | The port for the pairing QR code web page (TCP). |\n\n*Note: The mDNS port (`5353/UDP`) is fixed by protocol standards.*\n\n### Build Manually\nIf you want to modify the source code or build the image yourself:\n\n```bash\ngit clone https://github.com/craftingmod/matter-elac.git\ncd matter-elac\ndocker build -t matter-elac .\n```\n\n### Manual Run (Without Docker)\n```bash\nbun install\nexport ELAC_IP=\"192.168.x.x\"\nbun run ./src/index.ts\n```\n\n## Reference\n\n1. [ELAC Ethernet Control Protocol](https://elacsound.nl/wp-content/uploads/2022/10/Elac-Ethernet-Control-Protocol.xlsx)\n2. [matter.js](https://github.com/matter-js/matter.js)\n3. Gemini NanoBanana for thumbnail\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcraftingmod%2Fmatter-elac","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcraftingmod%2Fmatter-elac","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcraftingmod%2Fmatter-elac/lists"}