
* broken link - https://www.home-assistant.io/hassio/run_local relates to https://github.com/home-assistant/home-assistant.io/issues/9774 * broken link - https://clearpass.server.com/guest/api_clients.php * broken link - http://cpre.kmutnb.ac.th/esl/learning/bh1750-light-sensor/bh1750fvi-e_datasheet.pdf * broken link - https://fr.wikipedia.org/wiki/Bbox * broken link - https://dd-wrt.com/site/index * broken links - https://www.medion.com/de/shop/p/50051273A1 also https://www.lidl.de/de/silvercrest-stereo-internetradio-sird-14-c2/p233545 * broken link - http://mafreebox.freebox.fr/api_version The link http://mafreebox.freebox.fr/api_version is not broken but is a local mdns address and that's why unresolvable. emoved http reference and added link to API documentation. * broken link - https://www.heatmisershop.co.uk/thermostats * broken link - https://app.hydrawise.com/config/account * broken link - https://www.kwb.net/de/produkte/kwb-comfort-3.html * broken link - https://www.home-assistant.io/components/lcn/climate.generic_thermostat * broken link - https://play.google.com/store/apps/details?id=it.barbaro.zanzito
1.6 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 | ||
---|---|---|---|---|---|---|---|---|
Heatmiser Thermostat | Instructions on how to integrate Heatmiser thermostats within Home Assistant. | heatmiser.png |
|
0.10 | Local Polling |
|
The heatmiser
climate platform let you control Heatmiser DT/DT-E/PRT/PRT-E thermostats from Heatmiser. The module itself is currently setup to work over a RS232 -> RS485 converter, therefore it connects over IP.
Further work would be required to get this setup to connect over Wifi, but the HeatmiserV3 python module being used is a full implementation of the V3 protocol.
To set it up, add the following information to your configuration.yaml
file:
climate:
- platform: heatmiser
ipaddress: YOUR_IP_ADDRESS
port: YOUR_PORT
tstats:
- 1:
id: THERMOSTAT_ID
name: THERMOSTAT_NAME
A single interface can handle up to 32 connected devices.
{% configuration %} ipaddress: description: The IP address of your interface. required: true type: string port: description: The port that the interface is listening on. required: true type: integer tstats: description: A list of thermostats activated on the gateway. required: true type: list keys: id: description: The ID of the thermostat as configured on the device itself. required: true type: string name: description: A friendly name for the thermostat. required: true type: string {% endconfiguration %}