{"id":25610467,"url":"https://github.com/apsysikal/bachome","last_synced_at":"2025-07-28T05:34:29.983Z","repository":{"id":40371302,"uuid":"249475195","full_name":"Apsysikal/bachome","owner":"Apsysikal","description":"A BACnet plugin for Homebridge.","archived":false,"fork":false,"pushed_at":"2023-07-18T21:34:02.000Z","size":1952,"stargazers_count":6,"open_issues_count":7,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-02T01:46:44.058Z","etag":null,"topics":["bacnet","bacnet-ip","homebridge","homebridge-plugin","homekit"],"latest_commit_sha":null,"homepage":"","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/Apsysikal.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}},"created_at":"2020-03-23T15:52:11.000Z","updated_at":"2024-05-31T08:37:46.000Z","dependencies_parsed_at":"2023-12-26T05:43:06.910Z","dependency_job_id":null,"html_url":"https://github.com/Apsysikal/bachome","commit_stats":{"total_commits":102,"total_committers":3,"mean_commits":34.0,"dds":"0.23529411764705888","last_synced_commit":"5438bbe6eed8afeb0a9f6a68452d5652dec75f99"},"previous_names":["caserage/bachome"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Apsysikal/bachome","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apsysikal%2Fbachome","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apsysikal%2Fbachome/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apsysikal%2Fbachome/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apsysikal%2Fbachome/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Apsysikal","download_url":"https://codeload.github.com/Apsysikal/bachome/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apsysikal%2Fbachome/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267468557,"owners_count":24092334,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-28T02:00:09.689Z","response_time":68,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bacnet","bacnet-ip","homebridge","homebridge-plugin","homekit"],"created_at":"2025-02-21T22:21:55.412Z","updated_at":"2025-07-28T05:34:29.963Z","avatar_url":"https://github.com/Apsysikal.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"center\"\u003e\n\n\u003cimg src=\"https://github.com/homebridge/branding/raw/master/logos/homebridge-wordmark-logo-vertical.png\" width=\"150\"\u003e\n\n\u003c/p\u003e\n\n![Build and Lint](https://github.com/Caserage/bachome/workflows/Build%20and%20Lint/badge.svg)\n\n# BAChome\n\nThis is a project for my diploma. It converts BACnet objects into HomeKit accessories. To create the HomeKit accessories this project works as a Homebridge plugin.\n\nContributions are welcome after the 30th of August 2020 are welcome. Until then pull requests won't be processed until then.\n\n## Configuring the plugin\n\nThis plugin supports visual configuration using the `Homebridge Config UI X` web interface.\n\nIf you want to create the configuration manually, you have to register the platform and accessories in your `config.json` file. An example may look like this:\n\n```json\n{\n    \"platforms\": [\n        {\n            \"name\": \"BAChome Dynamic Platform\",\n            \"switch\": [\n                {\n                    \"name\": \"Bedroom\",\n                    \"manufacturer\": \"Caserage\",\n                    \"model\": \"Caserage's switch\",\n                    \"serial\": \"ABC\"\n                }\n            ],\n            \"thermostat\": [\n                {\n                    \"name\": \"Kitchen\",\n                    \"manufacturer\": \"Caserage\",\n                    \"model\": \"Caserage's thermostat\",\n                    \"serial\": \"DEF\"\n                }\n            ],\n            \"cooler\": [\n                {\n                    \"name\": \"Living room\",\n                    \"manufacturer\": \"Caserage\",\n                    \"model\": \"Caserage's cooler\",\n                    \"serial\": \"GHI\"\n                }\n            ],\n            \"platform\": \"bachome\"\n        }\n    ]\n}\n```\n\n## Install Development Dependencies\n\nUsing a terminal, navigate to the project folder and run this command to install the development dependencies:\n\n```\nnpm install\n```\n\n## Build Plugin\n\nTypeScript needs to be compiled into JavaScript before it can run. The following command will compile the contents of your [`src`](./src) directory and put the resulting code into the `dist` folder.\n\n```\nnpm run build\n```\n\n## Link To Homebridge\n\nRun this command so your global install of Homebridge can discover the plugin in your development environment:\n\n```\nnpm link\n```\n\nYou can now start Homebridge, use the `-D` flag so you can see debug log messages in your plugin:\n\n```\nhomebridge -D\n```\n\n## Watch For Changes and Build Automatically\n\nIf you want to have your code compile automatically as you make changes, and restart Homebridge automatically between changes you can run:\n\n```\nnpm run watch\n```\n\nThis will launch an instance of Homebridge in debug mode which will restart every time you make a change to the source code. It will the config stored in the default location under `~/.homebridge`. You may need to stop other running instances of Homebridge while using this command to prevent conflicts. You can adjust the Homebridge startup command in the [`nodemon.json`](./nodemon.json) file.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapsysikal%2Fbachome","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapsysikal%2Fbachome","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapsysikal%2Fbachome/lists"}