I have HA running on my Qnap NAS and just love all the different automations. I’ve recently set up an integration with my Motion Blinds gateway to control the blinds from HA. The gateway controls blinds on 2 large picture windows facing directly west. Once problem I have is to figure out how to get the blinds to close if there is too much sunlight so that our living room does not get too warm in the late afternoon.
Is there any HA compatible device that I could deploy that would monitor either the amount or intensity of light and send a trigger to HA to close the blinds? Possible a heat sensing device could work, but something that triggers when sunlight is at a specific intensity would be great.
Any thoughts/recommendations are much appreciated.
How handy are you? The cheapest solution would be a lux sensor (like a BH1750) connected to an ESP32 running ESPHome.
You don’t mention having a ZigBee or ZWave network, so a WiFi light sensor is probably what you’re looking for?
As far as automation goes, there are some great recipes out there for using built-in automation for automating covers (aka blinds), but I use Node-Red because I’m a visual thinker.
Thanks but I’m really looking for something more “turnkey”. Has anyone used the tuya light sensor? I can’t determine if this is compatible with HA though
I’m using Xiaomi Mi zogbee light sensors (also with Motion Blinds ), coupled to Conbee II and Deconz. That works just fine. Shielded from rain they even survive outdoors.
They report lux values. One way is to create a state trigger for if the value goes over or under a certain lux value. I use a threshold sensor myself, the below example switches off below 50 lux and back on above 200 lux. The automation triggers on the binary sensor going on and off. If the sensor goes off it is dark and the garden lights should turn on, if the sensor turns on there is loght detected, so the garden lights can go back off again. Similar thresholdsensors are made for curtains (I picked the wrong example ).
It is a zigbee sensor that I connect directly to the Conbee ||. I do not need the Xiami bridge or anything like that. It may be however that if you use another Zigbee platform in HA, they may not support it. That is why I mentioned my Conbee II stick and the Deconz integration.
It uses ZWave, which I use a SmartThings hub to handle / integrate w/ HA. You can also use a HUSBZ-1 USB Zwave stick into your HA Pi/Nuc/hardware and run ZWave directly in HA / on your device.
Always multiple ways to skin a cat in HA it seems.
The conbee is a zigbee controller. You can call it a bridge if you want. HA needs something to interact with zigbee devices such as HUE bulbs, and indeed Xiami devices. It is not brand specific, so you can link al kinds of zigbee devices to it. I was assuming you had something already, but it seems you don’t.
Have you put any thought yet in the kinds of devices you want to control, and the communication protocols that zo with it? Zigbee, Z-wave, wifi, bluetooth, RF… All need some kind of radio device for wireless communication. Some may be already be supported by the device you run Home assistant on, but zigbee and z-wave generally are not.
I am using a Philips Hue outdoor motion sensor to measure light intensity and open and close my shutters (morning and evening). It’s pretty easy to setup an automation once the data is in HA.
It does require a hue bridge which I had anyway since I also have some lights from them. I haven’t tried to go the local route with Hue. One downside of the Hue light sensor is that it only starts at 1lux which I find is already fairly bright and I’d like to open my shutters a little earlier but it works so it’s ok for now.