Socket
Socket
Sign inDemoInstall

node-red-contrib-tcc-honeywell

Package Overview
Dependencies
47
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-red-contrib-tcc-honeywell

Node for interfacing with legacy (my total connect comfort/TCC) Honeywell thermostats in Node-Red


Version published
Weekly downloads
1
Maintainers
1
Install size
3.73 MB
Created
Weekly downloads
 

Readme

Source

node-red-contrib-tcc-honeywell

Interface for Honeywell Legacy Thermostats Node for Node-Red. Pulls data from the Honeywell TCC (Total Connect Comfort) API, which appears to be mostly undocumented now.

Project status: presently testing the ability to send data. Getting the status works fine and changng settings seems to properly connect tot he API and return data, but I have had issues with the cahnges actually being reflected on my thermostat. Settings are limited to data that can be sent to the api body. Since the api is undocumented, the only things I've found are turning the termostat on and off, setting a hold temperature, changing the running mode (heat, cool, etc.), and setting a hold time.

From other sources (referenced below), the commands that the (undocumented) api seems to accept are:

  • SystemSwitch 0 = emergency heat; 1 = heat; 2 = cool
  • HeatSetpoint temperature to set the heat to
  • CoolSetpoint temperature to set the a/c to
  • HeatNextPeriod time to end hold and go back to next scheduled action
  • CoolNextPeriod time to end hold and go back to next scheduled action
  • StatusHeat 1 for hold, 0 for regular (set to 0 to cancel an existing hold)
  • StatusCool 1 for hold, 0 for regular (set to 0 to cancel an existing hold)
  • FanMode 0 = auto; 1 = on

In node-red, for a node input, to change a setting, msg.payload is expected to be an object (or JSON) containing the settings to send in the request to the thermostat. For example, to set the cool setpoint until a time: msg.payload could be { CoolNextPeriod: 12345, CoolSetpoint: 74, StatusCool: 1 }. If msg.payload is instead the string "status" - or if it is any string or anything other than JSON or an object - the node will simply request the status from the thermostat and return the result. Results are output as an object, but can be converted to JSON.

Some Useful References:

  • https://github.com/NorthernMan54/homebridge-tcc
  • http://codegists.com/code/honeywell-thermostat/
  • http://www.bradgoodman.com/thermostat/

Keywords

FAQs

Last updated on 23 Feb 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc