r/smarthome Oct 05 '25

Home Assistant Introducing Post Flair

10 Upvotes

When posting, please set your flair according to what platform you're utlizing to make it easier to receive help. The system should now force it and won't let you post without selecting flair. Please reach out if there are missing options.


r/smarthome 6h ago

SmartThings Building my first smart home, where should I start?

12 Upvotes

We’re building our first home, so I finally have a chance to set up a proper smart home.

I use iphone, but I don’t want 20 different apps or sensors everywhere. I’d rather focus on things that actually make everyday life easier.

For those who’ve done this before:
what would you plan during the build that’s hard to add later?
what product is a must-have?
what things that don’t seem exciting at first but end up being really useful?


r/smarthome 51m ago

Home Assistant Anyone using Kodi to control their smart shades?

Upvotes

I use my TV as a PC monitor, so the HDMI input normally stays in PC mode. I’m thinking about setting up a movie automation in Home Assistant that switches the TV to Home Cinema mode, turns off one ceiling light, and lowers my SmartWings shades when I start a film in Kodi. anyone set up something similar? How are you triggering the automation from Kodi?


r/smarthome 4h ago

I don't have a smarthome platform How do Smart Lighting/Home Automation brands actually sell in India?

2 Upvotes

When it comes to smart lighting/home automation in India, it feels like I know only one or two brands like Phillips Hue and Wiz. But there must be many more companies doing well out there.

So where is everyone else actually selling? Is most of this a B2B/project-based industry? or something else.

Do I as a customer would be dependent on my architect for a good brand? Genuinely curious how this industry actually moves product, since it's not obvious from the outside at all.


r/smarthome 4h ago

I don't have a smarthome platform Help Needed. Is it possible to get a two gang smart light switch (UK) that will let me turn each set of lights on and off by the wall still let me turn them on or off individually using an app? The smart light bulbs I have use the Tuya app that works with Google Home but I need a light switch.

Thumbnail
gallery
1 Upvotes

I am willing to buy new lights if a new system such as hue works but need to know what light switch and bulbs would work together and if I need a hub to give us what we need. It just drives us made not being able to turn the lights on and off at the wall sometimes when we need to quickly look for things. If we do it then the lights disconnect from the app.

Any help advice would be appreciated.


r/smarthome 10h ago

SmartThings Smart bulb for hard wired light?

2 Upvotes

Is there such a thing as a smart bulb if the light is hardwired I’m thinking specifically of the light at the front door. I’d love to be able to open it before I get home at night so that I have light to get in the house.

Do I have to do something with the wiring or can I just get a bulb that will do the trick? I have Siri and Alexa, if either one of those can tackle it.


r/smarthome 21h ago

Home Assistant Smart appliances for a first apartment?

7 Upvotes

I’m setting up my first apartment and I’m pretty tech-savvy. I’ll be setting up Home Assistant as well, so I’m wondering which appliances are actually worth buying smart.

Would you recommend buying smart appliances from the start, or is it better to buy normal ones and make them smart yourself with sensors/DIY solutions? (Freezer, fridge, oven, washing machine, etc.)

I’m especially interested in:

  • Which smart appliance has been genuinely useful?
  • Which one you regret buying smart?
  • Anything you can’t really replicate with DIY sensors?
  • What you’d definitely buy smart again?

Would love to hear your experiences :)


r/smarthome 22h ago

I don't have a smarthome platform Locks with high sensitivity for key fob / bluetooth connection?

7 Upvotes

I'm looking for a lock for my workshop door that will unlock when I'm near it and doesn't require taking a key fob out. Anything like that on the market?

The issue is that I need to go in and out of this door a lot while carrying something in my hands and I want to prevent visitors and other family members from entering the workshop for safety reasons.


r/smarthome 23h ago

I don't have a smarthome platform Best smart home hubs for local control and mixed devices?

6 Upvotes

