├── .gitignore ├── LICENSE ├── README.md ├── config-example.json ├── images ├── anyone.PNG ├── details.PNG ├── fakegato_occupancy.PNG ├── fullweather.PNG ├── modes.PNG ├── overview.PNG ├── overview2.PNG ├── thermostat.PNG └── weather.PNG ├── index.js ├── package.json └── src ├── Boiler.js ├── Occupancy.js ├── Switch.js ├── Thermostat.js ├── Weather.js └── Window.js /.gitignore: -------------------------------------------------------------------------------- 1 | images 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/README.md -------------------------------------------------------------------------------- /config-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/config-example.json -------------------------------------------------------------------------------- /images/anyone.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/images/anyone.PNG -------------------------------------------------------------------------------- /images/details.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/images/details.PNG -------------------------------------------------------------------------------- /images/fakegato_occupancy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/images/fakegato_occupancy.PNG -------------------------------------------------------------------------------- /images/fullweather.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/images/fullweather.PNG -------------------------------------------------------------------------------- /images/modes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/images/modes.PNG -------------------------------------------------------------------------------- /images/overview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/images/overview.PNG -------------------------------------------------------------------------------- /images/overview2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/images/overview2.PNG -------------------------------------------------------------------------------- /images/thermostat.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/images/thermostat.PNG -------------------------------------------------------------------------------- /images/weather.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/images/weather.PNG -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/package.json -------------------------------------------------------------------------------- /src/Boiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/src/Boiler.js -------------------------------------------------------------------------------- /src/Occupancy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/src/Occupancy.js -------------------------------------------------------------------------------- /src/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/src/Switch.js -------------------------------------------------------------------------------- /src/Thermostat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/src/Thermostat.js -------------------------------------------------------------------------------- /src/Weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/src/Weather.js -------------------------------------------------------------------------------- /src/Window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydx/homebridge-tado-thermostat/HEAD/src/Window.js --------------------------------------------------------------------------------