Franck Nijhof 1833c32a2c Cleans up front matter (#9835)
* Sets front matter defaults

* Removes default front matter from section templates/pages

* Removes default front matter from addon pages

* Removes default front matter from integration pages

* Removes default front matter from posts

* Removes default front matter from docs pages

* Removes default front matter from other pages

* Fixes blog category pages
2019-07-11 14:35:08 -07:00

1.9 KiB

title, description, logo, ha_category, ha_release, ha_iot_class, redirect_from
title description logo ha_category ha_release ha_iot_class redirect_from
eQ-3 MAX! Cube Instructions on how to integrate eQ-3 MAX! components with Home Assistant via eQ-3 MAX! Cube. maxcube.png
Climate
Binary Sensor
0.40 Local Polling
/components/binary_sensor.maxcube/
/components/climate.maxcube/

eQ-3 MAX! integration for Home Assistant allows you to connect eQ-3 MAX! components via the eQ-3 MAX! Cube. The components connects to the eQ-3 MAX! Cube via TCP and automatically makes all supported integrations available in Home Assistant. The name for each device is created by concatenating the MAX! room and device names.

There is currently support for the following device types within Home Assistant:

  • Binary Sensor
  • Climate

Limitations:

  • Configuring weekly schedules is not possible.
  • Implementation is based on the reverse engineered MAX! protocol.

Supported Devices:

  • MAX! Radiator Thermostat (tested)
  • MAX! Radiator Thermostat+
  • MAX! Window Sensor (tested)
  • MAX! Wall Thermostat (tested)

One Gateway

A maxcube section must be present in the configuration.yaml file and contain the following options as required:

# Example configuration.yaml entry
maxcube:
  gateways:
    - host: 192.168.0.20

Multiple Gateways

# Example configuration.yaml entry
maxcube:
  gateways:
    - host: 192.168.0.20
      port: 62910
    - host: 192.168.0.21
      port: 62910

{% configuration %} host: description: The IP address of the eQ-3 MAX! Cube to use. required: true type: string port: description: The UDP port number. required: false type: integer default: 62910 scan_interval: description: The update interval in seconds required: false type: integer default: 300 {% endconfiguration %}