1.7 KiB
layout | title | description | date | sidebar | comments | sharing | footer | logo | ha_category | ha_release | ha_iot_class |
---|---|---|---|---|---|---|---|---|---|---|---|
page | OpenEnergyMonitor WiFi Thermostat | Instructions on how to integrate an OpenEnergyMonitor thermostat with Home Assistant. | 2017-01-27 11:15 | true | false | true | true | oem.png | Climate | 0.39 | Local Polling |
This platform supports the ESP8266 based "WiFi MQTT Relay / Thermostat" sold by OpenEnergyMonitor. The underlying library only supports this single relay variant of the original device.
This platform controls the setpoint of the thermostat in its "manual" mode, therefore there is a configuration option the away setpoint.
To set it up, add the following information to your configuration.yaml
file:
# Example configuration.yaml entry
climate oem:
- platform: oem
host: 192.168.0.100
{% configuration %} host: description: The IP address or hostname of the thermostat. required: true type: string port: description: The port for the web interface. required: false default: 80 type: integer name: description: The name to use for the frontend. required: false default: Thermostat type: string username: description: Username for the web interface if set. required: inclusive type: string password: description: Password for the web interface if set. required: inclusive type: string away_temp: description: Setpoint for the thermostat in away mode. required: false default: 14.0 type: float {% endconfiguration %}