Hello, I have a garage door that is configured in HA as light.basculante…
Onboard the relay is configured to switch on and off automatically after 1 sec. Because the automatic door has only one button: when it is pressed it opens, if is pressed again it stops and if pressed again it stops…
Now, I’d like to show in HA only one button and not the up/stop/down…
I have done this:
cover:
- platform: template
covers:
door_garage:
unique_id: door1
friendly_name: "door1"
optimistic: false
position_template: "50"
open_cover:
service: light.turn_on
data:
entity_id: light.basculante
close_cover:
service: light.turn_on
data:
entity_id: light.basculante
stop_cover:
service: light.turn_on
data:
entity_id: light.basculante
It works but I’d like only one button…
Many thanks