0.2.1 • Published 6 years ago

homebridge-tado-manual v0.2.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Homebridge Tado Control Switches

Homebridge plugin for controlling Tado thermostats.

Why do we need this plugin?

Tado provides everything we need in Apple HomeKit except for the manual switch we do not have direct access to in HomeKit. This plugin exposes exactly this as an extra switch to create automations for that.

For example:

Window open > Heater Off = Manual Control On

Window closed > Heating switched back to automatic = Manual control off

Installation

Follow the homebridge installation instructions at homebridge.

sudo npm install -g homebridge-tado-manual@latest

Example config.json:

{
 "bridge": {
     ...
 },
 "accessories": [
	 {
		 "accessory": "TadoManual",
		 "name": "Living Room",
		 "username": "TadoUser",
		 "password": "TadoPassword"
	 }
 ]
}

See Example Config for more details.

Options

AttributesRequiredUsage
nameYesMust be the same name from the Tado thermostat in the Tado App
usernameYesTado Login Username
passwordYesTado Login Password
pollingNoGet device state (Default: true)
intervalNoInterval (in s) for polling (Default: 3s)
homeIDNoID from your Tado Home
zoneIDNoID of the room where the thermostat is installed (eg living room)

Credits

This plugin was initially forked from and inspired by homebridge-tado-ac by @nitaybz

Thanks to @grover for this beatiful ReadMe template

License

MIT License

Copyright (c) 2017 SeydX

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.