From 1399c324a06941ba5c1d9a3ab9839e868500dfd5 Mon Sep 17 00:00:00 2001 From: timfosse <32069841+timfosse@users.noreply.github.com> Date: Mon, 29 Apr 2019 00:19:00 +0200 Subject: [PATCH] Added info for HeatIt Scene Controllers (#9023) * Update device-specific.markdown Added info for the wall switches/scene controllers from HeatIt/ThermoFloor: https://www.heatit.com/wp-content/uploads/2018/11/Heatit-Z-Push-Button-2.pdf https://www.heatit.com/wp-content/uploads/2018/11/Heatit-Z-Push-Button-8.pdf * :pencil2: Tweak * :pencil2: Tweak * :pencil2: Tweak --- source/_docs/z-wave/device-specific.markdown | 42 ++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/source/_docs/z-wave/device-specific.markdown b/source/_docs/z-wave/device-specific.markdown index 845dc0fa1d9..aacb9b3da27 100644 --- a/source/_docs/z-wave/device-specific.markdown +++ b/source/_docs/z-wave/device-specific.markdown @@ -624,4 +624,46 @@ switch: value_id: "{{ state_attr('sensor.scene_contrl_indicator','value_id') }}" value: "{{ states('sensor.scene_contrl_indicator')|int - 16 }}" ``` + +### {% linkable_title HeatIt/ThermoFloor Z-Push Button 2/8 Wall Switch %} + +To get the Z-Push Button 2 or the Z-Push Button 8 working in Home Assistant, you must first edit the `COMMAND_CLASS_CENTRAL_SCENE` in your `zwcfg` file. + +1. Go the Z-Wave control panel in Home Assistant and make a note of the node number your wall switch has been assigned. +2. *Stop* Home Assistant. +3. Make a backup of your `zwfcg` file, just in case. +4. In the `zwcfg` file, find the `Node id` that corresponds to the number you noted in the first step. +5. Within the `Node id` you identified, highlight everything between `` (inclusive) and paste in the following: + - 5.1 For the Z-Push Button 2: + + ```xml + + + + + + ``` + + - 5.2 For the Z-Push Button 8: + + ```xml + + + + + + + + + + + + ``` + +6. Save the changes you made the `zwcfg` file and start Home Assistant back up. + +Button presses will trigger `zwave.scene_activated` with the following: + +- `scene_id`: the number of the button you press from top left (1) to bottom right (8) + {% endraw %}