The Home Automation Stack That Actually Works (After 3 Years of Tweaking)
Source: Dev.to
⚠️ Collection Error: Content refinement error: Error: 429 “you (bkperio) have reached your weekly usage limit, upgrade for higher limits: https://ollama.com/upgrade (ref: b8cec249-87e9-45d6-850f-d7d163009018)”
I’ve been running a smart home for 3 years. Here’s what survived the “cool demo” phase and became genuinely useful infrastructure. Before the working stack, let me honor what didn’t survive: Motion-activated lights everywhere — turns out, lights turning on when the cat walks by at 3 AM is not “smart” Voice-controlled thermostat — nobody wants to shout at their house when guests are over Automated blinds on sunrise — great in theory, terrible when you’re sleeping in on Saturday Smart lock auto-unlock on proximity — security nightmare when your phone GPS drifts The pattern: automations that are triggered by presence/time fail. Automations that are triggered by intent succeed. Instead of motion sensors, I use a combination of: Time of day + calendar events (if “meeting” → office lights to video-call preset) Device state (TV on → living room dims to 20%) Manual scene triggers via physical buttons (not voice, not app) The key insight: automation should eliminate decisions, not create new failure modes. My thermostat schedule isn’t time-based — it’s event-based: First motion in kitchen (coffee routine) → heat living areas All phones leave geofence → eco mode (this one actually works reliably) Window sensor open > 5 min → pause HVAC for that zone Humidity spike in bathroom → exhaust fan for exactly 12 minutes After disconnecting 90% of my notification triggers: Only alerts on: door open when “away” mode active, smoke/CO, water leak Zero alerts on: motion (too noisy), camera changes (useless), device offline (temporary) Weekly digest of camera clips rather than real-time notifications One button press at the door: Lights off (all zones) Thermostat to eco Robot vacuum starts Camera recording activates
Door locks (30-second delay for “forgot my keys” scenario) This single automation saves 10 minutes of “did I turn off…?” anxiety daily.
Layer Tool Why
Hub Home Assistant (RPi 4) Local-first, no cloud dependency
Switches Zigbee (IKEA + Sonoff) Mesh reliability, no WiFi congestion
Sensors Aqara (temp, humidity, door) Battery life: 2+ years
Cameras Reolink (local NVR) No subscription, no cloud
Voice None Removed all voice assistants — privacy + reliability
Buttons IKEA Shortcut buttons Physical > voice for reliability
WiFi smart devices are the wrong choice — Zigbee/Z-Wave mesh doesn’t compete with your devices for bandwidth Cloud-dependent devices will fail — when the company shuts down (it will), your “smart” device becomes a dumb one with no manual override Your partner must be able to use everything without the app — if automation breaks and only you can fix it, it’s a hobby project not infrastructure Less automation = more reliability — my best setup runs 8 automations, not 80 I write about smart home architecture and protocol comparisons at smarthomewizards.com. If you’re planning a setup from scratch, the protocol decision (Zigbee vs Z-Wave vs Thread vs WiFi) matters more than any individual device choice. What’s your most reliable automation? Curious what survives long-term for others.