(no title)
adyus | 6 years ago
The purpose of Home Assistant is to first observe all data flowing through your house, by connecting all existing sensors, switches, gateways and anything else that has a digital pulse.
The second step is control, having centralized access through a web or mobile app to all moving parts of a home.
However, the power of HA comes from the third step: automation. The best interface is the one you can forget exists.
I've been running HA for over two years. Aside from being lazy about upgrading to newer versions and adjusting to breaking changes, it's been working great and has spoiled me and my wife. We now expect every house we visit to automatically unlock before we reach the door, for the lights to turn on (and gradually off) automatically as we move through rooms, and for our phones to notify us when the best time to open a window would be, to naturally cool during the summer. It's great to have cold light during the day and warm, lower level light as the evening progresses.
Together with the Python environment provided by appdaemon, there's almost no limits to what you can do, provided you instrument your house with sensors and switches as best as you can.
escapologybb|6 years ago
> However, the power of HA comes from the third step: automation. The best interface is the one you can forget exists.
I have the interface just for my carers and PAs et cetera, almost all of my interactions with the house are done via voice or other scripts triggered by various things. I would post a picture of my dashboard but it is horrendously messy contain hundreds things!
ethanpil|6 years ago
kevinsundar|6 years ago
The motion sensor isn't strictly necessary, you can use the phone joining the network as a trigger. It's just an extra filter to ensure there are no accidental unlocks. It will also prevent unlocks if you come home, park, and then leave without attempting to enter.
That's how I would do it, all easily doable in home assistant.
adyus|6 years ago
moondev|6 years ago
BubRoss|6 years ago
kingbirdy|6 years ago
How are you doing this? Is it built in motion sensing in the lights, or some other solution?
adyus|6 years ago
Setting a short motion detector rearm time lets me start a decay timer for the light that just turned on. If no motion is detected again, it starts lowering the intensity gradually over 10 minutes and finally turning the light off. I added a button in HA to override this and keep the light on when needed.
BrandoElFollito|6 years ago
If someone can program basic Pythin it is really, really worthwile to try it out.
cobri|6 years ago
adyus|6 years ago
freid|6 years ago
adyus|6 years ago
When the window is closed, but the outside temperature is lower that inside, it sends a notification to open the window. The opposite happens when the outside temperature exceeds the one inside, unless the window is already closed.
This is all written in Python via appdaemon since it's easier than defining the same automation via the UI (although that's also doable nowadays).
drewp|6 years ago