anybody using homeassistant and having success? i feel like everything i try with it is extra complicated, but i’d love to hear others’ success stories.

  • Pulsar@lemmy.world
    link
    fedilink
    arrow-up
    28
    arrow-down
    1
    ·
    5 days ago

    Stay way, it is way too addictive. If you are not careful you will end automating from window blinds to toilets.

    • NirodhaAvidya@lemmy.world
      link
      fedilink
      English
      arrow-up
      13
      arrow-down
      1
      ·
      5 days ago

      Can confirm. Started with replacing my Tuya lightbulbs. Last thing I automated was hydrometers for my house plants to tell me they’re thirsty.

      • ultrafastsloth@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        4 days ago

        do you have tips for someone who hasn’t gotten there yet but would want to and has 20+ plants that would be nice to monitor? I already build an indoor HA automated lamp house for tomatoes (ESPhome)

        • NirodhaAvidya@lemmy.world
          link
          fedilink
          English
          arrow-up
          2
          ·
          4 days ago

          I guess I wish I had switched to zigbee earlier. I have been slowly replacing all my tuya wifi devices. Zigbee Home-assistant App and Zigbee2MQTT are both local-only. For Hygrometers, buy in bulk and expect 1 in 4 to be useless garbage. I get them on Ali for cheap.

          • ultrafastsloth@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            3 days ago

            Thanks. I would buy like 4pcs only and be disappointed, would not expect for 1 out of 4 to not work, thats good advice

      • favoredponcho@lemmy.zip
        link
        fedilink
        arrow-up
        1
        arrow-down
        1
        ·
        4 days ago

        How will we achieve fully automated luxury communism if the house plants are thirsty and we don’t know?

  • UnrefinedChihuahua@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    8
    ·
    edit-2
    3 days ago

    My success is that my wife loves it and complains when I take it down for maintenance. I’ve successfully moved her and the kids away from Google Assistants and internet connected everything.

    That’s what a win looks like, 100% WAF.

    *edit: spelling.

  • tychosmoose@piefed.social
    link
    fedilink
    English
    arrow-up
    14
    ·
    5 days ago

    No problems here. Pretty basic use, outside light scheduling, tying inside lights together (if a on, turn b&c on), bathroom fan timers, and sensor notifications. I haven’t really messed with the dashboard.

  • shadshack@feddit.online
    link
    fedilink
    English
    arrow-up
    8
    ·
    4 days ago

    Oh yeah, I use it for everything from automated lights to server monitoring notifications to Web scraping for when Publix chicken tender subs are on sale. Most everything you can think of is pretty well documented, and someone’s done it before. They have made some UI changes recently that make creating automations easier, but if you are ok with copying and editing YAML files, you can steal what other people have created pretty easily.

  • FunnySalt@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    13
    ·
    edit-2
    5 days ago

    Yep, been running it for a couple years at least? Mostly ZigBee and Zwave devices. For lights, some other powered devices, temperature control, and in-house location tracking.

    It’s not always intuitive, but always figure it out eventually. There’s a homeassistant community at !homeassistant@lemmy.world which might be helpful if you have questions.

  • tofu berserker (he/they)@slrpnk.netOP
    link
    fedilink
    arrow-up
    10
    ·
    5 days ago

    i had a pretty effective google home setup but have tried to transition away from Google devices, and good lord. it’s so much more complicated doing it myself!

    • B0rax@feddit.org
      link
      fedilink
      arrow-up
      8
      ·
      5 days ago

      How so? Most things should be detected automatically. Dashboards can also be populated automatically, same as with google home. If you want better dashboards, it will take more work.

      Which points give you pain?

  • bus_factor@lemmy.world
    link
    fedilink
    arrow-up
    8
    ·
    5 days ago

    Automations can get pretty clunky, but I manage with my simple needs. Some people swear by using NodeRed on top of home assistant, but I’ve never tried it.

  • zout@fedia.io
    link
    fedilink
    arrow-up
    6
    ·
    5 days ago

    It really is a pain in the ass if you’re not the type of person who likes to tinker with everything all the time. And, if you want something that isn’t the most common thing, you have to SSH into the server that runs it.

  • brvslvrnst@lemmy.ml
    link
    fedilink
    arrow-up
    7
    ·
    5 days ago

    Its amazing and addictive lol especially once you start taking back control of your local devices. Rtl433 would be the followup ;)

  • lyralycan@sh.itjust.works
    link
    fedilink
    arrow-up
    6
    ·
    5 days ago

    I feel like they over engineered the heck out of ‘simplifying’ automations, to the point I stayed on Core v2025.8.3 for about 7 months. I disliked their menu changes and hate the big ol card that comes up on mobile when editing - much prefer the older style.

  • realitaetsverlust@piefed.zip
    link
    fedilink
    English
    arrow-up
    6
    ·
    5 days ago

    Pretty sure my house wouldn’t work anymore without it. My girlfriends growlights, the blinds, the vacuum, the lawn mower, hell even the kettle to some extent.

      • realitaetsverlust@piefed.zip
        link
        fedilink
        English
        arrow-up
        5
        ·
        4 days ago

        Yes. It’s not a kettle as in the pot you put on the stove, but an electric water … heater … thingy. I honestly have no idea how to call it in english. The german word would be “Heißwasserspender”, literally translating to “hot water dispenser”. I disassembled it, soldered a tiny raspberry pi board to it that could control the device as you could with the buttons and wrote a rudimentary API that I now control via home assistant.

        Within HA, I can control the kettle via calling the API of the pi. For example, I got a script that triggers if my girlfriends phone is entering my WLAN-network.

        The call to the API looks like this:

        rest_command:  
          kettle_set_params:  
            url: "http://kettle.local/"  
            method: POST  
            content_type: "application/json"  
            payload: '{"amount": {{ amount }}, "temp": {{ temp }}}'  
        

        It’s dynamic, so for the “default black tea” she likes, these are the arguments

        set_kettle_default_black_tea:  
          alias: "Set Kettle"  
          sequence:  
            - service: rest_command.kettle_set_params  
              data:  
                amount: 500  
                temp: 100  
        

        And this is the trigger:

        - alias: "Start kettle when Ana home"  
          trigger:  
            - platform: state  
              entity_id: device_tracker.pixel6_ana  
              from: "not_home"  
              to: "home"  
              for: "00:00:10"  
          condition:  
            - condition: time  
              after: "18:00:00"  
              before: "20:00:00"  
          action:  
            - service: script.set_kettle_default_black_tea  
        

        That call is received by the pi, who then triggers the kettle. So every time my girlfriends phone is entering the wifi, it’s between 18:00 and 20:00 and there’s a cup present (done via a simple proximity sensor that I glued to the side of the kettle. That’s also not known to the home assistant, I didn’t really know how to feedback that information to it so I just had it handled by the pi itself), the kettle triggers and dispenses hot water. She can also do it manually via the home assistant app, I made a widget for that where you can just select temperature, amount and that’s it.

        I just hope the thing never breaks because I reassembled it using superglue, but then I noticed I forgot to install SSH on the pi, making it kinda an isolated piece of software that I just hope keeps running indefinitely lol.

  • KyuubiNoKitsune@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    5 days ago

    It’s not super user friendly and the UI really sucks. I broke my HA by trying to remove an esp32 Bluetooth proxy. Now it refuses to allow me to add it, so all my Bluetooth devices can’t connect.

    I appreciate that it’s free, but fuck I hate it, it’s a convoluted POS.

  • diyrebel@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    1
    ·
    4 days ago

    I have no interest myself, but if I wanted a home assistent I would take an Amazon Echo (either from a dumpster, or 2nd-hand), and put lineageOS on it to liberate it. The more Amazon hardware that gets converted to a liberated platform, the better. People have done this successfully with the Echoes that have a screen, but the headless Echoes need the same motivation and effort so we can liberate those too. Otherwise they are going to waste.

  • tofu@lemmy.nocturnal.garden
    link
    fedilink
    arrow-up
    4
    ·
    5 days ago

    Yeah I like it a lot. Didn’t use anything else so I don’t have a comparison, but I found most things very straightforward.

    It’s getting messy when you have to do non-standard tasks like removing some entries from the database