this post was submitted on 07 Nov 2023
237 points (99.6% liked)

homeassistant

11833 readers
233 users here now

Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. Available for free at home-assistant.io

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] bananaw@sh.itjust.works 4 points 10 months ago (3 children)

Anyone have good suggestions on what deserves my money, or the effort of setting up?

[–] TheMechanic@lemmy.ca 23 points 10 months ago (1 children)

Anything new I buy has the ability to directly talk to homeassistant without a third party. Zigbee, zwave, ip. If its cloud it can fuck right off, I don't need it.

Many brand names are using these protocols to talk to their bullshit hubs that then send your data out of your network. I've got a hodgepodge of stuff like samsung sensors, Ikea switches, ip cameras and all kinds of stuff.

It isn't even that hard to set them up. HA can detect most devices on the network and recognise them.

[–] protist@mander.xyz 3 points 10 months ago (4 children)

Why does one need to connect everything like this? The only connected system (besides computers/entertainment ) I have in my entire house is a security system. What benefit is there to all that other stuff? Doesn't it add quite a bit of cost?

[–] commandar@kbin.social 9 points 10 months ago* (last edited 10 months ago)

Most security systems these days are just whitelabeled zwave etc sensors with a proprietary hub and a monthly charge.

The nice thing about HA is that you can pull almost everything into it and then add whatever automations you want. Recent example was my SO complaining about how dark it was going to the car when they leave in the morning. Super easy to set up an automation that turns on the floodlight switches when the front door opens between dusk and dawn. All kinds of stuff like that that's really useful.

[–] TheMechanic@lemmy.ca 5 points 10 months ago

You can definitely have all the gear and not need it. I've set mine up a little at a time to do specific tasks. Some examples:

Alert me if my side gate is unlocked at night, because that is the access to my business.

Check if there is water in the chicken house reservoir, as that means the chickens have dropped a pebble in the valve again.

[–] HeartyBeast@kbin.social 5 points 10 months ago

I only tend to dabble, but I have Home Assistant set up - one example I'm on a flexible electricity tariff which is based on wholesale prices. It chages every 30 minutes. I have an automation that grabs tarrif info. If the price goes below zero (which it does sometimes when the grid has more energy than it knows what to do with, my hot water heaters all automatically turn on.

[–] Alto@kbin.social 3 points 10 months ago

More cost upfront, but as we've seen time and time against companies will start charging subscriptions for thing they previously didn't.

Then there'd the privacy benefits. Not needing to rely on some company to keep servers alive. Being able to more easily troubleshoot/upgrade/swap individual parts. Not having to use a different app for basically every single device. All that sort of stuff

[–] walden@sub.wetshaving.social 4 points 10 months ago

Garages just need a momentary dry-contact switch wired up where the button is (or you can get a ladder and place it closer to the motor).

I use a Sonoff 4CH Pro which could do up to 4 garage doors. Surely there are other dry contact options, but that's the one I use.

It's flashed with Tasmota, and each switch is set to stay on for a fraction of a second, like a button press.

For sensors I use z-wave door sensors. The magnet is taped to the door, and the sensor is installed above it. I copied and pasted some yaml from somewhere to make Home Assistant display everything properly. It's pretty slick!

This is in my covers.yaml file (referenced from config.yaml, of course).

        garage_1:
          friendly_name: Garage 1
          device_class: garage
          value_template: "{{ is_state('binary_sensor.garage_1', 'on') }}"
          open_cover:
            - condition: state
              entity_id: binary_sensor.garage_1
              state: "off"
            - service: switch.turn_on
              target:
                entity_id: switch.garage_1_toggle
          close_cover:
            - condition: state
              entity_id: binary_sensor.garage_1
              state: "on"
            - service: switch.turn_on
              target:
                entity_id: switch.garage_1_toggle
          stop_cover:
            service: switch.turn_on
            target:
              entity_id: switch.garage_1_toggle
          icon_template: >-
            {% if is_state('binary_sensor.garage_1', 'on') %}
              mdi:garage-open
            {% else %}
              mdi:garage
            {% endif %}
[–] smallflag4168@lemmy.world 3 points 10 months ago

I got two ratgdo modules in the mail yesterday. Hooked ‘em up last night and it was super straightforward. I disabled the built-in WiFi on the MyQ openers and they’ve been working excellently last night and today. No regrets!