Intergas InComfort/Intouch Lan2RF gateway

The incomfort integrationIntegrations connect and integrate Home Assistant with your devices, services, and more. [Learn more] links Home Assistant with your Intergas Lan2RF gateway, including the boiler and any room thermostats attached to it. The integration uses the incomfort client library.

The Intergas Lan2RF Gateway connects thermostats based on the OpenTherm standard. An example of such a thermostat is the Comfort Touch Thermostat. The thermostats and LAN2RF gateway are often sold as a set. The gateway is suitable for use with Intergas Kombi Kompakt HRE and HReco appliances from year of manufacture 2014. If the Comfort Touch thermostat is used together with the gateway, then this will work in combination with Intergas Kombi Kompakt HRE, HReco, or Xtreme devices from year of manufacture 2017.

Boiler

The boiler is represented as a Water heater device. It will report the boiler’s state and current_temperature. The gateway does not expose any means to directly control the boiler or change its configuration.

Note that the current_temperature will switch between the CV (circulating volume) and Tap temperatures according to the current operating mode of the boiler. If the boiler is neither pumping nor tapping, it will be reported as the higher of the two.

In addition, there is a Sensor for each of CV pressure, CV temperature, and Tap temperature, and a Binary sensor that will be on if there is a fault with the boiler (the fault code will be a state attribute).

Rooms

Any room thermostats (there can be 0, 1 or 2) are represented as Climate devices. They will report the thermostat’s target temperature and current_temperature and the target temperature can be changed. This is similar to changing the target temperature override using the Comfort Touch App that comes with the thermostat/gateway. Note that any override will be reset when a new set point is reached on the thermostat’s schedule.

Configuration

To add the Intergas InComfort/Intouch Lan2RF gateway integration to your Home Assistant instance, use this My button:

Manual configuration steps

If the above My button doesn’t work, you can also perform the following steps manually:

  • Browse to your Home Assistant instance.

  • Go to Settings > Devices & Services.

  • In the bottom right corner, select the Add Integration button.

  • From the list, select Intergas InComfort/Intouch Lan2RF gateway.

  • Follow the instructions on screen to complete the setup.

The hub does not have to be in the same network as HA, but must be reachable via port 80/HTTP.

Data updates

The incomfort integrationIntegrations connect and integrate Home Assistant with your devices, services, and more. [Learn more] will fetch state data from the gateway every 30 seconds. When the target temperature on the thermostat is changed, it might take some time for the set point to be updated on the Home Assistant climate entityAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more].

Remove integration

This integration follows standard integration removal, no extra steps are required.

To remove an integration instance from Home Assistant

  1. Go to Settings > Devices & services and select the integration card.
  2. From the list of devices, select the integration instance you want to remove.
  3. Next to the entry, select the three-dot menu. Then, select Delete.

Automation

To send an alert if the CV pressure is too low or too high, consider the following example:

- alias: "Low CV Pressure Alert"
  triggers:
    - trigger: numeric_state
      entity_id: sensor.cv_pressure
      below: 1.0
  actions:
    - action: notify.pushbullet_notifier
      data:
        title: "Warning: Low CH Pressure"
        message: >-
          {{ trigger.to_state.attributes.friendly_name }}
          is low, {{ trigger.to_state.state }} bar.

Other properties are available via each device’s attributes.