mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-22 00:36:49 +00:00
Update Heatmiser climate component configuration variable (#6841)
* Update Heatmiser climate component configuration variable
* 🚑 remove whitespace
* Minor changes
This commit is contained in:
parent
7442a81842
commit
ec141671e8
@ -13,7 +13,6 @@ ha_release: "0.10"
|
|||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The `heatmiser` climate platform let you control [Heatmiser DT/DT-E/PRT/PRT-E](http://www.heatmisershop.co.uk/heatmiser-slimline-programmable-room-thermostat/) thermostats from Heatmiser. The module itself is currently setup to work over a RS232 -> RS485 converter, therefore it connects over IP.
|
The `heatmiser` climate platform let you control [Heatmiser DT/DT-E/PRT/PRT-E](http://www.heatmisershop.co.uk/heatmiser-slimline-programmable-room-thermostat/) 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.
|
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.
|
||||||
@ -23,7 +22,7 @@ To set it up, add the following information to your `configuration.yaml` file:
|
|||||||
```yaml
|
```yaml
|
||||||
climate:
|
climate:
|
||||||
- platform: heatmiser
|
- platform: heatmiser
|
||||||
ipaddress: YOUR_IPADDRESS
|
ipaddress: YOUR_IP_ADDRESS
|
||||||
port: YOUR_PORT
|
port: YOUR_PORT
|
||||||
tstats:
|
tstats:
|
||||||
- 1:
|
- 1:
|
||||||
@ -33,10 +32,26 @@ climate:
|
|||||||
|
|
||||||
A single interface can handle up to 32 connected devices.
|
A single interface can handle up to 32 connected devices.
|
||||||
|
|
||||||
Configuration variables:
|
{% configuration %}
|
||||||
|
ipaddress:
|
||||||
- **ipaddress** (*Required*): The ip address of your interface.
|
description: The IP address of your interface.
|
||||||
- **port** (*Required*): The port that the interface is listening on.
|
required: true
|
||||||
- **tstats** (*Required*): A list of thermostats activated on the gateway.
|
type: string
|
||||||
- **id** (*Required*): The id of the thermostat as configured on the device itself
|
port:
|
||||||
- **name** (*Required*): A friendly name for the thermostat
|
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 %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user