homebridge-tcc
This is a plugin for Honeywell Total Connect Comfort. It is a partially-working
implementation into HomeKit. This plugin is work in progress. Help is appreciated!
Devices Tested With
Installation
- Install homebridge using: npm install -g homebridge
- Install this plugin using npm install -g homebridge-tcc
- Update your configuration file. See sample-config below for a sample.
Configuration Sample
"platforms": [
{
"platform": "tcc",
"name" : "Thermostat",
"username" : ".....",
"password" : ".....",
"deviceID" : "...."
},
]
- platform: tcc
- name: can be anything you want
- username: your Honeywell e-mail
- password: your Honeywell password
- deviceID: Your honeywell deviceID Go to the Honeywell Total Connect Comfort website, log in and open your
device. Now look in the address bar and you will see something like:
https://mytotalconnectcomfort.com/portal/Device/Control/1234567
The last part is your Device ID.
- debug: optional parameter, will return details in log around response from TCC,
use full for debugging no response errors.
Roadmap
- Wire up set target temp, and set heat/cool switch
- Need recovery code for periodicUpdate to handle errors
Notes
It seems to be vitally important to set the right system time, especially on raspi!
Credits
- luc-ass - Borrowed your homebridge-evohome plugin as a base to start from
- Dan / Ghostbit - Borrowed your python script for the page flow of the TCC website
- bwdeleeuw - Fahrenheit testing and other enhancements