├── .eslintignore ├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── branding ├── product.png └── tado_homebridge.png ├── config-sample.json ├── config.schema.json ├── homekit ├── AirConditioner.js ├── OccupancySensor.js ├── StateManager.js └── WeatherSensor.js ├── index.js ├── package.json └── tado ├── StateHandler.js ├── api.js ├── refreshState.js ├── syncHomeKitCache.js └── unified.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | old_lib/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/README.md -------------------------------------------------------------------------------- /branding/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/branding/product.png -------------------------------------------------------------------------------- /branding/tado_homebridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/branding/tado_homebridge.png -------------------------------------------------------------------------------- /config-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/config-sample.json -------------------------------------------------------------------------------- /config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/config.schema.json -------------------------------------------------------------------------------- /homekit/AirConditioner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/homekit/AirConditioner.js -------------------------------------------------------------------------------- /homekit/OccupancySensor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/homekit/OccupancySensor.js -------------------------------------------------------------------------------- /homekit/StateManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/homekit/StateManager.js -------------------------------------------------------------------------------- /homekit/WeatherSensor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/homekit/WeatherSensor.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/package.json -------------------------------------------------------------------------------- /tado/StateHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/tado/StateHandler.js -------------------------------------------------------------------------------- /tado/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/tado/api.js -------------------------------------------------------------------------------- /tado/refreshState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/tado/refreshState.js -------------------------------------------------------------------------------- /tado/syncHomeKitCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/tado/syncHomeKitCache.js -------------------------------------------------------------------------------- /tado/unified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitaybz/homebridge-tado-ac/HEAD/tado/unified.js --------------------------------------------------------------------------------