├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── feature-request.md │ └── support-request.md └── workflows │ └── build.yml ├── .gitignore ├── .npmignore ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config.schema.json ├── img ├── Accessories.png ├── HomeKit.jpg ├── homebridge-config.png ├── homebridge-crestron-lts.png ├── homebridge-crestron.png └── simpl.png ├── nodemon.json ├── package.json ├── src ├── Accessory │ ├── AirPurifierAccessory.ts │ ├── CTLightAccessory.ts │ ├── DimLightAccessory.ts │ ├── DoorAccessory.ts │ ├── FanAccessory.ts │ ├── FaucetAccessory.ts │ ├── GarageDoorAccessory.ts │ ├── HeaterAccessory.ts │ ├── HeaterCoolerAccessory.ts │ ├── HueLightAccessory.ts │ ├── HumidifierDehumidifierAccessory.ts │ ├── LightAccessory.ts │ ├── LockAccessory.ts │ ├── OutletAccessory.ts │ ├── SecuritySystemAccessory.ts │ ├── Sensors │ │ ├── AirQualitySensorAccessory.ts │ │ ├── CarbonDioxideAccessory.ts │ │ ├── CarbonMonoxideAccessory.ts │ │ ├── ContactAccessory.ts │ │ ├── HumidityAccessory.ts │ │ ├── LeakAccessory.ts │ │ ├── LightSensorAccessory.ts │ │ ├── MotionAccessory.ts │ │ ├── OccupancyAccessory.ts │ │ ├── SmokeAccessory.ts │ │ └── TemperatureAccessory.ts │ ├── StatelessProgrammableSwitchAccessory.ts │ ├── SwitchAccessory.ts │ ├── TelevisionAccessory.ts │ ├── ThermostatAccessory.ts │ ├── ValveAccessory.ts │ ├── WindowAccessory.ts │ └── WindowCoveringAccessory.ts ├── crestronSocket.ts ├── index.ts ├── platform.ts └── settings.ts └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/.github/ISSUE_TEMPLATE/support-request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/README.md -------------------------------------------------------------------------------- /config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/config.schema.json -------------------------------------------------------------------------------- /img/Accessories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/img/Accessories.png -------------------------------------------------------------------------------- /img/HomeKit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/img/HomeKit.jpg -------------------------------------------------------------------------------- /img/homebridge-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/img/homebridge-config.png -------------------------------------------------------------------------------- /img/homebridge-crestron-lts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/img/homebridge-crestron-lts.png -------------------------------------------------------------------------------- /img/homebridge-crestron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/img/homebridge-crestron.png -------------------------------------------------------------------------------- /img/simpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/img/simpl.png -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/package.json -------------------------------------------------------------------------------- /src/Accessory/AirPurifierAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/AirPurifierAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/CTLightAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/CTLightAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/DimLightAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/DimLightAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/DoorAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/DoorAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/FanAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/FanAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/FaucetAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/FaucetAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/GarageDoorAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/GarageDoorAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/HeaterAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/HeaterAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/HeaterCoolerAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/HeaterCoolerAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/HueLightAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/HueLightAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/HumidifierDehumidifierAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/HumidifierDehumidifierAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/LightAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/LightAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/LockAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/LockAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/OutletAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/OutletAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/SecuritySystemAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/SecuritySystemAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/AirQualitySensorAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/AirQualitySensorAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/CarbonDioxideAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/CarbonDioxideAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/CarbonMonoxideAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/CarbonMonoxideAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/ContactAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/ContactAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/HumidityAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/HumidityAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/LeakAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/LeakAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/LightSensorAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/LightSensorAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/MotionAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/MotionAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/OccupancyAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/OccupancyAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/SmokeAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/SmokeAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/Sensors/TemperatureAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/Sensors/TemperatureAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/StatelessProgrammableSwitchAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/StatelessProgrammableSwitchAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/SwitchAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/SwitchAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/TelevisionAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/TelevisionAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/ThermostatAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/ThermostatAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/ValveAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/ValveAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/WindowAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/WindowAccessory.ts -------------------------------------------------------------------------------- /src/Accessory/WindowCoveringAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/Accessory/WindowCoveringAccessory.ts -------------------------------------------------------------------------------- /src/crestronSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/crestronSocket.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/platform.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/src/settings.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/homebridge-crestron-lts/HEAD/tsconfig.json --------------------------------------------------------------------------------