home-assistant.io/source/_components/eq3btsmart.markdown
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.6 KiB

title, description, logo, ha_category, ha_iot_class, ha_release, redirect_from
title description logo ha_category ha_iot_class ha_release redirect_from
EQ3 Bluetooth Smart Thermostats Instructions on how to integrate EQ3 Bluetooth Smart Thermostats into Home Assistant. eq3.gif
Climate
Local Polling 0.18
/components/climate.eq3btsmart/

The eq3btsmart climate platform allows you to integrate EQ3 Bluetooth Smart Thermostats.

The current functionality allows setting the temperature as well as controlling the supported modes with help of python-eq3bt library. As the device doesn't contain a temperature sensor (read more), we report target temperature also as current one.

Testing the connectivity

Before configuring Home Assistant you should check that connectivity with the thermostat is working, which can be done with the eq3cli tool:

eq3cli --mac 00:11:22:33:44:55

[00:1A:22:XX:XX:XX] Target 17.0 (mode: auto dst, away: no)
Locked: False
Batter low: False
Window open: False
Boost: False
Current target temp: 21.0
Current mode: auto dst
Valve: 0

Configuration

# Example configuration.yaml entry
climate:
  - platform: eq3btsmart
    devices:
      room1:
        mac: '00:11:22:33:44:55'

{% configuration %} devices: description: List of thermostats. required: true type: list keys: name: description: The name to use for the thermostat. required: true type: string keys: mac: description: MAC address of the thermostat. required: true type: string {% endconfiguration %}