homeassistant

12066 readers
26 users here now

Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. Available for free at home-assistant.io

founded 1 year ago
MODERATORS
1
 
 

Pardon a WLED question in the Home Assistant community, but I was unable to find a WLED community in the fediverse.

Regardless, I have this 720 LED/meter FCOB strip, which is 24v strip & I'm trying to figure out what to configure the "LED voltage (Max. current for a single LED):"

Since it's a 20IC per meter & they claim 21watts per meter that comes out to ~1w per IC. But I'm unsure how that converts to mA like WLED is asking for.

Any advice would be greatly appreciated 🤠

2
 
 

I just learned that the Eve Energy smart plugs transmit energy consumption information via Matter. I didn't think energy consumption information was supported in Matter yet, but it is.

This makes them incredible to use with the Home Assistant Energy dashboard.

Even tho I was hesitant for a while, I took the leap to using the Matter beta Home Assistant integration and no issues so far.

3
 
 

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.

4
5
 
 

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.

6
 
 

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. :)

7
 
 

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!

8
9
 
 

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.****

10
10
Assistance creating a sensor (lemmy.thewooskeys.com)
submitted 2 weeks ago* (last edited 1 week ago) by mike_wooskey@lemmy.thewooskeys.com to c/homeassistant@lemmy.world
 
 

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?

11
 
 

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?

12
13
 
 

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.

14
 
 

I'm considering upgrading my dumb digital thermostat. I'm only interested in one if it works seamlessly with HA (and is reasonably priced).

15
 
 

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

16
 
 

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.

17
 
 

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.

18
 
 

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.

19
 
 

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”

20
 
 

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?

21
 
 

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?

22
 
 

Please don’t be scared; it is October, Halloween is coming, and so is the next Home Assistant release: 2024.10! 🎃

23
10
submitted 1 month ago* (last edited 1 month ago) by AA5B@lemmy.world to c/homeassistant@lemmy.world
 
 

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?

24
 
 

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

25
 
 

I'm excited to see this as I'm pretty much only use Z-Wave. Also interesting is they are developing their own dongle

view more: next ›