{"id":15656471,"url":"https://github.com/homebridge-plugins/homebridge-wattbox","last_synced_at":"2025-10-25T15:49:19.882Z","repository":{"id":53934511,"uuid":"424605355","full_name":"homebridge-plugins/homebridge-wattbox","owner":"homebridge-plugins","description":"Homebridge plugin for controlling a WattBox","archived":false,"fork":false,"pushed_at":"2025-09-18T04:34:47.000Z","size":717,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"latest","last_synced_at":"2025-10-14T00:41:35.575Z","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/homebridge-plugins.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2021-11-04T13:27:36.000Z","updated_at":"2025-09-18T04:34:43.000Z","dependencies_parsed_at":"2024-10-23T05:07:49.354Z","dependency_job_id":"ad7217d4-f426-4f78-987d-2c7749eb37f8","html_url":"https://github.com/homebridge-plugins/homebridge-wattbox","commit_stats":{"total_commits":29,"total_committers":2,"mean_commits":14.5,"dds":0.3448275862068966,"last_synced_commit":"44e0e43532a0589f57fc10a36aea2d769bfb8893"},"previous_names":["homebridge-plugins/homebridge-wattbox","derek-miller/homebridge-wattbox"],"tags_count":13,"template":false,"template_full_name":"homebridge/homebridge-plugin-template","purl":"pkg:github/homebridge-plugins/homebridge-wattbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homebridge-plugins%2Fhomebridge-wattbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homebridge-plugins%2Fhomebridge-wattbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homebridge-plugins%2Fhomebridge-wattbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homebridge-plugins%2Fhomebridge-wattbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/homebridge-plugins","download_url":"https://codeload.github.com/homebridge-plugins/homebridge-wattbox/tar.gz/refs/heads/latest","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homebridge-plugins%2Fhomebridge-wattbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280979467,"owners_count":26423964,"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-10-25T02:00:06.499Z","response_time":81,"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":[],"created_at":"2024-10-03T13:02:23.031Z","updated_at":"2025-10-25T15:49:19.831Z","avatar_url":"https://github.com/homebridge-plugins.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# homebridge-wattbox\n\n[![NPM Version](https://img.shields.io/npm/v/homebridge-wattbox.svg)](https://www.npmjs.com/package/homebridge-wattbox)\n[![verified-by-homebridge](https://badgen.net/badge/homebridge/verified/purple)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)\n\n# WattBox Homebridge Platform Plugin\n\n[WattBox](https://www.snapav.com/shop/en/snapav/wattbox) plugin\nfor [Homebridge](https://github.com/homebridge/homebridge).\n\n## Models Supported\n\n- WB-300\n- WB-300VB\n- WB-700\n- WB-700CH\n\n## Configuration\n\n### Required Configuration\n\n```json\n{\n  \"platforms\": [\n    {\n      \"platform\": \"WattBox\",\n      \"name\": \"WattBox\",\n      \"address\": \"http://192.168.1.100\",\n      \"username\": \"wattbox\",\n      \"password\": \"wattbox\"\n    }\n  ]\n}\n```\n\n### Optional Configuration\n\n#### Include/Exclude Outlets\n\nOutlets can be included or excluded by name:\n\n```\n{\n  \"platforms\": [\n    {\n      // ... required config, see above\n      \"includeOutlets\": [\"\u003cname\u003e\"], // Defaults to null\n      \"excludeOutlets\": [\"\u003cname\u003e\"] // Defaults to null\n    }\n  ]\n}\n```\n\n### Advanced Configuration\n\nThese config values should not be configured under normal situations, but are\nexposed nonetheless. Min, max, and default values are enforced to keep the\nplugin usable.\n\n#### Status Cache TTL\n\nThe time to live (in seconds) for a cached status to avoid excessive API calls:\n\n```\n{\n  \"platforms\": [\n    {\n      // ... required config, see above\n      \"outletStatusCacheTtl\": \u003cseconds\u003e\u003e, // Defaults to 15\n    }\n  ]\n}\n```\n\n#### Status Poll Interval\n\nThe polling interval (in milliseconds) to query the API for status changes:\n\n```\n{\n  \"platforms\": [\n    {\n      // ... required config, see above\n      \"outletStatusPollInterval\": \u003cmilliseconds\u003e\u003e, // Defaults to 15000\n    }\n  ]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhomebridge-plugins%2Fhomebridge-wattbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhomebridge-plugins%2Fhomebridge-wattbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhomebridge-plugins%2Fhomebridge-wattbox/lists"}