home-assistant.io/source/_components/honeywell.markdown
Franck Nijhof ebca3218c7
🔥Removes linkable_title everywhere (#9772)
* Automatically create linkable headers

* Visually improve position of linkable header chain icon

* Do not auto link  headers on homepage

* Remove linkable_title everywhere

* 🚑 Re-instante linkable_title plugin as NOOP
2019-07-04 19:08:27 +02:00

3.1 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, ha_iot_class, redirect_from
layout title description date sidebar comments sharing footer logo ha_category ha_release ha_iot_class redirect_from
page Honeywell Thermostat Instructions on how to integrate Honeywell thermostats within Home Assistant. 2016-02-07 22:01 true false true true honeywell.png
Climate
pre 0.7 Cloud Polling
/components/climate.honeywell/

The honeywell climate platform lets you control Honeywell TCC (Total Connect Comfort) climate systems from Home Assistant. It does not integrate with Honeywell TCC alarm systems.

There is some potential confusion over this integration because it is currently implemented as a combination of two _distinct_ climate systems, one being US-based, the other is EU-based.

These two regions are not interchangeable, so you must be clear which applies to your climate system.

US-based Systems

These systems are based in North America, and temperatures are usually in Fahrenheit. They would likely be HVAC systems. They always use the somecomfort client library. In this integration, this is called the us region.

If your system is US-based, then you can access your system via https://mytotalconnectcomfort.com/portal/ (note the /portal/).

EU-based Systems

These systems are based in Europe (including the UK & Ireland), and temperatures are usually in Celsius. They would likely be heating-only systems. They always use the evohome-client client library. In this integration, this is called the eu region.

If your system is US-based, then you can access it via https://international.mytotalconnectcomfort.com/ (note the international).

The eu region is soon to be deprecated, and ongoing support for such systems is available via the evohome integration.

Configuration

To set up this integration, first confirm your region, then add the following information to your configuration.yaml file (the below example is for US-based systems):

climate:
  - platform: honeywell
    username: YOUR_USERNAME
    password: YOUR_PASSWORD
    region: us

{% configuration %} username: description: Email address of an account with access the TCC website for your region. required: true type: string password: description: Password for the account. required: true type: string region: description: Region identifier, either 'eu' or 'us'. required: false default: eu type: string away_temperature: description: "(only for the EU region) Heating setpoint when away mode is on, in degrees Celsius." required: false default: 16.0 type: float away_cool_temperature: description: "(only for the US region) Cooling setpoint when away mode is on, in degrees Fahrenheit." required: false default: 88 type: integer away_heat_temperature: description: "(only for the US region) Heating setpoint when away mode is on, in degrees Fahrenheit." required: false default: 61 type: integer {% endconfiguration %}