Quantcast
Channel: Configuration - Home Assistant Community
Viewing all 107688 articles
Browse latest View live

Rockrobot v1 timeout during integration (rockrobo.vacuum.v1)

$
0
0

Hi,

The integration of my xiaomi v1 robot vacuum cleaner no longer works using the Xiaomi MiiO integration.

From manual configuration or via the cloud the error is the same:
ERROR (SyncWorker_5) [miio.miioprotocol] Got error when receiving: timed out

I have another aqara product that works with a similar configuration and is accessible as lumi.gateway.v3.
I have already succeeded once in associating my robot by making it accessible on the local network but it was from an old version of the mi home application.
This option is now not found in the latest versions of the app.

I think the robot is inaccessible because of this option.

The robot is accessible from the app. xiaomi but integration in HA is impossible.
I’ve the IP, MAC address and token of the device.
My HA (2025.1) run on a docker container using network_mode: host

Any idea to activate this option and make the robot visible on the local network ?

Thanks.

1 post - 1 participant

Read full topic


Not sure what happened - Matter and Z-Wave add-ons failed

$
0
0

Everything was working fine… installed the latest update to HA and when it restarted, Z-Wave and Matter reporting “Failed setup”. As a result, my Zigbee2MQTT doesn’t load anymore. Not sure why or what is actually broken. I don’t know how to diagnose this either. I struggled to get Zigbee2MQTT up and running, now it’s broken and I don’t know how to fix it - sigh.

I see this in the log
ERROR (MainThread) [homeassistant.components.mqtt.client] Failed to connect to MQTT server due to exception: [Errno -5] Name has no usable address

Did anyone else have this issue recently?

1 post - 1 participant

Read full topic

Sonos does not play TTS

$
0
0

I searched the forums to find how to use Sonos locally but the Sonos does not play anything and also gives no errors.
TTS

Speak does give an error

What can I do to use the sonos local?

4 posts - 3 participants

Read full topic

The voice assistant is unable to connect to Home Assistant

$
0
0

I’m trying to finish the setup of the new voice assistant box, the device seems all there and ok but i get this error when I try to finish the setup. I’ve seen a few posts on reddit, etc with people having the same issue. I’ve followed everything I can find but not working. Most pointed to setting, network and to “fix” the local network section. Nothing works and I cannot find any errors in the logs. I do have cloudflare setup for external, i have a letsencrypt wildcard cert installed and I connect local with https no problem. If i put an ip in this section like some suggest i get an error because certs don’t apply to ip’s. No idea at this point what to look at.

1 post - 1 participant

Read full topic

Sengled Pot Lights - Turn On By Their Own

$
0
0

Hello
I have 10 Sengled soffit lights all controlled via Zigbee Home Integration. I have an automation that controls the colour. They are set to go on via Node Red Big Timer on Friday, Saturday & Sunday Night at dusk and off by 23:45. Over the past weeks I’ve noticed that they will go on Monday night. When I look at the individual entity, none of them are switch on, yet looking out the window I see all of them on! My solution is to power them all down via a single mains switch and then power them back up. I can then turn them off via a group entity I have set up. Looking at the history (for the days when they aren’t suppose to be on) I can see when each light turned on, however I don’t see what triggered them on.
Has anyone experienced this and how can I solve it?
Zigbee Generic Coordinator = Firmware: 6.10.3.0 build 297
Sengeled E12-N1E = Firmware: 0x0000001e
HA = * Core 2025.1.4

  • Supervisor 2024.12.3
  • Operating System 14.2
  • Frontend 20250109.2

Thanks in advance for any help that can be provided.

1 post - 1 participant

Read full topic

Debugging MQTT Integration

$
0
0

Is there a way to debug the MQTT Integration?
When i configure the broker myqtthub.com i simply receive an error says it cannot connect and no log is provided (i’m on docker).

I suspect this might have to do with the need of a client_id, is there a way to add it in the UI? also I don’t understand why i can’t see the “advance” button anymore

1 post - 1 participant

Read full topic

Z2M devices have duplicate name

$
0
0

z2m issue

I am running the latest version of all required services and integrations and my Z2M sensors still seem to have duplicate names as seen in the photo How do I go about fixing this?

1 post - 1 participant

Read full topic

Automation: Triggered when there is a difference between two humidity sensors

$
0
0

