npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

homebridge-tcc

v0.2.34

Published

Honeywell Total Connect Comfort support for Homebridge: https://github.com/nfarina/homebridge

Downloads

140

Readme

homebridge-tcc

NPM Downloads

This is a plugin for North America Honeywell Total Connect Comfort site. It is a partially-working implementation into HomeKit. This plugin is work in progress. Help is appreciated! Please note it does not work with the International Honeywell Total Connect Comfort site. Historical display of temperature data is available via HomeKit apps thats support graphing.

Plugin will discover your thermostats and create one for each connected to your TCC account.

Devices Tested With

  • RTH6580WF
  • RTH8580WF
  • RTH9580
  • TH6320WF
  • 9850
  • MHK1
  • Honeywell's Prestige IAQ Thermostat (THX9421R5021WW) and it's accompanying Equipment Interface Module (THM5421R1021)

Installation

  1. Install homebridge using: npm install -g homebridge
  2. Install this plugin using npm install -g homebridge-tcc
  3. Update your configuration file. See sample-config below for a sample.

On Windows platforms

Please ensure the node-gyp is properly configured for use prior to installing. Error messages like this may appear during installation if not.

gyp ERR! find Python Python is not set from command line or npm configuration

To resolve the issue, please follow the steps here. https://github.com/nodejs/node-gyp#on-windows

Configuration Sample

"platforms": [
       {
            "platform": "tcc",
            "name" : "Thermostat",
            "username" : ".....",
            "password" : ".....",
        }
    ]
  • platform: tcc
  • name: can be anything you want, this is only used in the homebridge logs and is not the thermostat name
  • username: your Honeywell e-mail
  • password: your Honeywell password

Optional settings

  • refresh - Data polling interval in seconds, defaults to 10 minutes. Setting lower than 10 minutes may trigger request rate limiter on Honeywell backend.
  • storage - Storage of chart graphing data for history graphing, either fs or googleDrive, defaults to fs
  • usePermanentHolds - If set to true, temperature changes will be set as permanent holds, rather than temporary holds. This will allow you to use HomeKit automations to completely replace your thermostat's schedule. If set to false, the temperature changes will expire after a certain period of time and resume your normal schedule. By default, this is off.
  • sensors - Enables temperature/humidity HomeKit sensors (useful for automations), options include:
    • none - No sensors will be shown (this is default setting)
    • all - Enables all available temperature/humidity sensors
    • inside - Enables temperature and humidity sensors for each thermostat
    • insideHumidity - Enables inside humidity sensors for each thermostat
    • outside - Enables a single set of outdoor temperature and humidity sensors
  • debug - Enables debug level logging from the plugin, defaults to false, to enable set to true

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
  • devbymike - Validation of RTH9580
  • djsomi - Investigation into international TCC site
  • gsulshski - Validation of TH6320WF
  • l3nticular - Support for Mode 7
  • simont77 - FakeGato History
  • hakusaro - Added support for permanent temperature holds.
  • jcgorla-dev - Validation of Honeywell's Prestige IAQ Thermostat
  • kylerove - Added support for separate indoor and outdoor temperature / humidity sensors
  • johnjensenish - Enhanced support for separate indoor and outdoor temperature / humidity sensors