Home Assistant Automations

Hmmm...I don't think I said it sux. I said I found it very cumbersome to configure. I'm not a coder, but I'm not a luddite either, and I am wondering how much time I want to invest setting this up to do....I don't know what. HomeKit works pretty well with about 80% of my devices. The other 20% require specific apps, etc. If I actually had a Lucid, that might be interesting, but delivery is still several weeks off...
I needed a couple very specific things from Home Assistant. I was pretty reluctant to move from (simpler) Hubitat to Home Assistant as I didn't need another timesink. The (yes, cumbersome) learning curve / adding devices work took a good three days. After that, Home Assistant is pretty straightforward to use. Since that initial port from Hubitat to HA, I've thought of and added of a number of automations that help us, like a voice announcement every hour that I've left the garage doors open. Or a voice announcement when one of our cars has finished charging, as a reminder to move the cable to the other. I thought my wife would roll her eyes at this kind of thing, but she appreciates the help.

HA does interface with cameras that can provide an RTSP feed (and likely others I haven't researched), but I haven't done anything with that functionality yet.
 
Finally got HACS installed, I think. Now I'm stuck on adding Appdaemon, whatever that is. I guess being tech savvy in the 80s and 90s doesn't really translate. Glad the summers are quiet worldwide. I may have time to figure it out.
 
Finally got HACS installed, I think. Now I'm stuck on adding Appdaemon, whatever that is. I guess being tech savvy in the 80s and 90s doesn't really translate. Glad the summers are quiet worldwide. I may have time to figure it out.

Hm, what are you using appdaemon for?
 
I currently have an older version of the Lucid integration installed and have been hesitant to update the HA Core etc. because I can't find the latest version of the Lucid automation. When I search for "Lucid" in HACS, I get a "No respositories matching search and filters" response. Am I looking in the wrong place? And, @larrycpa, I, too, am tech challenged but at least at one point I was able to get the Lucid integration installed and working ....
 
Hm, what are you using appdaemon for?
Finally got HACS installed, I think. Now I'm stuck on adding Appdaemon, whatever that is. I guess being tech savvy in the 80s and 90s doesn't really translate. Glad the summers are quiet worldwide. I may have time to figure it out.

Peanut Gallery comment: at one point I thought I needed Appdaemon too, but on further reading, I didn't.
 
I currently have an older version of the Lucid integration installed and have been hesitant to update the HA Core etc. because I can't find the latest version of the Lucid automation. When I search for "Lucid" in HACS, I get a "No respositories matching search and filters" response. Am I looking in the wrong place? And, @larrycpa, I, too, am tech challenged but at least at one point I was able to get the Lucid integration installed and working ....
If you've had it working in the past, it should be visible in HACS "Downloaded" section:
1747066897206.webp



 
If you've had it working in the past, it should be visible in HACS "Downloaded" section:
View attachment 28846


Interesting. The Lucid Motors HACS integration doesn't show up in the list--the only thing that does is HACS itself. Even though the Lucid Motors integration is very much working. I also searched for the Lucid integration when trying to add a new integration, and it showed up and requested my username and password, and when I entered them it says it was already configured. I hate being this ignorant ....
 
Interesting. The Lucid Motors HACS integration doesn't show up in the list--the only thing that does is HACS itself. Even though the Lucid Motors integration is very much working. I also searched for the Lucid integration when trying to add a new integration, and it showed up and requested my username and password, and when I entered them it says it was already configured. I hate being this ignorant ....

Reboot? Can you share a screenshot?
 
Rebooted. Re-downloaded HACS. Tried to add the Lucid repository manually but got a message that it is available in the HACS store and so it wouldn't allow me to add it manually. Anyway, I'll stop wasting everyone's time since what I have installed is working just fine and I shouldn't really need to update HA itself until one of my existing automations stops working. Appreciate everyone's help.
 
Rebooted. Re-downloaded HACS. Tried to add the Lucid repository manually but got a message that it is available in the HACS store and so it wouldn't allow me to add it manually. Anyway, I'll stop wasting everyone's time since what I have installed is working just fine and I shouldn't really need to update HA itself until one of my existing automations stops working. Appreciate everyone's help.

Feel free to shoot me a DM with a screenshot. You should be updating home assistant, as it will eventually fall so far out of date it will be a real pain later.
 
Idk. In the documentation it said to install it.
I don't think you need it for anything we'd be likely to do. I didn't install it on my HA Green.
I was initially confused by the mention of appdaemon in the documentation.
 
I’ll kick it off - part of the reason I don’t care about anyone’s homelink woes anymore is because I no longer have to wait for Lucid to give me geolocated garage opening and closing.

I installed an Infinity Shield, after seeing people like it on this forum. It’s a completely offline tool that just replaces your single beam sensor with a multi-beam array, meaning any obstruction breaks the beam, not just the single line at the bottom. This is optional but made me more comfortable shutting the door automatically.

I used to use MyQ to control the door, but after they turned off API access because they’re proper asshats, I installed ratgdo for $45 in about five minutes instead. It’s infinitely better. Orders of magnitude better, seriously.

Because it’s local and there’s no cloud service, I not only get access to control the door in what feels like actual real-time with no wait, but I also get to see the obstruction and motion sensor status, in what seems like real time.

As a result, here are my automations (all of which I set up in the UI, without touching a single line of code). If you’ve got HA set up, I am happy to help build the automation for you, if the UI is confusing.

To automatically close the garage door six minutes after I leave (or whenever it’s left open for any reason):
YAML:
alias: Auto close garage door
description: ""
trigger:
  - platform: state
    entity_id:
      - binary_sensor.ratgdov2_1b599b_1b599b_obstruction
    from: null
    for:
      hours: 0
      minutes: 6
      seconds: 0
    to: "off"
  - platform: state
    entity_id:
      - binary_sensor.ratgdov2_1b599b_1b599b_motion
    from: null
    to: "off"
    for:
      hours: 0
      minutes: 6
      seconds: 0
  - platform: state
    entity_id:
      - cover.ratgdov2_1b599b_1b599b_door
    from: null
    to: open
    for:
      hours: 0
      minutes: 6
      seconds: 0
condition:
  - condition: and
    conditions:
      - condition: state
        entity_id: cover.ratgdov2_1b599b_1b599b_door
        state: open
        for:
          hours: 0
          minutes: 6
          seconds: 0
      - condition: state
        entity_id: binary_sensor.ratgdov2_1b599b_1b599b_motion
        state: "off"
        for:
          hours: 0
          minutes: 6
          seconds: 0
      - condition: state
        entity_id: binary_sensor.ratgdov2_1b599b_1b599b_obstruction
        state: "off"
        for:
          hours: 0
          minutes: 6
          seconds: 0
action:
  - device_id: 5bd3f28166bb4dffa429afdf09830d32
    domain: cover
    entity_id: d73cba0eb4d59525ea7a76e1e1dabfea
    type: close
mode: single

And to open the garage as I get home (which works literally flawlessly, 100% of the time being open by the time I drive up):

YAML:
alias: Auto open garage door (Borski)
description: ""
trigger:
  - platform: zone
    entity_id: device_tracker.lulu
    zone: zone.home
    event: enter
condition:
  - condition: state
    entity_id: cover.ratgdov2_1b599b_1b599b_door
    state: closed
action:
  - service: cover.open_cover
    metadata: {}
    data: {}
    target:
      entity_id: cover.ratgdov2_1b599b_1b599b_door
mode: single
I don't have a Lucid, but I found this thread searching on Ratgdo and geofencing. For the open of the garage, I'm struggling to understand exactly what you are using for positioning that is doing the location? Is that the car itself? Would this work with a phone as well?
 
I don't have a Lucid, but I found this thread searching on Ratgdo and geofencing. For the open of the garage, I'm struggling to understand exactly what you are using for positioning that is doing the location? Is that the car itself? Would this work with a phone as well?
Yes and yes. We’re using the car because we can, but phone location will work just as well. The Home Assistant iOS/Android app sends your phone location so you can make automations based on when you enter your “home” zone, for example.
 
I don't have a Lucid, but I found this thread searching on Ratgdo and geofencing. For the open of the garage, I'm struggling to understand exactly what you are using for positioning that is doing the location? Is that the car itself? Would this work with a phone as well?
I'm using the location of my car, since the Lucid integration for HACS provides it; my car is named Lulu, hence when `device_tracker.lulu` enters `zone.home` my garage door opens if it is closed.

No reason you couldn't do that with any other `device_tracker` entity in Home Assistant; your phone would be fine, provided you have the Home Assistant iOS app installed and give it permissions.
 
I'm using the location of my car, since the Lucid integration for HACS provides it; my car is named Lulu, hence when `device_tracker.lulu` enters `zone.home` my garage door opens if it is closed.

No reason you couldn't do that with any other `device_tracker` entity in Home Assistant; your phone would be fine, provided you have the Home Assistant iOS app installed and give it permissions.
And this is done without remote access right?
 
And this is done without remote access right?
The garage door opening or closing is done locally by HA talking on your home LAN to RatGDO (or Konnected Blaq or White), rather than through a cloud interface, if that's what you are asking. The device tracker entity is getting its position data by your car or phone sending data through a cloud interface (car's cloud API or phone's HA companion app) to HA.
 
And this is done without remote access right?
Well, Home Assistant needs to know where your car (or phone) is, so in that sense, you'll need to be able to access Home Assistant from your phone.

But yes, the communication from HA to ratgdo is all local.
 
Back
Top