homeassistant
- IP ban problem on smartphones
Is it possibile to create an IP whitelist? I get constantly banned by different HA servers (home, office, etc.) from my smartphone and everytime I need to edit the ip_bans.yaml file and restart HA.
- Best HACS Integrations for Home Assistant 2024smarthomescene.com Best HACS Integrations for Home Assistant 2024
Curated list of the 15 best Home Assistant Community integrations from HACS, enabling powerful customizations and enhanced functionality for your smart home.
- LiFX BR30 Replacements
I've had 6 LiFX BR30 lights on the front of my house since 2019. At first, they were pretty decent. One would fall off the network every other month, or so, but that wasn't much of a pain. Lately, multiple lights will drop off the Wi-Fi every week. I'm at the point where I will either replace them, or install smart switches to just turn them off/on like normal lights. Looking around, I don't see much in this size that are rated for outdoor use and support multiple colors. The current ones are set to Ukraine colors since the invasion, and I also change them for holidays. Ideally, I'd like to find something supporting zigbee, thread, or z-wave - pretty much in that order.
- 💡 Matter Lights!
Let me be clear, I'm absolutely NOT promoting this brand, company or otherwise, and I am also not receiving payment or gratis products.
I have been fighting Tuya lights for some time (Costco Feit branded color bulbs). I had picked them up at something like $5/each there in a 4 pack and overall have been happy with them. This started to change about a few months ago, it seemed that they would lose their pairing with Tuya's servers in China and would randomly and usually just when I needed them the most, become unavailable. I had placed all 4 of them in the apartment, 3 in the living room and one in the bedroom. The one where I felt it the most - the bedroom. 5 minutes before I retire for the evening, it's set to turn on the light, and then after 30 minutes, if I haven't already, turns it off. I also have the living room lights programmed to turn on during certain times of the day and off using the Simple Scheduler plugin (I highly recommend it!)
Fast forward to last week, I was sick and tired of the random connectivity issues so I went on the hunt and settled with a pack 6 Matter color bulbs and jumped at the chance. So, I bought them, and they arrived today. I can honestly tell you, that there was absolutely NO problem paring them to Home Assistant and the color control is amazingly accurate! The comfort of knowing that I shouldn't have to worry about losing my light connectivity is priceless now. :) If anyone is curious, this is the brand and so far I can say they are simply amazing!
https://www.amazon.com/dp/B0BLTWFJWY?psc=1
About Tuya and Tuya Local
I'm not totally abandoning Tuya itself, but the goal is to eventually be independent from their devices. Right now, I have a dehumidifier and all of my old lights and a massively long 400 light string light all connected via Tuya. The bulbs, will probably be stored as a "backup" or filed away for use in non-essential areas where connectivity is not as important.
Tuya Local is an amazing and awesome option, which completely lets you control your devices locally and I use that on the dehumidifer. I also had the old bulbs on there as well. The string lights, I tried, but it's a major process of learning what 'DP' Codes correspond to what color you want. I just left those paired to the cloud as Tuya provided the necessary mapping.
You may ask why then, if I had them on Tuya Local, why didn't I just use that to control my lights? The answer lies within the process of obtaining the local key from Tuya. If anyone who has done this knows, Tuya loves to change up their site's navigation and settings and it's seemingly random when they do. I finally got smart though and mapped out the device ID and the super secret and important "Local Key" and recorded those in Joplin. I lived with them like this for a couple of years, but I started to encounter random "crashing" of the lights if you will, where they would go offline and in spite of switching to Tuya Cloud (I have the app on my phone), they would refuse to become available, so I had to factory reset the bulbs to the ever familiar blinking lights process. What I didn't realize at the time, but I later did, when you reset the lights, the local key also resets to a new one. There was a time too, where more recently and was my final decision when within a 72 hour period, I had to reset a light three times.
Matter
It's encouraging to finally be able to use the Matter integration in Home Assistant, it's justifiably flagged as (Beta). Simply put, there is a slight delay from when you trigger the light before it turns on or reacts. This really isn't a big deal for us though. Additionally, I was able to add these to Google Home effortlessly which also makes them Wife Approved. :) The lights do not have a delay there, also, the app they want you to use experiences no delay.
Overall, for my first experience with the Matter devices, I was simply amazed at how easy it was to connect. I discovered that Home Assistant asks you to use the phone app to scan the QR code on the box (The bulb in this case) to obtain the pairing code and it seamlessly integrated it. My phone is a Pixel 8a which has Android 15 on it and before I even got to Home Assistant, it was asking me to scan the QR Code for matter setup.
**Light Quality and impressions
I will say these are pretty bright and not blindly so, but they are plenty bright. :) They have great color to them and the color temperature is awesomely simple. Ours are set to a nice 4000k.
Construction of the bulbs feel to be of decent quality. At least with Amazon, where I bought these, finding locally controlled bulbs was not too easy, and this brand (OREIN) was the only seller which sold Matter devices. If you are looking for a supported Matter light bulb, this may be what you need. :)
- Android app multiple server shortcuts
Hi all! I have 4 HA servers in different locations (home, officer etc.) and using the 3 fingers to change server every time is a pain in the ass. Is there any way to open the app directly to a specified server? I've had a look at the widget, but I couldn't find anything. Thanks!
- Home Assistant 2024.11: Slick dashboards and speedy cameraswww.home-assistant.io 2024.11: Slick dashboards and speedy cameras
Our new sections dashboards are now out of experimental and have become the default, low-latency camera streams using WebRTC, live streaming logs, Home Assistant Voice updates, and much more!
- YAML Newbie, stuck on what should be an easy question (using state attributes instead of numeric value)
Solved!
Solution was to create a group and perform an action on that:
action: light.turn_on target: entity_id: light.kitchen_cabinet_sink data_template: brightness_pct: "{{100*state_attr('light.kitchen_sink_ceiling','brightness')/255}}"
Original:Trying to run an automation to match one light's state (on/off/dim) to another's. Have this currently:
``` alias: Sync cabinet lights with sink light if:
- condition: device type: is_on device_id: [something]5710 entity_id: [something]a438 domain: light then:
- type: turn_on device_id: [something]b447 entity_id: [something]470f domain: light brightness_pct: 100 else:
- type: turn_off device_id: [something]b447 entity_id: [something]470f domain: light ```
That works fine to turn the lights on or off, and I have triggers in the automation for that and changes in brightness. But using a non-static number for brightness_pct (yes, I know I'll probably have to math the 0-100 scale instead of 0-255) is giving me trouble. When I try something like this:
``` alias: Sync cabinet lights with sink light if:
- condition: device type: is_on device_id: [something]5710 entity_id: [something]a438 domain: light then:
- type: turn_on device_id: [something]b447 entity_id: [something]470f domain: light brightness_pct: {{state_attr("light.kitchen_sink_ceiling", "brightness")}} else:
- type: turn_off device_id: [something]b447 entity_id: [something]470f domain: light ```
I have also tried {{states.light.kitchen_sink_ceiling.attributes.brightness}} instead. Both seem to have the correct value when I play around in the developer tools. But when I put it in the automation, I get an error that a float value was expected. I see some similar issues online, but it always seems to be in a different context and people fix it by changing some value I never had.****
- Assistance creating a sensor
Hi.
This works fine in the template editor:
{% if states('sensor.apollo_mtr_1_cca750_presence_target_count') | int > 0 %} Detected {% elif is_state('binary_sensor.apollo_msr_2_c7bfe8_radar_zone_1_occupancy', 'on') %} Detected {% elif is_state('binary_sensor.apollo_msr_2_c7bfe8_radar_zone_2_occupancy', 'on') %} Detected {% elif is_state('binary_sensor.apollo_msr_2_c7bfe8_radar_zone_3_occupancy', 'on') %} Detected {% else %} Not Detected {% endif %}
But when I try to create a binary_sensory from it in
configuration.yaml
, I get "'binary_sensor' is undefined": ``` template:- binary_sensor:
- name: "Lounge Presence" state: >- {% if states('sensor.apollo_mtr_1_cca750_presence_target_count') | int > 0 %} Detected {% elif is_state('binary_sensor.apollo_msr_2_c7bfe8_radar_zone_1_occupancy', 'on') %} Detected {% elif is_state('binary_sensor.apollo_msr_2_c7bfe8_radar_zone_2_occupancy', 'on') %} Detected {% elif is_state('binary_sensor.apollo_msr_2_c7bfe8_radar_zone_3_occupancy', 'on') %} Detected {% else %} Not Detected {% endif %} device_class: presence ```
I'm probably using incorrect syntax or something. Can anyone help me with this?
- binary_sensor:
- Needs inspiration, please share your phone/tablet dashboard
Hello everyone,
Haven't deal with my dashboard for a long time so want to take advantage of some recent features like visibility condition (not sure that's proper wording) to create a new clean adaptive phone and tablet dashboard, but missing inspiration so curious how yours looks like. How did you organised it? which card (also card combination) is your favourite?
- A complex smart heating system, simply built.blog.jlpouffier.fr A complex smart heating system, simply built.
Winter is coming, so it's a good time to take care of the heating in our homes. In this post, I will show how I built a complex heating system for my home using Home Assistant. I also have a secret agenda 🙈 It's to share my thought process when approaching
- A better dehumidifier control
So sue me, I don't keep up all that well with all the changes in Home Assistant and I recently found something that is quite useful to me.
Because I live in the American South and because we recently had our water plumbing explode, the humidity in our house tends to be sky high. Like 60% or higher high. To counter this, a while ago I picked up a large dehumidifier from Amazon which has worked pretty well controlling the humidity in the house until recently.
Recently though, I noticed that the humidifier kept turning off and on. Dehumidifier was set to 35 but the household thermostat was reading 55% humidity. As a check, I set the dehumidifier to run continuously. It stayed running and the humidity in the house started dropping and went to the 30’s in the room where the device is located and down to 46 at the thermostat. My conclusion was that the humidity sensor on the device had failed.
I could go the hard route. Take apart the dehumidifier, try to find the problem and do a board level repair. Go the expensive route and replace a generally functioning dehumidifier. Or I could take cheap, simple, and admittedly jerry-rigged option. Home Assistant.
Turns out that Home Assistant has a new (to me anyways) helper called a Generic Hygostat that can connect a humidity sensor like this one to a smart outlet or plug and control that outlet based on a humidity level you set. It can be set to control either a humidifier or dehumidifier. Once you've created the helper you can add the helper to your dashboard and it gives you thermostat like control over your de/humidifier. Pretty slick.
- Recommendations for Thermost
I'm considering upgrading my dumb digital thermostat. I'm only interested in one if it works seamlessly with HA (and is reasonably priced).
- Seeking assistance getting haos server running
I figured I might be able to find some answers here. I've been off and on trying to install home assistant after setting up an old desktop with proxmox, but I've never been able to get it running. I've been getting this issue:
[supervisor.docker.interface] Can't install ghcr.io/home-assistant/qemux86-64-homeassistant:2024.10.3: 500 Server Error for http+docker://localhost/v1.47/images/create?tag=2024.10.3&fromImage=ghcr.io%2Fhome-assistant%2Fqemux86-64-homeassistant&platform=linux%2Famd64: Internal Server Error ("Get "https://ghcr.io/v2/": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)")
Attempting to go to ghcr.io/v2/ seperately in browser results in it saying I'm unauthorized
- Figured out TCL roku
I just bought a 58" TCL TV with roku built in and could not get it to work with homeassistant. It would go offline after 20 minutes of being powered off. I have my IOT devices in a clan with no internet access but I decided to update the TV and it still didn't work.
What I found out I had to do was update the TV AND create a roku account so that this would finish the update. I then finally had the fast startup option and enabling that it works now! Even with internet access blocked again.
Hopefully this helps someone else.
- The VoIP in progress binary sensor ...
Hey all, anyone know if there are any directions on how to swap out to the assist_satellite from this depreciated sensor? Normally when there is a swap like this, the Home_Assistant folks give us some directions, but I can't find squat on this.
- Home-Assistant Compatible Hub Needed
My SmartThings Hub is (slowly) starting to error out more and more. I'm doing a soft reset monthly to keep everything up ( I did a hard reset about a year ago when I moved), which works, but I think it's time I start learning a new hub, preferably one not discontinued. My original plan was to put everything in Home Assistant when this time came, but a.) I really like it as my home coordinator with my custom scripts and addons and I don't want to mess with what is working right now and b.) while I'm getting the hang of running zigbee on there, zwave is in progress and thread...not really working most of the time.
So. I need to buy a general all-protocol hub; any recommendations that are fully compatible with Home Assistant? One with custom scripting would be a huge plus; I miss doing that in SmartThings.
- Node Red changes? Entity name in Data field?
Did something change recently with Home Assistant and Node Red? I upgraded and suddenly 20+ issues with messages like “Entity ID ‘switch.main_lights’ should be in the data.property, not the target property”
- Duckdns/wireguard/... Which one do you prefer and why?
Hi everyone
So, that's a 2 in 1 post. First a more general question then looking for advice for a friend.
-
What is your preferred way to access HA from outside (and why)?
-
a friend of mine use duckdns and I often read (recently) that some people are having issue with it. Is wireguard a better way or another solution that is not too techy to deal with?
-
- Problem with Rheem Econet integration
Is anyone else having issues with the Rheem Econet integration? It worked so well for so long but now it spends most of its time disconnected from Econet. It appears to reconnect every few minutes for a bit but it seems like every time I open the home assistant app, my thermostat is not functioning. The actual thermostat in my house is functioning normally and connected to the network.
Do you guys have any suggestions?
- 2024.10: Heading in the right directionwww.home-assistant.io 2024.10: Heading in the right direction
A brand new heading card, improved YAML syntax for automations, long-term stats repairs, faster upgrades, and more!
Please don’t be scared; it is October, Halloween is coming, and so is the next Home Assistant release: 2024.10! 🎃
- Thread for Inovelli Blue?
Does anyone know the current state for re-flashing Inovelli Blue switches to Thread? I haven’t been paying attention the last year so I don’t know if they released that or if it works reliably. I did try looking through the community pages without finding anything definite (plus that might not include any actual experience trying it)
I recently saw a couple new Thread devices, so maybe it’s time to start using that. My entire Zigbee network was intended to be flashable to Thread: all I have is SkyConnect and some Inovelli Blue switches. More importantly, that should be a good foundation for a strong mesh to support other devices (and I don’t have a reason for a strong Zigbee mesh). I know SkyConnect multi-protocol didn’t work out but I believe reflashing to Thread is fine. I know Inovelli Blue can’t be reflashed over the air, but that’s ok. Is there Thread firmware and what are your experiences with it?
- Physical keyboard for alarm
Hello,
I'm looking for a keyboard for my alarm using alarmo on home assistant. I found this but it's too expensive : https://frient.com/products/intelligent-keypad/
Do you know similar products ?
Thanks
- Nabu Casa is joining the Z-Wave Alliance Boardwww.home-assistant.io We are joining the Z-Wave Alliance Board
We will help represent Home Assistant users and the Open Home Foundation values on this board, defining the future of Z-Wave.
I'm excited to see this as I'm pretty much only use Z-Wave. Also interesting is they are developing their own dongle
- Should I keep both music assistant server
Hello everyone,
When I first installed music assistant, it was recommended to get the beta version, so I did but for some time now, I have 2 music assistant server.
Was wondering if there a reason I should keep both?
- Z-Wave Thermostat for 120VAC
Hello all, I am moving into a new apartment, and was planning on replacing the thermostats with Z-Wave ones. I currently have a Honeywell T6 Pro Z-Wave in my current apartment, and was planning on picking up a couple more.
When I was at the new place today, I took a look inside of one of the thermostats and saw something I was not expecting. They are all 120VAC line voltage thermostats. The heating and cooling is shared between the building, and whether heating or cooling is on is a whole building schedule. The person in the leasing office that was touring us around the new place when we got our keys said that it switches to heat in october or November.
Attached are a couple of photos of the thermostat and a photo of the vent in the wall (although not sure if that is helpful). The thermostat is a Honeywell T651A. I am not sure of what the actual HVAC equipment looks like.
This obviously throws a hamper in my plans, and now I have to look for alternatives. I am not super familiar with 120VAC HVAC, so I wanted to get some advice from others. I believe it is a heated/chilled water system, and the thermostat simply controls the pump/blower in the wall panel (one of the photos). The fact that there is both heating and cooling is what is confusing me, since all of the 120VAC thermostats I have seen are only for heating. Obviously it all boils down to how the temperature is compared to the set point. If the building switches to cooling (which won't be a problem for about 6 months after it switches I am guessing), the comparison will be backwards.
If anyone is able to point me to any resources on how I can learn about this control system, that would be great. I found the Stelpro KI Z-Wave Thermostat which I think will work, but I am not sure what happens when it switches to cooling in the spring. I prefer Z-Wave since I have found it to be far more reliable (especially in a larger building. This is a 7 floor building with ~15 units on each floor. So there is a lot of 2.4GHz traffic I assume), however if anyone knows of a product that will work for this (if the Stelpro one won't) I'm all ears.
- What device can rotate a knob and works with HA?
I was accidentally locked out of home again, and I had to call a professional to open the lock.
But if someone was home, they could have just turned the knob of the door from inside. There's a device that can do that? It needs to do 3 full turns and it requires a bit of force to do that (armored door with iron bars that slide in every direction, so it has a big inertia to start)
I saw a ready solution on a store, the iseo x1r, but that costs 1000 euro + another 200 for the gateway (not mandatory but otherwise it uses proprietary Bluetooth protocol and so it can't talk with HA
- Sonocotta's Espressif ESP32-Powered Esparagus Audio Streamers Can Now Listen, Too, with the Echoes - Hackster.iowww.hackster.io Sonocotta's Espressif ESP32-Powered Esparagus Audio Streamers Can Now Listen, Too, with the Echoes
A spin-off from an audio streaming project delivers a work-in-progress edge voice control system designed for use with Home Assistant.
- Home Assistant 2024.9: Sections go BIGwww.home-assistant.io 2024.9: Sections go BIG
Bigger wider sections for big cards, smarter energy monitoring, a new LLM option, Works with Home Assistant Matter devices, and more open source.
- Aqara joins Works with Home Assistantwww.home-assistant.io Aqara joins Works with Home Assistant
We have certified 4 Aqara devices, all of which are the first to use our Works via Matter with Home Assistant badge.
- MQTT automation trigger help
I have a Shelly dimmer 2 behind one of the switches in my kitchen running Tasmota. There are two switch inputs on the Dimmer module, so I have it behind a 2 gang wall box with two physical switches. Each switch is connected to one of the switch inputs of the Shelly.
I've set the switches to be independent of each other, so I can potentially use the different switches for different triggers. Switch one is configured as a push button switch and dims my kitchen lights. Switch two does nothing. I desire to have switch2 trigger my dining room lights, so after some digging I discovered that I can use MQTT to make Home Assistant do stuff! Perfect.
But not perfect. I set up an automation to listen for this devices' MQTT topic "tele/lights_kitchen/SENSOR" and when the switch is flipped either up or down, my mosquitto broker hears that topic, and it just toggles my lights! I thought I had it all figured out. But what I didn't notice at first, is that the Shelly Dimmer pings out an MQTT status every so often, even if no switches are flipped. So my dining room lights have been going on and off all afternoon!
There is some data in the payload of the MQTT that I think should be able to fix my issue, but I'm having trouble conceptualizing how.
The payload contains a key:value pair {"Switch2":"ON"} or "OFF". So I'm hoping I can use a change in that value as a toggle. Because it's operating as a 3 way switch, I don't care if the actual value is ON or OFF, I just want to know if it's changed. Do I need some sort of helper that keeps track? This seems like something MQTT would be good at, but I can't find a good example to steal the right config from. I thought maybe I could use two triggers, one for each state, but that makes a huge complicated set of logic that needs to be added, and I really feel like there should be a more elegant way to handle this.
Any assistance?
- Light switch advice
Just looking for some advice if the idea I have in mind is even feasible.
I have 2 light switches in my kitchen, one for some pendant lights, one for some overhead cannister lights.
I hate the placement of the switches, since the pendant lights which I prefer are far away from the actual doorways into the kitchen. Meanwhile the cannister lights are on the switches near the doors.
I'm looking to do some clever "hackery" to make it so the switches by the doors control the pendant lights, if possible, but I don't want to have to rewire things in the walls/ceilings.
Is there a good solution to this? I was looking at some Shelly switches, but I'm not sure those solve for the problem I wanna solve. I'm willing to swap out switches or wire in things near the lights, but trying to keep things simple as possible.
- Retro theme for Home Assistant
Hi
I’ve been looking for a retro theme for my home assistant setup preferably like Windows 98 UI and I’m wondering if someone developed one or managed to find similar themes.
- Excellent Home Assistant Platformwww.ebay.com Dell Latitude 11” 3000 (3140) Laptop Intel N200 256GB SSD 8GB RAM Win 11 Pro | eBay
Capacity : 256GB. Latitude 11” 3000 (3140) Laptop. YOU AGREE THAT DELL’S LIABILITY IN ANY DISPUTE WILL BE CAPPED AT THE TOTAL AMOUNT YOU PAID FOR THE ORDER OR PRODUCT AT ISSUE. Explore Latitude. Windows 11 Pro.
Dell Outlet on Ebay has the Latitude 3140 laptop, an excellent Home Assistant platform on sale for $176. A Raspberry Pi 5 or NUC with the hardware needed for these features would cost far more. The same machine is nearly 2x more on the regular Dell Outlet site.
Debian 12 supported out of box - no additional drivers needed Fast N200 Intel processor - ~60% faster than a Raspberry Pi 5 256gb SSD 8GB ram Advanced BIOS options OpenVino support for Frigate BIOS battery management. Can limit charge to 75% for years of battery life 6 hour indicated battery life at 75% charge Very low power usage - ~6 watts when running Home Assistant with several USB devices Fanless and completely silent Built like a tank
Negatives:
Built like a tank. Chunky for a small laptop No integrated Ethernet port Mediocre screen
I bought one of these last year when it was on sale from another vendor and have been really happy with it, especially for the cost.
- can home assistant run on a cm3588 nas?
I'm looking to get a cm3588 to use as a NAS and and for streaming, but I'm curious if home assistant could also be run from such a device and maybe any other usefull programs
- How To Install Home Assistant on a Mini PC - SmartHomeScenesmarthomescene.com How To Install Home Assistant on a Mini PC
Discover why a mini PC is the best hardware choice for a compact and efficient Home Assistant home server in this in-depth article and how-to guide.
- CalDav integration with caching?
I have three different calendars syncing using caldav, one on fastmail and two on icloud. When I open the calendar view it's often the case that one or more of these timeout (all of them are afflicted by this), so it seems that these calendars are not actually stored on the server but polled everytime I want to view them.
Are there any alternative integrations that will periodically sync the calendars and keep them on the server? Or can I self-host an app that does this and will never time out because it's on my local network?
- HACS 2.0 - The best way to share community-made projects just got better - Home Assistantwww.home-assistant.io HACS 2.0 - The best way to share community-made projects just got better
2.0 brings new features making it the best to share community-made integrations and UI elements.
- Entity control from iOS widget
Does anyone know if the 2024.5 Companion App update for iOS removed the ability to control entities from the widget? I've read the release notes but there's no mention of any features being removed.
I could absolutely swear that I had a working widget with most of my lights on it, a solitary button for each light, that I could single tap to toggle said light.
Then, a few months or so back, I noticed the widget didn't seem to be working. The entity icons had change to black, round shadows, and tapping them did nothing.
I deleted the widget, thinking it got corrupted somehow and have never been able to get it back exactly as described above.
Now, it seems that only thing I can do with widgets is use Actions. Some Actions have been auto-created by the Companion App for each scene on my server, and I can obviously create my own Actions, to trigger automations.
But, I don't want to have to frig around with Actions (using input_booleans and automations) to do something as simple as turning a light on or off.
Am I dreaming? Did the iOS widgets never have this ability? Or am I missing something really obvious to configure entities onto a widget?
Thanks in advance for any useful advice.