xrapidx
Honorary Master
- Joined
- Feb 16, 2007
- Messages
- 40,308
Mine is similiar - just using MQTT - for some reason you have to specify open or close - you can't just attempt to trigger it. I wonder if toggle would work as a keyword.I wonder whether making the garage door a cover would resolve the "trigger garage door" issue by catering for open and close? My garage door cover looks like the following:
YAML:cover: - platform: template covers: right_garage_door: device_class: garage friendly_name: "Right Garage Door" availability_template: "{{ is_state('binary_sensor.right_garage_door_connection_status', 'on') }}" value_template: "{{ is_state('binary_sensor.right_garage_door', 'on') }}" open_cover: - condition: state entity_id: binary_sensor.right_garage_door state: "off" - service: switch.toggle target: entity_id: switch.right_garage_door close_cover: - condition: state entity_id: binary_sensor.right_garage_door state: "on" - service: switch.toggle target: entity_id: switch.right_garage_door
I suppose it sort of makes sense because google assistant doesn't know what you're trying to do to the garage door.
