I'm...attempting to figure my way through python and the repo structure.Yippee!
Are you handy with code? If so, you probably could do it and contribute a PR to fix it![]()
I'm...attempting to figure my way through python and the repo structure.Yippee!
Are you handy with code? If so, you probably could do it and contribute a PR to fix it![]()
Not certain because it’s going to have to validate numbers to correct for the hw bug, possibly a new function. without a HA dev instance I can’t build and test it, sadly. Early 2025 goal is said dev instance.Ah, good luck. Probably can hop on the discord and get some decent pointers on where to start/structure.
Yeah that’s certainly an advantage of rewiring the house. I cheaped out and didn’t put smart switches in the closets…regretting that because it defeats an “all off” button.Three-way* smart switches have generally defeated me in my house. No neutral and some poor labeling of travelers.
*four- and five-.
Yep Zwave controls (pretty sure zibgee is same) - direct association where devices are directly communicating with each other, not going through HA. The basic, 3 way switch example - wires are connected to switch A. When switch B is turned on, (also) turn on switch A. When switch A is turned on, (also) turn on switch B.@Scotttheking you're referring to Zigbee/ZWave controls?
I was using old style Groups, I need to redo those to be the newer Groups, so that I can use the Voice PE to start controlling things.
Hardwood floors on the second floor of the old style - thick, no subfloor, and impossible to nondestructively separate - so damage is obvious. That means horizontal runs are almost impossible.Could you maybe come down from the top or up from the bottom, through the walls, for rewiring work like that, without disturbing much, if any, of the plaster? And could you run some kind of flexible conduit to meet code without having to staple down to things, even if you do end up having to leave wire in the walls that's stapled down but not connected to anything.
I know on my Insteon devices, you can push configurations that work without any software running. I.e. light switch turning on a light (without being wired directly), but at the same time it's still associated with the controller. I have a lot of Z-Wave stuff, but never tried it on that side. Is that not an option to do both?Yeah, Zigbee (and I think Matter/Thread) allows direct control too. Although I've never done so, always have it go through HA.
And my Groups were the old, yaml configuration ones. I only recently discovered there's a UI to create Groups now! Thus my thought of maybe I need to scrap my existing, and give the system a full revamp from scratch with all of the lessons learned.
Works the same or similar in all of them: Device A directly activates Device B, automation system can also call devices via rules (automations).So for my Insteon, the Direct Association just works and I can't control that particular link (it's called linking in Insteon) through automations, but I can still control the switch/light as a group through rules (i.e. lights turn off at 11pm, etc). Can I not do that with Z-wave? I haven't tried.
I'm very happy with the ZEN76 for a 4-way light switch. The wiring only has a neutral in the first switch. What's really neat is that you install this in first box, and then you leave the other switches as is.Three-way* smart switches have generally defeated me in my house. No neutral and some poor labeling of travelers.
I installed several ZBMINI-L2 switches in regular lights that only have a single toggle but with no neutral. Also pretty happy, though I haven't had them installed as long. The biggest limit is that they don't support ZigBee groups at all. So, I have an "All Lights" zigbee group plus an additional Home Assistant group that includes that group plus all of these relays. But, it works!the lack of a neutral wire in the living room/kitchen will persist.
I used to have this all done through a custom AppDaemon python app I wrote. I've moved it all to this Sensor Light blueprint and it's working very well! It lets you set a helper toggle like you've done for overrides. It's still the same number of items as you've got (two automations, a helper, and a sensor group) but I think with the blueprint it's much easier for someone else to understand it if they need to.Finally made a working motion sensor lockout.
Woah, that’s great, thanks! I’ll try moving over to it this weekend as it has features I want but didn’t write yet.I used to have this all done through a custom AppDaemon python app I wrote. I've moved it all to this Sensor Light blueprint and it's working very well! It lets you set a helper toggle like you've done for overrides. It's still the same number of items as you've got (two automations, a helper, and a sensor group) but I think with the blueprint it's much easier for someone else to understand it if they need to.
Switched over to it, looking good!Woah, that’s great, thanks! I’ll try moving over to it this weekend as it has features I want but didn’t write yet.
The horrible solution to this?Debugging blueprints is terribly painful.
Getting error when deploying blueprint to automation. Spent a while last night trying to fix this, no luck yet.
View attachment 102877
I run it as a VM on Proxmox, so a vm on your synology should work.I've been playing with a HA docker container on a Synology with 4GB of RAM. Problem is I keep running into stuff that assumes I'm not running in container though, for example the ESP Home setup instructions which tell me to use the built in store that doesn't work in docker. There is probably a workaround, but I'm already annoyed at how time-consuming HA setup is.
What is the best option for running HA without the docker limitations? VM in synology and probably a RAM upgrade? Should I get a Raspberry PI? Something else?
It works but is more effort.I've run it in a docker forever with no issues. I just don't get the "addons" which are just docker containers that HA manages so those are easy enough to add myself.
Not really. If you're used to using docker, which presumably you are if you're running HA in docker, it's dead simple to add anything else that's containerized. And you get the control of doing it yourself. I run tons of different services via docker, and I need to be able to manage them myself, not let HA do whatever it thinks is right. I have different networks to segregate services. Some can reach the internet, some can reach my IoT devices, some can't reach shit. I have different paths mounted to different containers. I manage backups if each automatically via zfs snapshots. I share hardware like GPUs across multiple containers.It works but is more effort.