I decided to spin up Home Assistant on a VM on my server yesterday, and so far I’m not having much luck getting to to much that is actually useful.

I’m wondering if it’s me doing something wrong, but I can’t see what that would be.

I’ve signed up for the free trial of the cloud services which all seems to have gone fine, and I have a couple of integrations working (Roomba, printer ink levels, Sonos and a couple of others) but mostly everything else I’ve tried just doesn’t want to play ball

  • Apple TV - won’t pair - I press the pair button in HA but the ATV doesn’t respond with a pairing code

  • Ring doorbell / cameras - these are found but won’t display a live feed

  • Ring alarm - not recognised at all

  • Netatmo thermostat - widget displays but doesn’t sync correctly with thermostat and if I try to adjust temp it sets the target temp to 137 degrees C

  • Hue lights - having issues but this one might be my hub not HA

I was really hoping I could set up automations to, say, turn off my TV, turn off the lights, arm my house alarm - all with one press of a button but it looks like currently this isn’t going to happen.

Is it just me? Am I doing something wrong perhaps? Maybe I’m missing something obvious but it just seems like the integrations with these devices just isn’t quite there? I’d really be interested in other people’s experiences and whether they were able to solve these issues (if indeed they had them at all).

  • AggressivelyPassive@feddit.de
    link
    fedilink
    English
    arrow-up
    8
    arrow-down
    6
    ·
    1 year ago

    I have similar experiences. Everything seems extremely clunky and pseudo-simple. Some very basic features are utterly impossible, for most things you have to write config by hand and there’s absolutely zero guidance.

    To me, HA looks like a legacy enterprise project, that only works if you just happen to follow exactly the path someone had in mind when building it plus a bunch of half baked add-ons, where it seems like the maintainers lost interest after a while.

    • unknowing8343@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      15
      ·
      1 year ago

      In my experience, HA is simply a fuck-you to all those companies that want you to use their closed, cloud-based solution.

      It’s not perfect, but it’s basically all we got, unless you want the crappier experience of being forced to buy only one brand of things and being forced to use really, really simple automations.

      • AggressivelyPassive@feddit.de
        link
        fedilink
        English
        arrow-up
        5
        arrow-down
        18
        ·
        1 year ago

        If HA is the “answer”, then vendor locked solutions don’t look that bad in comparison.

        Xiaomis cloud might stop working in two years, but HA is already not working today. That’s not really appealing.

        • ashok36@lemmy.world
          link
          fedilink
          English
          arrow-up
          12
          arrow-down
          1
          ·
          1 year ago

          The HA android app just passed one million active devices. Saying “Ha is already not working today.” might be true for you but it’s obviously not true across the board.

        • stooovie@lemmy.world
          link
          fedilink
          English
          arrow-up
          11
          arrow-down
          1
          ·
          1 year ago

          Absolutely wrong. I have dozens of devices integrated, from a lot of brands, all working. You can of course try to get a turnkey solution from like Loxone, but be prepared to pay thousands of dollars, and good luck adding anything that’s not in their ecosystem. And there’s a lot of that. And what is there is all pretty outdated.

          Xiaomi is great and I use a lot of their stuff, but the options for automation are severely limited.

      • AggressivelyPassive@feddit.de
        link
        fedilink
        English
        arrow-up
        1
        arrow-down
        5
        ·
        1 year ago

        Sure.

        My setup here is pretty simple: a handful of temp/humidity sensors that push their readings to an MQTT queue, which then is read by Telegraf an written to InfluxDB. Optional complexity: I would prefer these sensors to delay the acutal send events, so they can push a batch of readings in one go.

        Now, ideally HA would be able to read the data from Influx as a sensor and even import the history. I tried the Influx integration, was told to configure that in the config files and literally for days I tried to get everything to work, but it just would not work. I can’t even list the different error messages here, it’s been a few weeks, but the consensus seems to be, that Influx is essentially not readable for HA for reasons. Like, there’s no error message that I could make sense of, it’s just generalFuckYouError 5446.

        Ok, then maybe I can read the measuements directly from MQTT? I would have duplicated data, but I can always delete old data in HA, so that’s ok. All my sensors currently write in the same topic and each message contains the sensor name, a timestamp and two measurements. That data structure however is utterly unreadable in for HA. Obviously, I need to split the messages into different (HA-)sensors based on the sensor name field and then differentiate between the different sensor values (humidity/temp). That is not possible. Like, it is completely not supported and the official stance is to put a bunch of MQTT listeners for each sensor/value pair in your config and then filter the messages based on sensor name and reading. Well, that’s really convenient! Especially for the completely outlandish case, that someone might want to automatically add new sensors.

        But ok, I played ball. I set up two testsensors (so four listeners in total). And it kind of worked. Until I noticed, that each message is processed once, which is perfectly in line with MQTT semantics, but it meant that messages that didn’t fit the listener they happened to collide with were just dropped. Awesome!

        But ok, next try, I’ve got Telegraf, that thing can probably help out. So I created new topics for each sensor and value, in a nice hierarchy and created a bunch of HA listeners, each having its very own topic.

        And that finally kind of worked. I still can’t batch-import messages, because HA ignores MQTT timestamps, I still can’t dynamically add new sensors, I still can’t “fuse” sensors belonging together (hum/temp do kind of correlate, after all), etc. etc.

        My case isn’t really unusual and not really complicated, yet it took me literally weeks to get to this point and it’s still a clunky, semi-functional clusterfuck, whos only benefit compared to Influx is, that it has an Android app.

        Disclaimer: I might mixed some thing up in the description above, it’s been a while. And I’m certain I could make some things nicer, but that’s not the point. I’m a senior software developer and can’t get this pile of Python to run. Maybe I’m really stupid, but I’d say HA is the culprit here.

        • ashok36@lemmy.world
          link
          fedilink
          English
          arrow-up
          11
          ·
          1 year ago

          You spent four paragraphs describing your unusual and unique set up and then asserted that your setup isn’t actual either of those things. I think you just don’t realize how out of the norm your requirements are.

          • AggressivelyPassive@feddit.de
            link
            fedilink
            English
            arrow-up
            1
            arrow-down
            3
            ·
            1 year ago

            What exactly?

            Seriously, reading data from Influx isn’t unusual, it’s kind of the whole point of a database to be read from. And sensor data kind of represent a time series. There even is an official plugin, it just doesn’t work right.

            What you seem to conveniently ignore is that I’m starting at two very simple points. And all those paragraphs are just attempts to make one of those work. That’s it.

            And again, this is exactly the attitude I’m referring to. Oh that is totally weird. That can’t work, obviously!

            Why? Why does the very simple use case to read data from a db not work?

        • stooovie@lemmy.world
          link
          fedilink
          English
          arrow-up
          4
          ·
          1 year ago

          Looks like an user error to me. Influx is for long-term storage of history and data, you don’t need it for automation at all.

          • AggressivelyPassive@feddit.de
            link
            fedilink
            English
            arrow-up
            2
            arrow-down
            8
            ·
            1 year ago

            Looks like this is not up to you to decide.

            If you would have read my comment, you would have noticed, that I intend to use Influx as a long term DB and use HA as automation around that. BTW: The thinking you’re showing here is exactly what I’m criticizing. You think that DBs and automation have no connection, so you decide, that I am the idiot for even trying. This is literally what I’ve described above.

            Also, I wrote quite a paragraph about the fact that I already accepted the idea to ditch the direct Influx integration.

            • stooovie@lemmy.world
              link
              fedilink
              English
              arrow-up
              8
              arrow-down
              1
              ·
              1 year ago

              So you use the free thing wrong, don’t RTFM, vent on internet and then vent some more when corrected? What’s your end game?

              • AggressivelyPassive@feddit.de
                link
                fedilink
                English
                arrow-up
                2
                arrow-down
                3
                ·
                edit-2
                1 year ago

                Nobody corrected me at all. It’s just “yeah because u stoopid”.

                I did read the manual. I did search for solutions and tried different approaches. And I documented that above. You seem to ignore that.

                Why do I vent here? Because that’s the question of the fucking post! Read the post! That’s exactly the question.

                Why do you have to be so stubborn? Can’t your accept, that maybe, just maybe, HA isn’t directly sent from God? Is HA your religion? Does that religion prescribe only skimming comments and just reacting on keywords to rile yourself up?

                Seriously, this pointless, self-righteous arrogance is the reason so many people hate “nerds”. This entire thread here is basically the “well ackshually” meme in text form. Reflect a bit in what you’re doing here.

        • Clou42@feddit.de
          link
          fedilink
          English
          arrow-up
          3
          ·
          1 year ago

          Thanks for elaborating. While I think that is a far cry from “some very basic features” being “utterly impossible”, I see the point, but I disagree that this a common experience.

          HA is meant as the central point in home automation, meaning it is consuming sensor data, automating actors and showing everything on its dashboards. Following that philosophy, long term storage is meant to be written to by HA, but not consumed from there.

          Then you are also running a very non-standard MQTT setup that does not conform to the usual conventions. If it were, you could make use of the autodetection capabilities and make sensors (and actors!) work very easily with HA/MQTT. I played around with this myself in a little toy project which I use to control my linux machine via MQTT and this worked wonderfully.

          I’d argue you are very far away from a typical use case and naturally you will run into problems making it work. That’s FOSS software for you, you can try to work around it, you can work on the missing features yourself or you can leave it. But it’s not fair to pretend your very special use case is some kind of measure of the project’s quality. People have built amazing things with HA, far from “exactly the path someone had in mind”.