i have two Bluetooth Temperature Humidity 2, I want to create an automation that starts the fan when the outdoor humidity is 20% lower than the indoor humidity, and the outdoor humidity is below 60%, and the time is between 8:00 and 18:00.
Outdoor meter information

  • type: is_humidity
    condition: device
    device_id: 187c277635856fd59832d6ab61baab2d
    entity_id: d76460cb16f6c78acf762b4fb71e138c
    domain: sensor
    Indoor meter information
  • type: is_humidity
    condition: device
    device_id: 64aca92447ebed87d67380f8a94d773a
    entity_id: 38af55c6c3b6c0cdbbc1ba8b9e018549
    domain: sensor
    Fan switch
  • type: turn_off
    device_id: 8539f6499966c4d39ea05b86c2e1d2a5
    entity_id: 1c194f5d40d

thankyou!

2 posts - 2 participants

Read full topic


Utility Meter - Reset Offset not in UI once created

$
0
0

I have created quite a few utility meters, and I didn’t set any offset so they would reset at midnight (Daily)

But I see they are doing it at 00:20 instead, I went to the utility meter options in the UI (Helpers) and the settings for the offset are not there, they sem to only be during creation, is there a way for me to ensure this meters reset at midnight ? how do I edit an already created meter that was done via the UI helper ?

Thanks

Carlos

1 post - 1 participant

Read full topic

How to create a binary sensor from a Garage Cover sensor

$
0
0

Hi guys,
I have a Ratgo garage door opener sensor (Cover Sensor) that I want to clone/duplicate as a binary sensor so that I can perform a custom automation.

What this automation does is that it checks for 3 doors, if they are opened then it alerts me via alexas and mobile apps that all the doors are opened. When I say 3 doors, it includes a laundry room door, laundry room to garage and garage door opener.

I am using Aqara door sensors for both the doors but for the garage door it doesn’t have a binary sensor. Instead there is only a cover sensor available and that can’t be included as a binary sensor in the automation.

So, can you guys, please help me in converting or duplicating my Garage Door Opener (Cover sensor) into a binary sensor so that I can include it in my automation and make the automation work.

To get started, I tried the following (placed in the configuration.yaml file) but it shows a configuration error:

  • binary_sensor:
    • name: “Garage Door Status”
      state: >-
      {%- if states(“cover.ratgdov25i_db38dc_door”) == “closed” -%}
      false
      {%- else -%}
      true
      {%- endif -%}

Please let me know if you want me to include any configuration etc.

Thanks in advance!

2 posts - 2 participants

Read full topic

Turn the power outlet on/off

$
0
0

I want to make an automation that turns on the power outlet of the water boiler when the energy production goes negative.
So when i produce more than I consume start heating water.

Been trying for days without success…

So I got the power outlet: switch.boiler_stopcontact_stopcontact_1
And I got the energy consumption: sensor.p1_meter_vermogen

If sensor.p1_meter_vermogen greater than 0 then turn on switch.boiler_stopcontact_stopcontact_1

Seems easy right? Please point me in the right direction.

3 posts - 3 participants

Read full topic

Smart gateway P1 not connecting with mqtt

$
0
0

The smart gateway P1 port (smart meter) does not want to connect to mqtt. I have zigbee2mqtt working with mqtt without any problems, so the mqtt broker works. To log in I use the HA host ip and mqtt username and password, just like I let zigbee2mqtt connect to the mqtt broker. When I try with mqtt explorer, it doesn’t work either (connection refused).

what’s holding up the connection?

2 posts - 1 participant

Read full topic

Button to trigger HUB Activity

$
0
0

Been working with Home Automation now for several weeks and starting to like it more and more.

Some of the simpler things I managed to get to work. But this one I can’t figure out yet.

To watch TV I need to turn on the box of the provider, the TV itself and an external sound system. Only the TV is connected directly to the network. The rest is not.

To do this I have a Logitech HUB with an activity.

HA has found it all and has added all the activities just fine.

I managed to find a built in card in HA to switch between the activities of the Logitech HUB. And when switching from “Power Off” to “Watch TV” everything turns on just fine.

type: entities
entities:
  - entity: select.logitech_hub_activities
    name: Activities
state_color: true
show_header_toggle: true
title: Television

To make it even better I have created an additional automation to include turning on the HUE Sync Box and the lights that go with it.

This automation is triggered when the Activity options have changed.

All is working well. Same for turning the stuff off.

But I want to put this into a button rather then drop down that simply show a grey TV when it is off, a green TV when it is on. Or different colors…

Just cant find a way to do this?

1 post - 1 participant

