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 %}