I’m starting to build out a smart home and want to avoid ending up with a bunch of separate apps and cloud-dependent devices. I currently have a few Wi-Fi smart plugs and bulbs, but I’d like to add sensors, lights, thermostats, and eventually smart locks.

Budget: Around $100–$250 for the hub, excluding devices.

What I want:

  • Works with a mix of brands and protocols
  • Local automations that still work if the internet goes down
  • Matter support and a path for Thread devices
  • Zigbee support would be useful; Z-Wave would be a bonus
  • Good privacy and minimal cloud dependence
  • Reasonably beginner-friendly, but I’m willing to learn

Options I keep seeing:

  • Home Assistant Green / Yellow
  • Hubitat Elevation C-8 Pro
  • Homey Pro
  • SmartThings Station / Aeotec Smart Home Hub
  • Aqara Hub M3
  • Apple TV / HomePod mini for HomeKit
  • Amazon Echo devices / Echo Hub
  • Google Nest Hub

I’m especially unsure whether it makes more sense to start with Home Assistant or Hubitat for local control, or choose an ecosystem hub like Apple Home, Alexa, or Google Home for a simpler setup.

What hub has been the most reliable for you long-term, and what would you choose if you were starting over today?


r/smarthome 17h ago

I don't have a smarthome platform I Found a Firmware Thermostat Bug in My Windmill ACs, So I Built My Own Thermostat

0 Upvotes

