Hi All-
New to HomeAssistant (converted Vera, SmartThings, and very briefly, Wink user). I am trying to setup a garage door template in HA.
I use Vera for my radio and HA sees everything. Unfortunately, I have a GD00z-4 that vera wont seem to get to work. It shows up when I add it, but doesn’t trigger. I’ve tried unparing and re-paring multiple times. Reset the Linear, bounced power in both, removed battery in the tilt and no luck. So… I have temporarily given up and gone back to my mimolite contact switch and tilt sensor combination (I have used this prior to buying the GD).
In HA, I have it working, but it’s not pretty. I would like to figure out a way to make it look like a lock. The switch look groups with my locks, but shows as a light and the on/off doesn’t easily indicate open/closed.
Any suggestions on how to make it look like a garage door and be more intuitive when using? I thought maybe LOCK would have a template, but it doesn’t seem so. Maybe a custom sensor template added to the switch template?
Here’s my switch template I setup.
- platform: template
switches:
garage_door:
friendly_name: 'Garage Door'
value_template: "{{ is_state('binary_sensor.garage_tilt_sensor', 'on') }}"
turn_on:
service: switch.turn_on
entity_id: switch.util__garage_opener
turn_off:
service: switch.turn_on
entity_id: switch.util__garage_opener
Thanks!