Use GD00Z-4 as a door/sensor in Alarmo

How can I add the GD00Z-4 garage door as a sensor in Alarmo? I have added it as a Z-wave device and working, but it doesn’t appear as a door in Alarmo.

What entities are available form the device?

I’m guessing cover.something in which case see: Alaramo: add tuya shutters (covers) as sensors

Hmm. I tried that before and didn’t work. It worked this time, though. Thanks.

Is there a way to take into consideration the “opening” and “closing” states? I want it to immediately report “open” when still opening and keep reporting “open” while still “closing” basically only reporting “closed” when fully closed.

Yes there is. Share your template binary sensor config.

{{is_state(‘cover.garage_door_controller’, ‘open’)}}

You could do:

{{ not is_state('cover.garage_door_controller', 'closed') }}

Also FYI to format your pasted config use the </> button (it may be in under the cog icon if you are on mobile), not the quote button.

1 Like