├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.schema.json ├── homebridge-p1.png ├── index.js ├── jsdoc.json ├── lib ├── P1Accessory.js ├── P1Client.js ├── P1Platform.js ├── P1Service.js ├── P1WsClient.js ├── P1WsServer.js └── telegrams.js ├── p1.png ├── package.json └── test ├── ctest.js └── test.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | out 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/README.md -------------------------------------------------------------------------------- /config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/config.schema.json -------------------------------------------------------------------------------- /homebridge-p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/homebridge-p1.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/index.js -------------------------------------------------------------------------------- /jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/jsdoc.json -------------------------------------------------------------------------------- /lib/P1Accessory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/lib/P1Accessory.js -------------------------------------------------------------------------------- /lib/P1Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/lib/P1Client.js -------------------------------------------------------------------------------- /lib/P1Platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/lib/P1Platform.js -------------------------------------------------------------------------------- /lib/P1Service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/lib/P1Service.js -------------------------------------------------------------------------------- /lib/P1WsClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/lib/P1WsClient.js -------------------------------------------------------------------------------- /lib/P1WsServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/lib/P1WsServer.js -------------------------------------------------------------------------------- /lib/telegrams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/lib/telegrams.js -------------------------------------------------------------------------------- /p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/p1.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/package.json -------------------------------------------------------------------------------- /test/ctest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/test/ctest.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebaauw/homebridge-p1/HEAD/test/test.js --------------------------------------------------------------------------------