From 82e77824a4396cf50373b326e14854eddf04af14 Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Fri, 9 Nov 2018 09:41:53 +0100 Subject: [PATCH] Update eq3btsmart climate component configuration (#7438) --- .../_components/climate.eq3btsmart.markdown | 29 +++++++++++++------ 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/source/_components/climate.eq3btsmart.markdown b/source/_components/climate.eq3btsmart.markdown index ce833566ff4..292b58fdbf7 100644 --- a/source/_components/climate.eq3btsmart.markdown +++ b/source/_components/climate.eq3btsmart.markdown @@ -18,7 +18,8 @@ The current functionality allows setting the temperature as well as controlling As the device doesn't contain a temperature sensor ([read more](https://forum.fhem.de/index.php/topic,39308.15.html)), we report target temperature also as current one. -### Testing the connectivity ### +### {% linkable_title 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: ```bash @@ -32,9 +33,9 @@ Boost: False Current target temp: 21.0 Current mode: auto dst Valve: 0 -``` +``` -### Configuration ### +### {% linkable_title Configuration %} ```yaml # Example configuration.yaml entry @@ -45,9 +46,19 @@ climate: mac: '00:11:22:33:44:55' ``` -Configuration variables: - -- **devices** array (*Required*): List of thermostats. - - **[device-name]** (*Required*): The name to use for the thermostat. - - **mac** (*Required*): MAC address of the thermostat. - +{% 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 %}