Zooz ZEN16 - Z-Wave Plus, Multi-Relay
CAT5e (or whatever wire you want to use)
To install the Zooz ZEN16 relay:
1. Power up the ZEN16 with the included USB cable and a power brick.
2. Press the button on the box 3 times rapidly to add it to your Z-Wave network.
3. Insert your wiring into relay 1. (You're pretty much on your own from here. I'd hope you can figure this part out)
4. Find the correct ports on your garage door opener that control the motor and inset the two wires from the relay into them.
I found a few ways to make this work with my Zooz ZEN16.
This is the best way I've found so far:
# Garage Door 1
cover:
- platform: template
covers:
garage_door:
device_class: garage
friendly_name: "Garage Door 1"
# The next line tells the icon of the button to change based on the tilt sensor on my garage door
value_template: "{{ is_state('binary_sensor.z_wave_plus_gold_plated_reliability_garage_door_tilt_sensor_access_control_window_door_is_open', 'on') }}"
open_cover:
service: script.garage_door_toggle
close_cover:
service: script.garage_door_toggle
Here is the script referenced in the config script.garage_door_toggle
(Don't copy this script directly into your script file, rebuild it in the GUI)
garage_door_toggle:
sequence:
- type: turn_on
device_id: ************************************
entity_id: switch.multirelay_2
domain: switch
- wait_template: ''
timeout: '0.5'
continue_on_timeout: true
- type: turn_off
device_id: ************************************
entity_id: switch.multirelay_2
domain: switch
mode: single
alias: garage_door_toggle
Definitely not the best option.
The other, less effective, way I tried first:
switch:
- platform: template
switches:
garage1:
value_template: "{{ is_state('binary_sensor.z_wave_plus_gold_plated_reliability_garage_door_tilt_sensor_access_control_window_door_is_open', 'on') }}"
turn_on:
service: switch.turn_on
target:
entity_id: switch.multirelay_2
turn_off:
service: switch.turn_on
target:
entity_id: switch.multirelay_2
icon_template: >-
{% if is_state('binary_sensor.z_wave_plus_gold_plated_reliability_garage_door_tilt_sensor_access_control_window_door_is_open', 'open') %}
mdi:garage-open
{% else %}
mdi:garage
{% endif %}