Honeywell Total Connect Comfort (US)

The Honeywell integration integrates Home Assistant with US-based Honeywell Total Connect Comfort (TCC) climate systems.

If your system is compatible with this integration, then you will be able access it via https://mytotalconnectcomfort.com/portal/ (note the /portal/).

配置

要将 Honeywell Total Connect Comfort (US) integration 添加到您的 Home Assistant 实例中,请使用此 My 按钮:

手动配置步骤

如果上述 My 按钮不起作用,您也可以手动执行以下步骤:

  • 浏览到您的 Home Assistant 实例。

  • 转到 设置 > 设备与服务

  • 在右下角,选择 Add Integration 按钮。

  • 从列表中选择 Honeywell Total Connect Comfort (US)

  • 按照屏幕上的说明完成设置。

Supported hardware

Home Assistant is integrated with the following devices through https://mytotalconnectcomfort.com/portal/:

Other devices like Security systems are not currently supported by this integration.

Climate

The climate platform integrates Honeywell US-based thermostats into Home Assistant, allowing control of the thermostat through the user interface. The current inside temperature, operating mode, and fan state are also displayed on the thermostat card.

All climate actions are supported except set_swing_mode.

Due to the instability of the Honeywell total connect system, actions within automations should repeat until success similar to the following example:

alias: "No one home"
description: "Everyone has left home"
triggers:
  - trigger: numeric_state
    entity_id: zone.home
    for:
      minutes: 10
    below: 1
actions:
  - repeat:
      sequence:
        - action: climate.set_temperature
          target:
            entity_id: climate.stat
          data:
            temperature: 64
        - delay:
            minutes: 1
      until:
        - condition: state
          entity_id: climate.stat
          attribute: temperature
          state: 64

Sensor

The sensor platform integrates inside and outside temperature and humidity into Home Assistant as sensors for each device. Not every supported thermostat will support all sensors.

This integration will add Home Assistant sensors for the following:

Sensor Value
Outdoor temperature Average temperature of all Honeywell Wireless Outdoor Sensors
Outdoor humidity Average humidity of all Honeywell Wireless Outdoor Sensors
Indoor temperature Current temperature as measured at the specific thermostat
Indoor humidity Current humidity as measured at the specific thermostat

Switch

The switch entity integrates the emergency heat option for each device. If the thermostat supports emergency heat, the switch entity will be created.

This integration will add a switch for the following:

Switch Value
Emergency Heat Activates second stage heat source as primary heat

Humidifier

If the discovered device supports humidity control, the integration will add a humidifier and/or dehumidifier for each device.

Available Actions

Action Description
humidifier.set_humidity Set target humidity level
humidifier.turn_on Enable humidity control
humidifier.turn_off Disable humidity control
humidifier.toggle Toggle humidity control

For more details, see the humidifier integration documentation.

Configuration Example

# Example configuration.yaml entry
automation:
  - alias: "Maintain Comfortable Humidity"
    trigger:
      - platform: numeric_state
        entity_id: sensor.indoor_humidity
        below: 30 # Trigger when humidity drops below 30%
    action:
      - service: humidifier.turn_on
        target:
          entity_id: humidifier.living_room
      - service: humidifier.set_humidity
        target:
          entity_id: humidifier.living_room
        data:
          humidity: 35 # Set target humidity to 35% (recommended for comfort)