Read full topic

Conversation agents, HA vs Deepseek (or others)

$
0
0

In the voice pipeline model, the conversation agent is labelled as:

“The conversation agent is the brains of your assistant and will process the incoming text commands.”

Up until now, I’ve kept this set to the default ‘Home Assistant’.

I also run the faster-whisper addon for the STT element.

Recently, I was playing around with Ollama and got Deepseek up and running, and used this as the conversation agent instead.

Given that faster-whisper seems to be doing the heavy lifting on STT, what does the default HA or the Ollama (in this case deepseek) actually do ?

At least on my relatively modest tiny pc, most of the processing (and delay) seems to be in the STT part, especially as you trial larger models.

And one last question, the docs for the Ollama integration says it does not support template sentences, but I’ve tried it and it appears to work fine with custom sentences I’ve used to start automations.

2 posts - 2 participants

Read full topic

Add attributes to input.number with value every hour

$
0
0

Hello i have this input.number

and I need add attribute_tem­plates with same value for every hour today and tomorrow like this another sensor

How can I do it?

1 post - 1 participant

Read full topic


Netatmo doorbell live don’t working

$
0
0

Hello
I have the Netatmo integration with dev token for my Netatmo doorbell.
Webhook are Ok and working.
But camera live feed doesn’t work. I have only the picture. No camera live feed.
I can’t read video recorded too but I can show the title.

Do you have any idea ?
Do the live feed is working for you ?

Thank for your help.

1 post - 1 participant

Read full topic

Using Home Assistant to monitor a port?

$
0
0

Is there any way to get Home Assistant to monitor whether a particular IP address and port combination is visible?

I’ve got some industrial automation equipment that’s giving me trouble integrating into Home Assistant because its not always visible on the network. It drops off for various reasons that I’m still trying to fix.

I’d like Home Assistant to be able to check if it’s visible before running automation that involve it, and do nothing if it is off line.

Communication is so far only one way. I can send data packets to it, but it can’t respond, and won’t produce any error messages if it’s off line when Home Assistant tries to talk to it.

What I’d like to do is to check if there is a port open on a specific IP address on one of my server. If that port is open then the equipment is online, if it’s not, then it’s off line.

Is this possible with Home Assistant?

1 post - 1 participant

Read full topic

Home Assistant Not Recognizing My Bluetooth Driver

$
0
0

Hello! Home Assistant is not recognizing the Bluetooth Driver inside my HP Pavilion x360 Intel i5 Laptop. I used the Generic 86_64x Method in order to install HASS OS onto the laptop, is there any way I could get Home Assistant Operating System to recognize the Bluetooth driver so I can add my Govee Bluetooth Devices? Additionally, my Web & SSH Terminal Add-On refuses to start, so I cannot use it, but I have access to the laptop HASS OS is running on.

Note: I am just a beginner, so I am not super comfortable with yaml configs. If I really need to, I am fine with copy and pasting code into the file editor or my laptop that HASS OS is running on.

Any advice would be appreciated.

2 posts - 2 participants

Read full topic

Entities stop connecting with InfluxDB

$
0
0

there’s two entities (that i know of so far) that after a while stop sending data to influxDB, if i restart HA they start sending data again fgor a while and so on and so forth.

Both are the power draw entity for a couple of zigbee plugs, the “interesting” thing is that not i can still se other entities for those devices after they stop communicating… no idea what to do here, but it sounds like it’s on the HA side…

1 post - 1 participant

Read full topic

Evaluating a template stored in an entity

$
0
0

I’ve implemented a recurring todo system that syncs an HA todo list with a Google Tasks todo list, repeating a completed task “X” days after completiong, where “X” is embedded within the task summary, e.g. “Clean guest bathroom [3]”, representing my desire to clean the guest bathroom every 3 days.

What I want to do next is to enhance this so that if a guest is present, the todo gets skipped and rescheduled for the following day. To do this, I want to embed a condition within the todo description, essentially a template, e.g. “{{ person.guest == ‘not_home’ }}”. My vision is that the script that handles the todo recurrence would evaluate this template and adjust the due date accordingly, but it seems that in order to do that, I need to embed a template within a template, and I can’t find a way to evaluate a nested template.

Note that I’m using cleaning the guest bathroom only as an example. I’d like to be able to embed any template in a todo description and have it processed as described above. Evaluating a nested template doesn’t seem to be possible however, so what else can I try?

1 post - 1 participant

Read full topic

Viewing all 107688 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>