mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-03 01:28:58 +00:00

* e.g. to e.g., and proper case for Home Assistant * Instructions how to -> Instructions on how to
1.3 KiB
1.3 KiB
layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, ha_iot_class
layout | title | description | date | sidebar | comments | sharing | footer | logo | ha_category | ha_release | ha_iot_class |
---|---|---|---|---|---|---|---|---|---|---|---|
page | NuHeat | Instructions on how to integrate your NuHeat Signature thermostats within Home Assistant. | 2017-11-11 18:00 | true | false | true | true | nuheat.png | Hub | 0.61 | Cloud Polling |
The nuheat
component lets you control connected floor heating thermostats from NuHeat.
First, you will need to obtain your thermostat's numeric serial number or ID by logging into MyNuHeat.com and selecting your thermostat(s).
Once you have the Thermostat ID(s), add the following information to your configuration.yaml
file:
# Example configuration.yaml entry
nuheat:
username: you@example.com
password: very-secure-password
devices: 12345
# Example configuration.yaml entry with multiple thermostats
nuheat:
username: you@example.com
password: very-secure-password
devices:
- 12345
- 67890
{% configuration %} username: description: The username for accessing your MyNuHeat account. required: true type: string password: description: The password for accessing your MyNuHeat account. required: true type: string devices: description: The serial number/ID of each thermostat you would like to integrate. required: true type: [string, int] {% endconfiguration %}