#Help to automate garage door with Tesla?

1 messages · Page 1 of 1 (latest)

solemn viper
#

I have a Tesla and no good way to open the garage door. Any suggestions? There seems to be paid third party subscription integrations which I would hope to avoid. I thought about iBeacon?

prisma shale
#

What do you want to do exactly?

solemn viper
#

Automate opening the garage door when my car returns home

sharp cedar
#

Why not use Frigate with the newer 0.16 version, which supports license plate recognition for your vehicle? You can create an automation in Home Assistant so that when your vehicle approaches the camera, it reads the plate information and then opens your garage automatically ?

jagged atlas
#

There’s a Tesla custom integration (can find it on HACS) or if you’re data-hungry you can run teslamate in a docker container, and it can populate sensors over MQTT

solemn viper
#

I don't have a camera there yet and I have no front plate

solemn viper
#

I've tried the hacs add-on, it requires fleet API access which I don't have. I got denied to when I applied

#

Is there no way to do it based on iBeacon or something?

deft trench
#

Do you have a relais for the garage door? Do you have a NAS or a server at home?

#

I recommend @jagged atlas idea. I do have the same setup

#

Its fairly easy to setup

solemn viper
#

i have ratgdo setup on the garage door. Not sure what the NAS/server is for? oh you mean to run teslamate?

solemn viper
#

@deft trench if you have this setup, do you have an automation made for garage door open you could share the yaml please?

deft trench
#

@solemn viper i run it on teslamate yes

alias: Tesla kommt nach Hause
description: ""
triggers:

  • trigger: zone
    entity_id: device_tracker.natalie_location_tracker
    zone: zone.home
    event: enter
    conditions:
  • condition: time
    after: "05:00:00"
    before: "22:30:00"
    actions:
  • action: switch.toggle
    metadata: {}
    data: {}
    target:
    entity_id: switch.garagentor_switch_0
    mode: single
safe panther
#

I do this with Teslemetry:

alias: Sonic Garage Door Opener
description: ""
triggers:
  - entity_id:
      - sensor.sonic_distance_to_arrival
    below: 0.4
    above: 0
    trigger: numeric_state
  - trigger: numeric_state
    entity_id:
      - sensor.sonic_time_to_arrival
    above: 0
    below: 0.02
conditions:
  - condition: zone
    entity_id: device_tracker.sonic_route
    zone: zone.home
actions:
  - device_id: c1fdebe4930fff4ddc427331efeed702
    domain: cover
    entity_id: 70767b74d2561f3ec12aa8aa71f6116f
    type: open
  - action: notify.mobile_app_pixel_9_pro_xl
    data:
      message: "Opening Garage door "
mode: single
next finch