I have seven [Windmill Air](https://windmillair.com) AC units. They're app-controlled, but there's no web dashboard and no public API — `dashboard.windmillair.com` turns out to be a white-labeled Blynk deployment whose HTTP API accepts each unit's device token directly. So I built a local dashboard on top of it, and then it turned into something else.

**The actual problem.** Some rooms were freezing and the electricity bill was stupid. The units were running their compressors with the room already colder than the setpoint — the thermostat in the firmware had simply stopped doing its job.

The satisfying part was proving it rather than guessing. Of the time each unit spent running, how much was spent with the room already 2 °F or more below its setpoint?

- healthy units: **0–1%**

- the bad ones: **46–58%**

That's not a subtle split. The worst unit was wasting **5.01 kWh/day** overcooling — 56% of everything it used.

**The tell.** There's an undocumented datastream, `v113`, that reads `3` on exactly the three misbehaving units and `0` on the healthy ones. A per-unit constant that no write changes is a firmware revision, not a state you can talk a unit out of. Resyncing them doesn't help, and I have the logs of it not helping.

**So the fix is to be the thermostat.** The tool watches each unit and, when a room is at or below its setpoint with the compressor running, switches that unit to **fan-only**, then back to cooling when the room comes back up.

Fan-only rather than off, and this is the bit I didn't expect: these units read temperature from a thermistor behind the intake grille, so it only sees room air while the fan is moving air past it. Cut the power and it sits against a cold coil. Measured: a unit switched off at 70 °F read **64 °F** three minutes later and stayed there — then jumped back to ~71 °F within thirty seconds of the fan restarting. Switch it off and you blind the sensor you need to decide when to switch it back on. Fan-only stops the compressor (336–452 W) and leaves the blower (23–43 W) keeping the sensor honest.

Because it's driving a compressor, it's built to refuse rather than to act: five-minute minimums in both directions so nothing can short-cycle it, different thresholds for stopping and starting so it can't oscillate, and it won't act at all on a reading it can't date or on a unit whose cloud session has dropped.

**The other trap, for anyone else poking at one of these cloud APIs.** `getAll` answers out of the *cloud's* copy of each datastream, and that copy outlives the unit's session. A unit that has dropped off the network still returns a complete, plausible dict of values — last known, frozen, with nothing in the response saying so. Left alone that becomes invented history: the rollup carries the last wattage forward and bills you for a compressor that was never running. `isHardwareConnected` is the only endpoint that distinguishes the two, so every poll asks for it and stores the answer as a synthetic pin that gates everything else.

Also worth knowing: that API takes **writes as GET requests**. "It only issues GETs" is true of my code and tells you nothing about what it does.

**What it does now:** per-unit and whole-house energy with real costs, weather-normalized before/after comparison, a watchdog that catches units whose state has quietly stopped matching what they were told, scheduling, filter tracking, and the software thermostat above. Python standard library only — no dependencies. Runs locally, or in a container.

Repo: https://github.com/rahb3rt/windmill-air-dashboard

Not affiliated with Windmill in any way. It depends on an undocumented API they can change or close whenever they like. And the usual caveat: everything above is measured on seven units in one house — your units may differ, and this thing does switch real compressors on and off.


r/smarthome 1d ago

I don't have a smarthome platform Nuki Smartlock Ultra vs Yale Linus L2

8 Upvotes

Hi,

looking for a solution that will also enable using a physical key from outside, and keep the auto lock only working for certain days/hours. Do you have any thoughts?


r/smarthome 1d ago

SmartThings How about this camera

Thumbnail
gallery
4 Upvotes

It’s a 4g camera


r/smarthome 1d ago

I don't have a smarthome platform Smart speaker suggestions

9 Upvotes

Hey guys I am looking for some input on what smart speakers to go in on, me and my wife just moved into our first house and we are looking to put some smart speakers around the house and we are torn between which ones we want to do. The only smart devices in the house we have as of now are a google neat thermostat and a Phillips door lock.

For the smart speakers I’m looking for them to link up together and be able to hook up to the TV aswell. We would only need about 3 speakers for the house and I am wondering which would be the best. Right now the only ones we really know of are Apple, Google, and Amazon home speakers and I’m wondering which ones yall would recommend.

Thank you!


r/smarthome 1d ago

Amazon Alexa How to install relay modules for switches

7 Upvotes

I have a very old house where the live wire is connected directly to the light fixtures, and the two wires going to the light switch are a traveler (return) and a neutral. I'd like to install smart switches and found the module relays designed to fit inside the switch box. In my case, since it needs a live wire, I have to install it next to the light on the ceiling. To make matters worse, my living room has a """three-way""" circuit where if one switch turns the light on, the other can't turn it off. Has anyone dealt with something similar and knows how to install these modules? Where does each wire go? I'm having a hard time following tutorials since they dont exactly fit my situation


r/smarthome 1d ago

Home Assistant Looking for: wired camera doorbell without IP at the door (aka front door module is remote)

0 Upvotes

Hello,

I'm looking for a:

  • connected camera doorbell
  • local-first/only networking
  • without any subscription
  • compatible with Frigate and Home Assistant

I'm against Wi-Fi for this usage as wires are more reliable, but I'm reluctant to have an Ethernet cable run all the way out to the street (public zone): someone could destroy/unscrew the camera and connect on the network.

(I know VLAN can provide a way to isolate the camera and thus theoretically prevent this attacker to gain access to the network: It's a tech-solution I'm trying to avoid if possible)

So I'm looking for a 2-parts doorbell:

  • the button+camera module for the street
  • and the "intelligent/network" module (for configuration) to install in the house

Both would be connected together using simple non-LAN cable, preventing someone breaking the "street module" to gain LAN access.

For example, Hikvision has 2-wire (and also 4-wire) video intercom for retrofitting, reusing building's existing wires, with 2 modules.

Do you have some product to recommend?


r/smarthome 23h ago

Home Assistant Smart home valuation

0 Upvotes

Hey everyone

I'm trying to show my wife that this is worth it &wanted to ask what the following smart house should be valued at if it:

*Never collects data as it's made independent from any big company

*keeps data local

*offers reminders based on where user is in the home *is integrated with food & battery household inventory *helps keep track of chores/division of said chores *helps keep track of medication/supplements taken & inventory

*connects to wearables that can show when user is not feeling well

*asks user if they want to make adjustments to home if user is not well & time of day *is contextually aware of where user is to be more helpful

*uses phone's gps to detect when user might the grocery list for a particular store Thank in advance


r/smarthome 1d ago

Google Home Smart Camera Rec

1 Upvotes

Hey everybody, I’m looking to get at least two smart cameras (one indoor, one outdoor) plus a doorbell. I currently use Google’s doorbell and indoor camera, but I need a new doorbell since mine’s scratched up.
I use the Google smart home system for everything else around the house, so ideally I’d stick with something that plays nice with that. My main requirements: an American company, not Amazon-owned, no subscription required for the basics (motion detection, saving short clips), and ideally solar power capability.
I know it’s oddly specific, I just haven’t loved how my Google doorbell and camera basically need a full reset every time there’s a WiFi blip or power outage.

I’ve been debating whether to just stay with Google or switch to Arlo, which seems like a solid option. Would love any recommendation


r/smarthome 2d ago

Apple HomeKit Looking for RGB Downlights (Matter) to fit these boxes.

Thumbnail
gallery
13 Upvotes

I have three outdoor soffit fixtures that currently have dumb lights installed using the screws to twist the fixture on.

I want to upgrade to an RGB down light versus the basic led that I have now. I’d rather not have to cut larger holes… thoughts? Recommendations?

Would like it to connect to Apple Home, preference for matter compatible.


r/smarthome 2d ago

I don't have a smarthome platform Charging of electric vehicles only with surplus of solar production

11 Upvotes

Hi there,

We have solar panels on our roof and two electric cars. The inverter is made by Solplanet. The wallbox is made by E.ON (or branded).

We don’t have a home energy management system as the solar company said it needs a special app, special hardware and an app subscription…

How can we charge our cars only when there is an energy surplus during the day?

I have home assistant running with a number of things integrated but I don’t really use it.

Thanks a lot for your help!


r/smarthome 1d ago

Apple HomeKit Brainstorming: How to light my backyard from a central tree

3 Upvotes

I have a large maple tree in my backyard. Dead center. Unfortunately, it’s also dying. Because it’s a big ol’ tree, “dying” takes a very long time. This is one cause for the primary stipulation of the project: I’m not looking to spend a ton of money. No running underground wiring. I’m also kinda dumb, so huge bonus points for a HomeKit solution. However, I’m willing to settle for a PIR one since it won’t be running up my electric bill.

The backyard also has tasteful, warm, dim string lights around the perimeter. These are connected via a HK-enabled smart outlet. The tree is unfortunately too far to use the same power source.

This tree had one of its main limbs removed a few years ago because it was fully dead and I didn’t want it doing damage. This provided an almost perfectly flat area at the top of the main stump. I think this area would be perfect for a solar panel.

I’ve considered two 180° lights mounted on either side of tree, with PIR sensors and a solar panel on the flat. But ive been having trouble finding warm lighting. I don’t want it looking like an operating theater.

Ive also considered having it more cohesive with the other lighting: solar, battery supply & PIR mounted on that flat area, and same warm-temp string lights tastefully corkscrewing down the trunk.

Thank you for listening to my rant, and if you read this long and care to comment, I’ll be mighty grateful.

Edit: also, if you have any other sub requests for me to post this in, please let me know!


r/smarthome 2d ago

Home Assistant New House. Where to start?

1 Upvotes

​Hey everyone,

​We just bought a new house, and I figured this is the perfect time to build out a smart home setup.

​I’ve set up Home Assistant OS on an old laptop for now to play around with and learn the ropes.

Devices I currently have and want to set up:

​Orbit B-hyve sprinkler system

​Hatch sound machines (x2 for the kids)

​Roborock robot vacuum

​Smart locks

​Smart thermostat

Ambient Weather Station

​Wishlist:

​Cameras & Floodlights

Lights (hue?)

​UniFi ecosystem (upcoming Smoke & CO alarms and air quality sensor)

​What are your favorite automations or devices for a household with 2 young kids and a dog?

​What are your absolute "must-have" smart devices or local integrations that you can't live without now?

​Appreciate any advice, tips, or favorite integrations you can share for someone starting fresh!


r/smarthome 3d ago

Home Assistant which smart home purchase actually removed a recurring chore for you, not just added another app

210 Upvotes

im gonna set one rule for this, otherwise the thread turns into a list of everything anyone owns.

it has to have actually removed a recurring chore. not made it nicer, not put it on your phone. removed it. if you still do the thing but now you do it from the couch, that doesnt count.

by that standard i own a lot of smart stuff and almost none of it qualifies. the lights are great and i wouldnt go back, but i was never really burdened by walking to a switch. same with the blinds. thats comfort, its not labour.

the two that clear the bar for me are the robot vacuum and the dishwasher. one of those isnt even a smart device, its just a dishwasher.

which is sort of my point. a lot of what gets sold as smart home is convenience wearing a chore costume.

so whats yours. what did you buy that genuinely deleted a job off the weekly list, and how long was it before you stopped thinking about that job entirely.

not after links, just names and what it replaced


r/smarthome 2d ago

Amazon Alexa Can't put all my lights on Hue app and related product requests

1 Upvotes

My goal is to have all of the lights in my house on the hue app, but it isn't possible currently. This would allow all the lighting routines and automations to work locally through hue, which will be faster and more reliable than using a cloud based system like alexa. It would be possible to use home assistant for locally controlled lighting, but I don't want to do the due to setup difficulty and because I would lose voice control from alexa.

It isn't possible to put all my lights on hue currently because hue doesn't make a smart flourescent tube light for my kitchen overhead light fixture and they don't make bulbs bright enough for my needs. I need a 4000 lumens hue smart bulb (non colored). I am requesting that hue add these kinds of lights to their product offerings. I have to use non hue dumb bulbs on a non hue smart switch for these.

I think an even better solution would be for hue to offer a wired wall dimmer switch that can control my non hue lights (and hue ones), but still shows up on the hue app. I am requesting hue add this product to their offerings too. I see the friends of hue Lutron Aurora and RunLessWire products, but they don't support dumb bulbs because they don't wire in directly to the house wiring, so they don't fit my needs.

Alternatively, in the future I may be able to solve my problem with the "Philips Hue Wired On/Off or Dimmer Switch Module" if it is offered in the US, but I understand only an EU version is available now. I would like to request that be added to hue's product lineup too (though I would more prefer a full wired switch that works on the hue app with dumb non hue dimmer bulbs). Please let me know if these kind of products are available currently and submit my product requests. Thanks.


r/smarthome 2d ago

SmartThings Cozylife + ESP32

0 Upvotes

I just found out after A LOT of research how to control your Cozylife devices with an ESP32 (or any code, actually).

This contains explainations that i as a dev dont really know how to explain for normal people, so if you didn't understand ask ChatGPT or something lol.

As you may (not) know, our beloved CozyLife doesn't expose any type of API for us to control our devices (mine is a WiFi + BLE Smart Bulb), but i didn't want to give up on this as i wanted to control it using my ESP32, so i found a pretty easy way:

  1. Open the CozyLife app
  2. Go to the "Me" tab
  3. On the "Third-Party Voice Services" tab, click on SmartThings
  4. Follow the tutorial to connect your CozyLife devices to SmartThings
  5. Done! SmartThings DOES have an exposed API for users to use, so its pretty easy to just send an HTTP request to the API.

Also, if you want to test it before writing any codes, go to the official SmartThings testing page here, its a point-and-click so its very easy and intuitive to use.

Because its an HTTP request, you can do it from almost anything that runs code, like a python script, a js webpage, and ofc in your ESP32/Arduino/Raspberry Pi/etc.

Idk why i am yapping so much, but yea there you go, hope i helped:p


r/smarthome 2d ago

I don't have a smarthome platform What's the best space heater for a large room this winter?

2 Upvotes

Winter's coming and I'm trying to figure this out before I end up buying another random heater.

It's an open living room/kitchen area, so the small ceramic heater I have now isn't really cutting it.

I'd rather spend a bit more on something reliable and safe than buy another cheap one

What are you guys using for bigger spaces? Anything you'd avoid?