I installed a Shelly One on my garage door to integrate it into HA. It opens and closes the door great. But I’m having a few issues otherwise. And I’m hoping to get some advice as I’m beyond frustrated with trying to troubleshoot this myself.
-
when the door opens and closes, it takes about a minute or so for HA to find out about it. But yet if I watch it in the website for the Shelly device, it’s almost instant. What (if anything) can I do to reduce the delay?
-
I created a template Cover (definition pasted below) for the door and added it to my dashboard. The cover entry has an icon – that DOES update properly (although delayed per #1 above) and two arrows separated by a square (see the image below). One arrow is always grayed out. If I press the one that is NOT grayed out, the door operates and the arrows both toggle from disabled to enabled or vice versa. If I want to stop the door, I have to press the square, that changes which arrow is grayed out – then I can press the other arrow. See the short video (about 40 seconds) at the following link. How can I get it to just show me a single button? If I want to open or close the door or even just stop it in the middle of whichever direction it was going, I just need to trigger the momentary switch.
cover:
- platform: template
covers:
garage_door:
device_class: garage
friendly_name: "Garage Door"
value_template: "{{ states('sensor.garage_door') }}"
open_cover:
- condition: state
entity_id: sensor.garage_door
state: "closed"
- service: switch.toggle
target:
entity_id: switch.garage_door
close_cover:
- condition: state
entity_id: sensor.garage_door
state: "open"
- service: switch.toggle
target:
entity_id: switch.garage_door
stop_cover:
service: switch.toggle
target:
entity_id: switch.garage_door
icon_template: >-
{% if is_state('cover.garage_door', 'opening') or is_state('cover.garage_door', 'closing') %}
mdi:garage-alert
{% elif is_state('cover.garage_door', 'open') %}
mdi:garage-open
{% else %}
mdi:garage
{% endif %}
https://youtube.com/shorts/RB94jqORXW0?feature=share
- I have a Node Red automation that is SUPPOSED to trigger when the door opens. But it will not trigger. I even went so far as to trigger EVERY time the sensor changed regardless of what it changed to or from. I have a debug wired in and it just doesn’t run.