How to help us help you - or How to ask a good question

Before we begin…

This forum is not a helpdesk

The people here don’t work for Home Assistant, that’s an open source project. We are volunteering our free time to help others. Not all topics may get an answer, never mind one that helps you solve your problem.


This also isn’t a general home automation forum, this is a forum for Home Assistant and things related to it. Any question about Home Assistant, and about using things with Home Assistant, is welcome here. We can’t help you with everything though.


:zero: Language

We can only support one language here, and that language is English. We appreciate that not everybody can read and write it, but there are a wide range of options out there. We chose this language since it’s known to the moderators and developers, and also one of the most widely known languages.

Alternatively there are other places you can get help in other languages.

:one: Search

It’s not unlikely that your question has been asked, and answered, already. If you search the forum, you may find it and save yourself a lot of time.

Now, it may not be a perfect answer to your question, but it should get you close enough to start.

When you’re writing a new topic, on the right-hand side (where the Preview panel is), you’ll see topic suggestions. These are chosen based upon your title, tags, and the post content. Do check them before you post.

If you find a post that solves your problem, please like that post. It’ll help others identify that post as helpful, and let that poster know that they’ve helped people.

You should also check the community cookbook - a list of community written guides on many topics.

:two: How do I search?

Try to search only for what is the core of your question - the error message (without your specific data), component or app name, the operation you want to perform, etc.

Some examples of searches for common scenarios:

  • hassio “no such image”
  • mqtt light
  • camera stream

:three: I found a similar topic but it’s already solved and I still have a problem. Should I post in it?

As a rule of thumb - no.

What you could do, is to post your question in a new topic and put a link to the topic you found (see also 9 Show your workings below).

:four: Did you read (and search) the documentation?

The documentation is here, and the integration list is here (integrations used to be called components). There are a few highly recommended sections that everybody should read:

The documentation and the integrations also have search functions.

Be warned, Home Assistant changes quickly. If you’re looking at a post in the forum, or somebody’s blog post, or a YouTube video, and that article is months old, it could turn out to contain outdated information. If you run into problems it’s good to check against the current documentation.

Don’t forget, apps will have their own documentation too. In many cases it will be embedded in the app, or accessible through it, but if not check the app page or the relevant GitHub repository (for a non-core app).

Good questions

:five: Use a relevant category

The categories are fairly self explanatory, and Uncategorized is where things without a category fall. Please try to help them end up somewhere else :wink:

:six: Use relevant tags

Tags are added to a topic to help to improve the forum’s search engine, as well as give additional context to people reading your question.

Common tags include zwave, mqtt, templates, switch, etc.

:seven: Title

Having a good topic title is essential. It should summarise your post so that without even opening it people can have a good idea of what it’s about.

A good topic generally:

  • Includes unique part of the error you’re getting
  • Contains the integration name or action description
  • Describes the thing you’re having an issue with
  • Is emotionless

For example:

  • Good How do I use a timer in an automation to delay an action?
  • Bad Timer not working
  • Ugly Problem/Need help
  • Good Z-Wave - Not able to include device ZXX123
  • Bad ZXX123 not discovered
  • Ugly ZWave problem

If you’re having a problem writing a good topic title, leave it for last - once you’ve written the whole question, it might be easier to write a summary title for it.

Asking the question

Before posting anything make sure that you read and follow the community standards

:eight: Describe the goal, not the problem

It’s all too easy to fall into the trap of the XY problem. If you describe your goal first, then others can understand what you’re trying to achieve.

:nine: Show your workings

If you turn up with a post that suggests you’ve put in no effort, you’re less likely to get quality help, and your post may even be ignored. Explain a bit of what you’ve done so far, such as:

  • Link to some other threads that you’ve found, and tried, and explain why they didn’t help you
  • Describe what you’ve tried, and what the problems were

Showing that you’ve put effort in will help demonstrate that you’re not simply looking for others to do all the work for you.

:one::zero: Tell us how you installed Home Assistant

Tell us if you’re running Home Assistant using an official HassOS image, a Docker install, a venv install, and so on. Things that are often really useful to know include:

  • What version number of Home Assistant are you running?
  • How you installed it. If you’re not using a HassOS based install, remember to tell us the operating system
  • Any relevant code - correctly formatted

For example:

  • Home Assistant 2022.11.0 using the HassOS image
  • Home Assistant 2021.12.2 in a venv following this guide on Windows 10
  • Home Assistant 2022.2.42 on Ubuntu 22.04 following this guide

Please remember that words like latest, current, newest and so on are not version numbers.

:one::one: Format it properly

When sharing the code, share it as text and not an image. When you do that, remember that spacing is critical in YAML, and if you just throw the code on the page then it’ll look ugly and nobody will know if the problem is because of spacing. We need you to use code blocks and appropriate markup.

For example, this is easy to read and it is obvious if the spacing is correct:

# Turn off lights when everybody leaves the house
  - alias: 'Rule 2 - Away Mode'
    trigger:
      platform: state
      entity_id: group.all_devices
      to: 'not_home'
    action:
      service: light.turn_off
      entity_id: group.all_lights

This however, not so much:

Turn off lights when everybody leaves the house

  • alias: ‘Rule 2 - Away Mode’
    trigger:
    platform: state
    entity_id: group.all_devices
    to: ‘not_home’
    action:
    service: light.turn_off
    entity_id: group.all_lights

Full details are in that link, but in brief you use the </> button on the editor toolbar (it may be hidden, if so click the :gear: on the right) or wrap your block in three backticks (```), like this:

```
# Turn off lights when everybody leaves the house
  - alias: 'Rule 2 - Away Mode'
    trigger:
      platform: state
      entity_id: group.all_devices
      to: 'not_home'
    action:
      service: light.turn_off
      entity_id: group.all_lights
```

:one::two: Describe what you changed

If it used to work, then tell us what changed since then. If you changed an automation, upgraded something (a custom integration, an app, Home Assistant itself, etc), we need to know. Don’t just tell us the last change, tell us all the changes.

Remember too - only change one thing at a time, then test. If you change multiple things and it now works, you don’t know what solved it. Worse, one of those things may have solved it, but one of them may have introduced a new problem.

:one::three: Share the logs

If something isn’t working, check the logs and see if things are being logged. The Home Assistant log is available in the UI, though information on custom components only appears in the log file on disk, or you can check them using the command line - ha core logs. Keep in mind that the UI will only show errors, and other entries may be helpful and relevant. Other sources will include:

  • Home Assistant log file homeassistant.log
  • Supervisor log
  • App logs

For automations and scripts make sure to include the debug trace. Downloading and sharing the trace’s .json file is an efficient way to provide us with information about how your automation is designed an what is failing.

The more you tell us, the more likely it is that the problem can be identified.

:one::four: Screenshots

Sometimes an image is worth a thousand words, and including a screenshot (or a link to one hosted elsewhere) can help. Don’t do that for anything you can copy and past from your configuration, YAML, code, or logs. Please only include screenshots that are actually helpful.

:one::five: Read before posting

Yes, read your own post before you post it. Make sure that you’ve not lost the point part way through, that it still makes sense, and that the topic, tags, and category all still make sense.

The other things to ensure is that you’re using paragraphs, punctuation and white space. A wall of text is hard to read.

:one::six: Should I tag people?

Generally, no.

It comes across as bad manners, you’re demanding somebody answers you. It’s different if you’re thanking somebody, obviously.

If you do tag somebody keep it polite and respectful. Remember that everybody is a volunteer, and nobody has to help you.

Similarly, please don’t PM (private message) people asking for help. It also comes across as demanding, and means that others can’t learn from what you do.


I’ve posted…

:one::seven: Wait…

Yes, the community covers the world, but those who can help you may not be around. It can easily take many hours, maybe even a day or so to get a response.

:one::eight: But it’s been days

If nobody has responded after a couple of days, have a re-read and see if the title, category, tags, or even the post itself need some attention. Re-read this guide and see if you’ve missed something important.

If you think that all is as good as you can make it, then you can consider bumping it by posting a reply to make it more visible. Doing that too much, or too quickly, can make you look entitled, and that will drive people away.

:one::nine: I’ve solved it!

Great. Please respond to your post with details how you solved it, and use the option to mark it as the answer (see 21 below).

Please don’t delete your question, that will make it look like you only care about yourself.

:two::zero: People are replying, but I don’t have the answer

This is common. There’s always going to be things people don’t know (because you didn’t tell them, and maybe didn’t even know to tell them, or because it’s beyond the limits of their knowledge).

If something that people have said has moved you on, then let them know. This will encourage people to keep helping you. If it hasn’t, let people know that you’ve tried their suggestion, and what happened. Again, this encourages people to keep helping you.

:two::one: Somebody’s answer solved it!

Fantastic!

Now, before you go… please take the time to mark that as the answer, you do that by selecting the three dots under the post:

image

Then select the check box:

image

Don’t forget too while you’re down there to click the heart to like the post, as a way of saying thank you.

:two::two: Be respectful

Please do read the code of conduct.

:two::three: Don’t use ChatGPT

Don’t use ChatGPT, or similar tools, to generate answers that you provide. These tools often produce results that look good but are incomplete, misleading, or just plain wrong. If we believe that you’re doing that then we may suspend your account.

:four::two: This can’t work, can it?

Try it :wink:

Remember, there’s never a guarantee you’ll get an answer - nobody is required to provide one. What you can do though is provide a post with relevant supporting information, that shows you’re trying. That will encourage people to help you.


Inspired by this awesome post over in the OpenHAB forums.

225 Likes
Getting help in languages other than English
The Home Assistant Cookbook - Index
Raspberry pi 3 b+ - ideas
Welcome to the Home Assistant Community!
Severe Weather Alerts from the US National Weather Service
Adding Zigbee to Hassio on docker
Annoying error in log to remove [device]
"Config doesn't include customize.yaml"
Webhook errors
Numeric state automation help
Esp8266 D1 LED strip not working
ESPhome data type
0.103: Happy Holidays, Service calls, StarLine, GeoNet NZ and Proxmox
Choose condition OR/AND
Aqara vibration sensor availability sensor
Can't stop ESPHome restarting with weak wifi
Homekit stopped working after 0.96 upgrade
Athom, Esphome and flashing
Automation trigger on hour+minute+second in variable (sensor/input_numbers)
Wait between action steps
Problem in automation - help
Mqtt messages with differen ID's, how to filter and avoid sensors without value
Need some ideas from the brain trust on an automation
How to get specific in an array of attributes
Unable to connect to MQTT Server - Fresh Installation of Sonoff E Dongle and zigbee2matt
Zigbee2MQTT correct automation syntax
Getting temperature from ESPhome and BME280 on HA
ESP Home Binary Sensor IF
Visual time lamp
OpenZWave stuck on "network starting" all nodes "unavailable"
Issue with Defaul Home View {Solved}
Question about mqtt docker smartthing bridge is not communicating
IFTTT applet skipped
Can't use '/local' directory location on Dietpi [Solved]
Home Assistant Community Add-on: Node-RED
Please delete - found the problem
Input Select with Alexa for Scene Control
Google assistant integration breaks HASS?
Problems with Alarm control panel automations
New to home assitant
Simple automation. For garage opening
Modbus stopped working with rel 2021.7
Template for lighting control when the first person arrives at home
How to notify all events in Google Calendar?
Ping 8.8.8.8 connectivity check
Проблема с регистрацией после установки
Entities with multiple values
Script to disable/enable all automations right after Startup / Boot?
Need help with Google Calendar setup in my configuration.yaml file
Userchecking in an automation (maybe via IF-Clause)
Netatmo outdoor camera not working
Assistance in creating new sensor from value in data received from uart
Automatisation of Shelly Shutter - activated with KNX GA
Problems with turn on/turn off lights
Looking for help getting assist_timers.yaml working
Help with convert m3 water into liters
SMTP not working and SMTP integration not available
Power down a cinema processor with a script
DHT22 sensor not working HASSOS
Qwikswitch
Config, base_url and can't restart
Repeat until, mulitple triggers, trigger.entity_id
Scrape CSV
Area conditions?
How to get ~800 Leds to work smooth with Fastled or Neopixel
Set GPIO switch as lock for homekit
Help with cm to % on D1 mini and HC-SR04
Environment Canada Issues
Disregard this post
Frustrating: my person entity simply gone
How to control the LED with MQTT?
Outdoor Light Automation Not Working Looking for help
Junk reminder automation problem
Automation option missing
WLED automation with segments
Automation creation
Lovelace: Weather card with chart
Automation does not start
ESP32 Cam - working!
MQTT configuration in yaml
Scene setting wrong input_select in automation for some reason
Counter decreases when internet resets
Group's State not accurate
Where is the condition error script?
HA consultant for hire?
ESPHome killing Wifi of ESP?
Setup failed for cloud, stream, mobile_app
Automations using Wyze Sensors
Help me love HA - first (failing) automation, Daikin AC with BRP069B45
ST7735 display not display temp. reading (SOLVED)
Help needed for MQTT Binary Sensor
Missing energy management
HASwitchPlate in ESPHome
Link multiple ESP8266/Wemos D1 and/or Wifi-less Connection?
How to create sensor containing JSON items of only internal origin?
Vicare not working
Hue Motion Sensor Automation does not work with ZHA
Elapsed Time Since Timestamp
Extracting attributes for current date
File output with curly braces
IKEA motion sensor
🔹 state-switch - conditional card on steroids
How to group sonoff switches by room
Mqtt I want to use data form /config/mqtt_dump.txt i want 32 that i highlight as shown on the right. how can i get it
Automation trigger on time 15 minutes
Is there a good video that explains how to make entries into the configuration.yaml for beginners? All of the youtube videos that I watch are based on old platforms
Turn Fan off when light off, but wait until humidity is lower than threshold
How to change Port assigned to UPB PIM
Function button
Programmatore per Home assistant
Configure own sensors
New supervisor "unsupported" error
Float(0) and Automations in 2021.12
Dim All lights that are currently on
M5 stack atom echo
HA, ESPHome, Switch state reports opposite of actual condition
Energy calculation serval devices (lights) gets a reset or strange value after reboot
Teething problem …
How can I see all my covers/blinds are closed
Help With Manipulating Text Variable inside automation
Tv Idle automation
Can't figure out endless loop
Energy consumption and generation
I'd like to reset all data for a specific device
How do I split friendly name correctly in this automation?
Want to make an automation repeat until a condition exists
ESP32 Cam - working!
Failed to call service script. Error: No active player
Original yaml of the 13$ atom echo voice assist?
Two different PINS to control two LED strips
HA rounds sensor's data revcieved via MQQT
Need some help on decoding stacked payload
How to get temp and hum on an oled Home Assistant?
Nodered timer data through put to HA dashboard
How to get the state of lights (on/off) as a condition with the area_id?
Days until template sensor
Dumb question
Using variables in automations
E3DC in Energy Dashboard
Disable and enable wlan on time and day
Automation guidance
Trigger an automation based on a group's individual entity state change
Configuration.yaml prersence detection
Using variables in automations
Missing Text to speach option on google home mini
Spotify HA
Play one radio stream by pushing one button
Saving state into a variable
Volume control via telnet
Trying to create two tab like buttons for multiple simple thermostat cards
Pulling my hair for Time condition
How to use state attributes in condition?
Turn off all Thermostats in area_name(trigger.entity_id)
Http entry
Integrating Sensors from MQTT into Home Assistant does not work
Esp32dev devices go unavailable
Automation runtime based on Season
Turn light off after X minutes, no matter how it was turned on
Any good ideas are welcome. Nordpool Energy Price per hour
Markdown numbers and replace
Help with template trigger
Problem with “Irrigation Unlimited HACS Integration”. Enabled attribute
Remove decimals from resulting datetime
Templating card icon color based on state value in a custom:button-card
Help with custom button card sizing
Google calender Adding event with automation
Smart button?
Converting a working template in Jinja2 to YAML for a sensor
UPS Connection Error
Automation to/from home not working after update
Time sensor
First automation beginner
Script repeat for each problem
Calendar announcement
Custom Component: ENTSO-e Day Ahead Energy Prices
Can't get simple automation to run
Automation Panasonic Heatpump
Different actions depending on Conditions
Configuration and more
Light automation with Alexa only works partially
MotionEye - unable to open video device
How to do time manipulation on a string that contains only hours and minutes?
NGINX fails to start
HACS Install Issue
How to split attributes
Set a ‘Select’ input from an automation
Connect a device that is not integration?
ESPHome update has killed wifi
Timer not working in 2024.1
Newbie, yaml color states not working
Automation failing periodically
Time comparison in template
Wrong ntp during installation
How to Switch WordClock via HTTP and Input Text via UI or Automation
How often are triggers checked, and can the frequency be changed?
Linkind zigbee alarm starter pack
Please Help me
Sonoff ZBBridge Pro w/ Tasmota - is Serial to IP over WiFi an issue?
Samba is being bothersome
Automation with time trigger not running but manually started
Want to help others? Leave your AI at the door
Please Help me
Don't understand, how delays and triggers work
Dashboard icon state slowly updated
How to increase variables in scripts?
Helpers - Schedule. How edit or delete
MQTT BROKER and entity
Notice due to lack of data
Configure media player to play an internet stream
Power down a cinema processor with a script
Tell HA that the sensor is a water sensor
Automation trigger, unusual delay
Will not install on a clean OS
Binary sensor based on time sensor
Intesis - clima device integration without cloud connector
Different color gauge with +/- values
Unable to get esphome loaded
Where can I find help for my problem?
Luminance Level as Condition for Sensor Lights
Automation not being invoked
Calling automation experts
MQTT payload as input number
History Stats Help Please
Get attribute to template sensor
Adding energy intergrations in HA
Switch state from tasmota mqtt, it worked then i broke it!
Update_interval & internal option problem
Automatyzacja
How to display history between 2 times on a daily basis?
Person Card
Use climate.set_temperature for another climate control
For_each loop doesn't take "0" item
Water temperature
Unable to connect to mosquito broker outside of the machine ha is run on
Garbage pickup date (mijnafvalwijzer.nl) custom_component
2024.3.3 Are there issues known, so much trouble on Raspi 4
KNX MDT Heizung
Mushroom Cards Card Mod Styling/Config Guide
Telegram send photo which name is a variable
Aqara H2 US pairing
Automation - Left open rolling shutters notification
Passing an entity object to a script to access its attributes
Z2M base64 wrong conversion
Use curent day name as enity_id reference in condition (alarmclock)
Need help Connecting my HA to the Internet
How to add back deleted template sensor created from configure.yaml
Temperature offset sensor
Removing (splitting) output to only show some of the entity output
HA unreachable after backup location set to network drive
Blueprint local variables
Variable not occupied time threshold
Turn off "virtual" switch after 2 seconds
Stuck with "Message malformed: expected float for dictionary value @ data['value']"
No theme background image after cache reload
History_stats tracking heater usage, not working
Template condition to check whether entity state last_changed yesterday or earlier, ignoring same day
Only list batteries from sensor template < 10 % in notification
Displaying a state of a switch on oled display
🔹 Card-mod - Add css styles to any lovelace card
Can't get GoSungrow to work
Thermostat for selectable Room
Complex Chrismaslight Automation
Home Assitant
How to remote control HA?
Po zaniku prądu
Installing/upgrading old versions - failing
All MQTT Entities Not Being Detected
Include met condition in action notification
Zigbee2MQTT not starting , tips needed to find rootcause/solution
Delay before automation starts again?
Howto: Fronius Integration with battery into Energy Dashboard
If conditions / logic in markdown card
ESPHome - multi switch loop
How to use this state in my endstopcover?
Home assistant yellow and docker compose frigate
Returning the WLED lights to a previous state
Moon platform with moon phases pictures
Jinja Help needed: How to display the value of a variable?
Rika automation
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Help solution for unstable morning light sensor automation trigger
Looking to send notification A containing time helper and notification B if time was more than 2 hours ago
Octopus Agile Automation Fails
Esphome + LD2410 sensor troubles
Need help fixing my Yaml
Can't restart Home Assistant with template
Error in making sensor, please help
Problem bei: OpenWB Anbindung an Home Assistant per MQTT
What should I do? hyper-v Virtual machine installation
If color, else color_temp
HA on Pi 4 will not boot without USB Keyboard/mouse connected
Panel energy, no registra la energy del sensor de red
Ikea remote action gone
Why is my motion sensor not triggering my automation
Platform command_line getting json into sensors
Moon-Phases
ESP no reporting to HS
How to schedule a reload of some integration?
Obtain data of a sensor now and one minute ago
Hue bulb to change color when turned on/becoming visible
Trigger via MQTT Range
Using value of helper to set brightness of light in a scene
Create energy overview
Set trigger or condition when thermostat current temperature is below target temperature in Tuya thermostat
Auto restart router or modem when internet down?
Templates - select attributes
Script repeat siren sound
Problem after upgrade python 3.10
Wrong chip id 0x0002
Use current sensor value in automation
Error when logging in after installation on Hyper-V
Cannot change static IP of ethernet device
How to call the calendar service for events of "today"?
R503 - Use MCP23Sxx input as sensing pin
Installation Device zigbee2mqtt on Synology NAS-Docker Container without auto-Detection
Home assistant using lot of memory after upgrade
Not able to connect homeassistant Green box
ESP restart : Connection error occurred: Connection requires encryption
Use Calendar to update entities
Trying to randomize tts announcements
HA timer trigger sends MQTT command
Shelly H&T vs ESP32 + DHT22
MQTT sensor - icon and color based on value
Lịch đám giỗ
Automation walk-around for unreliable alarm sensor
NO add-on!
The B.A.BA of "automation"
ESPHome Relay On/Off Control with Adjustable setpoints from HA
Legacy Syntax - AI Examples
No real-time dimming
Is my ESP32 rebooting itself? it disconnect from wifi few times a day
ESPHOME unknownn Sensor
Create Light Automation
Device is offline notification error
Automations if/elif and delay
Automation Flickers Lights after 3 mins and occupancy does not work
Communiquer de l’extérieur
Optimise the code for an optmization of an MQTT payload
Serial Sensor Wert Übergabe
MQTT bridge not working after first HA reboot
Creating template
Tasmota temperature scenes/automates dont work
Estado sensor desconocido
HA can no longer be changed on IPad
Problem with my m5core2 and voice assistant
Raspberry Pie system crashing
How do I format the date/time of a Google Calendar Entry so that it looks readable?
Days selector for automation run
AI camera analysis - extended
Humidifier that never turns on
Parsing mqtt topic for different devices
Woud like to create a Template-Sensor with condition
Serial Sensor - "Regex" Data
Count Devices with 'On' State Using Labels
What is the best way to have media files for a snapshot delete after 24 hrs
Assist Wildcard Number
Help with MQTT and Json for a water meter
LD2410 mmWave sensor no longer recognised in ESPHome
OS update automatic?
How to automate open door notifications?
[SOLVED] Icon color on themes (open window)
Testing for dead solar panels script problem
Newbie, help setting up (first) sensor/indicator/automation
What happened to my file editor?
Can't get rid of "ZeroDivisionError: division by zero"
ESP does not detect input signal
Switch shows activity but cannot access button presses
Alarm decoder attributes
Calculating kWh usage with CT Clamp (Amp meter)
Possible Bug With Automations Using Visual Editor?
Using Unifi's AI detection to trigger floodlights
Change temp triggered by distance away from home
Automation beginner question light scene with transition yaml error - solved!
Turning on the fan by humidity
ESPHome no longer getting data after the latest update
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Lots of Timestamp entries in Logbook
[Custom Component] Tapo: Cameras Control
Energy zeigt keine Werte an, obwohl Statistik Werte sieht
Add Hebrew language
Thermostat for the cellar
Help with my Home assistant Yellow
How to adopt a device into ESPHome - the addition to the $13 voice assistant guide (M5Stack ATOM Echo)
Solved: Automation: Filter scenes and trigger the last one used
Probleme installation pi4
Automation is not fired
Ios companiom app help pleaas
Esphome number to text sensor
Display the last value that is greater than zero and not unknown
I cannot figure out why my hue motion sensor keep turning on the light during daytime
State badges styling/animation stopped working
DWD WarnWetter markdown card
Modbus configuration problem
Missing view after adding in LoveLace
Soucis de connection caméra lsc
I cant install HA
Automations are gone after update HA core
Count history_stats starts at 1, not 0
Highlighting Selected Button
Message Malformed error when trying to use WeatherFlow Lightning Count as a trigger
Local Calendar feature request 5 - Recognise overlapping events
Read Photovoltaic Battery voltage charge
Smoother ESPHome light transitions?
Time_pattern not working with helper
Battery level monitor
Analog output GPIO pins from HomeAssistant value
Need help with template - Sonos Favourite selection
Message malformed: extra keys not allowed @ data['automation'] error
Basic automation with device tracker not working
Help Using Numeric State for Automations Failure
Create an entity to store energy price along the time
Can I save my ESPHome Binary and restore later? (Possible 2024.07 issue)
Regex_search ignoring ignorecase
I want to make an automation without a trigger
Water PH&EC 2 in 1 sensor
Step by step into HA
Random Christmas light script - help
Slow/Inefficient Automation
Header Buttons in Entities Card configuration / "hold-action"
Espresense/mqtt/dfrobot help please
Automation will not run past 12AM
Mapping error
Problem with PWM
Call Service turn light on not working
How do I disable 'source sensors' and keep the templated ones?
Value Template in Automation Always TRUE ... why?
How to get heating data from TADO
Shut down HA then stopped VM in VMware Player, now no operating system found
Local IP configuration
Dual Tariff on Home assistant
Can I trigger a HA script from ESPHome?
Pzem 004T v3 Energy reset
Manual activation of a switch should override the automation
ESP automatically disconnects
How to split incoming MQTT data to sensor
What is the platform for a number in configuration.yanl configuration?
How to change icon color
Why is my repeat only running once?
Is home not a number?
Cannot install HA OS (RPi3)
Problem creating template
Z-Wave fails after every reboot, and has done so for some time
Automation for doorbell, light after xx minutes off
How to change . (dot) for a , (comma) in a template sensor
Cant add integretion in HA
Automation data
Rest sensor gone when its unable to retrieve data
Basic tutorial on REST sensors?
Calendar option
Home assistant keeps on the onboarding screen blue circle
Best Way to Track Net Electricity Cost Using Daily Utility Meters and Dynamic Pricing
Bluetooth Probleme
Simple on/off automation driving me crazy, what am I not getting?
New “sensor” types for homekit bridge
"Pin 4 is used in multiple places" since update?
Sonoff Refresh Automation
Impuls Pause Schaltung
Ping a port to check if device is online
Awtrix + mqtt + HA
Timer Bar Card (+ Mushroom Style)
How can read this data
Calendar trigger does todo entry
Sonos Cannot Play Local MP3 File
How can read this data
I need "entity: light.zs_ho" to become "switch.sw_ho" with all on/off functionality
Disable an automation when daylight saving time comes or goes
Configuration.yaml - What Have I Messed Up?
Vacuum.return_to_base no more available in 2024.7.1?
Message malformed: extra keys not allowed @ data['for']
Using Tuya Devices locally - inner workings
Error in a script when repeating
Read state (JSON) from website with multiple values - catch one value and create a sensor
How to check for non blank values
Mqtt light template add color_mode
Does Ha have a built in day/night cycle?
Cannot find sensors due to yaml code problems
Help adding confirmation to entities card
Why was this automation triggered but not executed?
Error in a script when repeating
MQTT cover / template / card
Integration of CCU3 does not work
New To HA--Alexa Media Player
Single button press to cycle through 3 light brightnesses
New backup to NAS How-To?
Newbe needs some help with zigbee2mqtt and mosquito broker
Button Last triggered
🔹 Card-mod - Add css styles to any lovelace card
How to export ESPHome's code into C++ and Python files?
Boolean configuration question
Card-mod or mushroom issue
Try to get an Automation but get fault code
Helper template negative values show 0
Fallback WiFi without captive portal?
Display MQTT data from electricity meters
Automation light wc
What I'm doing wrong?
I'm trying to use Chime TTS to make an announce ment, but not stop the media playing
Energy Dashboard Gas Problem
I don’t get what this error is
3d dash borad
Update 2025-12 Boot failure
Light template(s) from HA guide and forums don't work
Automation - Lights keep timing out when we are in front of them
Retrieve a variable value on a CAN Bus
"delay" in automations
Ok, I need help
Home zone automation
Change login page
Desky Standing Desk (ESPHome) [Works with Desky, Uplift, Jiecang, Assmann & others]
Call Service Missing Room Area
Add ability to use custom map providers
Automation half an hour before alarm
Eve Weather metrics does not match the screen
Automation half an hour before alarm
Problem with adding ESP32 to home assistant
TCP Integration Sensor
Esphome.h Library
How to make an automation with a sonoff switch
HA OS won't update...stuck at 11.5
Using groups with expand filter
How do I control my lawn irrigation using irrigation unlimited integration
Imposible pasar de cgroups2 a cgroups v1
Unable to Set Local Network URL
Script syntax error
Tailscale on android mobile to access home assistant does not work
The response_data: variable undefined when using a service action
YAML configuration for connecting Sonoff RF 433mhz bridge to HA
Water flow sensor with temperature yf-b6 esphome
All entities in Lights Group
Missing sensor in energy dashboard
Dawn and Dusk to KNX
Automation for Diffuser
Problems updating text on lvgl button
Adding trigger based template to a templates.yaml file?
Automation not working- please help
Message when turn on switch
Trying to access tibber power sensor
Simplifying 4 automations on front door into just 1?
Person card - change image according to status
Is it possible to use text as part of an automation with “If Then”?
Add if user is to YAML (noob programmer) *Solved
# Help Please - newby requires assistance to ensure his automation runs just once a day! Thanks in advance
Including .yaml-files in configuration.yaml error
Test conditions continually and switch a sensor based on the outcome
Mushroom card remove button
Irrigation Automation help
Mqtt broker not accessible from outside of Home assistant broker
Update failed
Condition "button" color
Sunset blind close
Frigate person detection
Message not coming
Fixing my Yaml
What am i doing wrong with this automation?
Error when installing yaml file
Automation Now Fails after Core Update
MQTT sensor from MQTT
Help with Notification value of sensor
Failed to perform the action honeycomb/undefined. required key not provided @ data['service']. Got None
Using scripts to turn on or off lights
ESP32 S3 Box3
230V input to Home Assistant
1 camera on 1 device not working
What am I missing from my alert for low battery devices?
If then text
ESPHOME OTA requires platform
Setting the charging threshold in the electric car
Custom button card temperature
Wifi link to router seems to be broken
Hello, does anyone know how to integrate VTA+ devices from Colombia, thank you
Need a little help please
Problems to template MQTT sensor JSON as entity
Troubleshooting TZE284 Temp/Humid sensor Custom quirk in ZHA
[Custom Component] Tapo: Cameras Control
ESP Temperature update fail
Home assistant not restarting
WHT: Why don't we have templates for easy start with integration?
Sonoff Tx T3 us yaml code for a double click button esphome
New ESPHome Update - Then Cannot update devices
Using the value of a slider to trigger automation
这个homeassistant怎么这样难玩。。
ESP32 S3 Box3
Set an MQTT-Entity with MQTT-publish in an automation as difference of another MQTT-Entity and a fixed value (both temperatures, float)
Configuring Zigbee2MQTT with SLZB always fails with "Error: network commissioning timed out - most likely network with the same panId or extendedPanId already exists nearby"
Help with on_boot. Validation fails. Component not found: on_boot
Editing blueprints and effect on related automations
Which line tells me which Zigbee device is causing this error?
Unavaible device. Reload and make new integration failed
Button press state delay
Dev tools lists time_pattern as an invalid trigger in templates
Restful Integration
Unifi integration only allowing 1 switch?
Icône animée garage
☔ DIY Zigbee rain gauge
Integración SUN
Lovelace card will not stay visible- appears and disappears
Advanced control of any light entity from KNX (state, brightness, dim, temperature, color + states feedback)
Solve the installation problem
Cant seem to get a call to script to work
How Can I Connect My Breaker To Home Assistant
Automation Continue on Error - Not Working
ERROR Connecting to 192.168.4.240:8266 failed: [Errno 111] Connection refused
YAML Configuration for M5Stack AtomS3R Cam
Modbus TCP/IP sensors integration
IKEA Tradfri mit Home assistant und Styrbar
Help with a response_variable and then using in a value_template
Switch: very strange entity
Secure communication channel for iOS app
Legacy pcnt driver is deprecated
Cannot read properties of undefined (reading 'get Config Element')
Stuck in Create user
[Warn]Home assistant CLI not starting! Jump into emergency console
Turn off a/c device if no movement has been detected for the last x mins
mqtt yaml error
Cant add channel
Please help me correct my non working automation
Homeassistant/components/freebox
GUITION 4" 480x480 ESP32-S3-4848S040 Smart Display with LVGL
HASS Version 2024.10 Kostal Plenticore not work
Advice on wiring into an existing float switch/warning light
How to pass a cell value to input_text in flex-table-card
Switching a lamp only between two dates
Google Calendar Notifications to Iphone isn't working
Home assistant os add 2nd harddisk
How to attach image entity to an email
How to use PZEM004T Energy Monitor with esphome
DHT22 Invalid readings! Please check your wiring (pull-up resistor, pin number)
How about the Swiss Army Knife custom card? is it dead?
Can someone post a pic of Device Add dialog
Pairing A-OK AM25
How does a new person to this community start contributing? and how do i access the documentation
Issue with zwave and Zigbee
SmartPrice.be — Free live EPEX Spot Belgium API for automations (negative prices, cheapest hours)
Help with Zappi / Octopus / Sunsynk automation
KNX-HA climate, MDT BE-GT2Tx.01 with MDT AKH-0600.02
Lovelace: Mini Media Player
Event homeassistant_started doesn't work
Z2M - Tradfri without action property? Latest updates
Help my Yaml file
Progress from my printer using Percent preset in WLED (Value type)
DNS Struggles
Trigger Yaml doesn't fire. Probable user error
How to handle this complex automation?
Read sensor data from file
Want to improve my home automation for offline use, create new setup
Error in the last update HA
Grid Rows And Columns Not Working in Swiper
ESP Home Smart plug not connecting to ESP Home API
Mushroom light card
Z2M Zigbee devices do not update
X-Sense Security - is it possible to create an integration?
Login: only able to do it on anonymous browsing
Rest_command doesn't work when executed with automation
ESP Bluetooth Proxy
Z wave unstable
3rdReality temp/humid sensors will not pair
HA Pylontech battery integration with ESPhome using esp8266 - help / assistance requested
Backup drives me crazy, Can't Access UI, Network Issue
Error message
Template Helper to get Library being accessed by Plex HTPC
Dallas temp sensor
X-Sense Security - is it possible to create an integration?
1000th question on changing icon color
Eufy setup
ESPHome install fails while linking firmware.elf
LMS Timeout error
Problem records only 12 hours
Solved: Telegram - duplicated mapping key?
ESPHome with any ESP8266 Relay board?
Continued invalid config for allow_list_dirs: error
Secondary disk
Can't flash program
Error: must contain entity_id
🔹 Card-mod - Add css styles to any lovelace card
Trigger with a variable
How to backup automations, scripts, etc?
Timestamp template not working as sensor, but works in template editor
Detect Watering and Fast Soil Moisture
Entering home - Detected but action not fired
Global Cache Flex
Availability 2025.5.x
Home Assistant not detecting wifi
Stuck on some SNMP monitoring
How to set states value in google sheets
Need to send initial data on startup and then only upon meeting a threshold
Help sensor!
Need to send initial data on startup and then only upon meeting a threshold
Creating Alerts with Aqara Door Sensor
Can’t add unit m3 via customize.yaml
Best MiniPC for HA?
Automation Loop
DHT and I2C sensors not working
New to HA, My installation is not reliable
Music Assistant 2.0: Your Music, Your Players
Cannot send email out of an action
Cross post
2025.8: The summer of AI ☀️
Home Assistant Entities from Node-RED missing after HA 2026.6.0 Update
Have problem in 2025.9.1 update
Integral sensors unavailable
Perform an Action when Plex HTPC Plays a Movie
Compiling ... esp8266 generic - error: id returned 1 exit status
Please could someone tell me why this automation doesn’t work
Yamaha RX-V677 home theatre integration not found
Lightwave Integration
Migrated from ZHA to Zigbee2MQTT Now everything is worse
Installation where everything fails
New and about to throw HA out tye window LOL
ESP8684 DevKitC 02 wont run after writing to it in ESPHome
Help controlling dual-LED ceiling light
Deprecation of legacy template entities in 2025.12
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 2)
Reillo ashp sunsynk citreon & hydra
Trigger-based Template Sensor is not created from a valid Modbus sensor
Connection to API of Jullix EMS
LOOKING for some HANDS ON HELP
Time sensor automation occasionally not triggering
YAML Check please
How to set temp with using GECKO integration
Icon Based on State
I'm asking for help - platform: pulse_counter, - platform: dallas_temp
Help Creating Automation
:shield: Watchman - keeps track of missing entities and actions in your config files
Help to configure Alexa Devices add in to make announcements when a smoke detector operates
Cant add custom_quirks_path to configuration.yaml
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Turn your AI chats into community knowledge before forums disappear!
How to use PZEM004T Energy Monitor with esphome
My Zigbee2Mqtt seems broken
State counter for Open and Unlocked contacts
All custom apps not loaded
ESPHome servo control - multiple servos?
"Reliably" detecting changes in HVAC_state from "idle" to "Heating"?
_TZE204_gkfbdvyx radar sensor not working with ZHA
Automation not triggering consistently
Zigbee Not Working Well
Problem mosquitto.conf
Ds-kv6124-wbe1
Esp home/vattenfall5.yaml
ESPHome is unable to provision wifi to ESP module
Fully kiosk browser - not working for targeted user
Automation to check MQTT topic, to many triggers a prblem?
Is there a way to force round(3) to always display 3 decimal places?
Connecting ESP8266 D1 MINI to RPi Hass.io Access Point
Rain notification, Based on forecast
History stats from Shelly BLU TRV
Remote_receiver RF 433
Modem Router combo Gateway with HA
Stable way to perform a backup?
Home Assistant Green vs.?
Video activation in Home assistant
ZHA - IKEA Styrbar (N2) - Light, Dimming & Color Temp (No Helpers needed!)
Lights On When Arriving Home
Repair Issue - App InfluxDB has been removed from the repository
Home Assistant Yellow SSD Drive
Cant Install companion app Galaxy Tab S10 - Urgent Pls Advise
Auditr Baaklog exceed limits
Leviton automation
Daily temperature notification
SMTP GMAIL error
Text to Speech on android phone?
ESP32-s3 eth poe not working?
How do you figure out why a Toggling a Light On keeps turning on and off
Setting up a motion and presence sensors
Switchbot Presence Sensor
Very basic automation not working
What the HACS? New custom components blocked
Probably a dumb question [about overviews vs dashboards]
Automation didn't work
Making HA user friendly using AI
ESP32-S3-Touch-LCD-5 white border
Zigbee Plug Countdown
Best wallpanel
Ikea tradfri buttons in automations
Rest_command not found, but it's in config and I restarted
0.107: Multiple Lovelace Dashboards, adds helpers, new media player card
Automation: It's raining trigger
Need Help with Automation tried everything it can should be simple what am i missing
Executing an Automation manually from a card
Configure Timer to start/stop with Time input
How to troubleshoot go2rtc?
Sonoff /eWeLink component for original firmware
Is the Google Travel Time Sensor Broke
Mapping not allowed in config/configuration.yaml
MQTT switch with a different look
Input Datetime error
Please help me Trigger on event state_change
Dim lights to 50% of their brightness?
Automation for turning off Govee lights when Samsung TV turns off
Command_state: parameter with "quotes"
My PI4b HA is starting to crash
Can someone explain automation condition checking?
Mystery with light
Set helper to value of sensor
🔹 Card-mod - Add css styles to any lovelace card
Initial help to access sensors for newbie
Customising the BOM Weather and lovelace - now in HACS
Automaton condition is false, action happens anyway
Making a Google device work with other units
Home Assistant Community Add-on: Nginx Proxy Manager
Help With Room-Assistant
Broken Automation with Motion Sensor and Lights
I Have no idea what's going on
Subtract two time sensors to get duration (in min), then %
Script: saving entity state and restore it at the end of the script
Pool Solar Pump Automation doesn't work right
To stupid to get simple automation
Little problem integrating my watermeter
[New Addon] Samba NAS. (Mount external disk and share it )
Costco Feit Smart Dimmer Tuya Convert Tasmota
Set input_number from LED brightness at automation action
How to use a neopixel led as notification
Binary sensor on turns switch on automation not running
Templating value - possible only with creating addiotional sensors?
Aqara and Hue Motion sensors help
Numeric State not triggering
Are Light groups screwy or is it just me?
Read Device Configuration and Create Effects List
Use state of mqtt topic to override physical button press action?!
Malformed required key not provided @ ['zone']
Transition and weird things
Is there a way to have triggers timeout?
Passage de valeur à un script
Modbus switch config errors
Urgent help needed
Can't send photo to Telegram
Nested groups
Automation with if/else service selection
Energy Cost Calculation went haywire after 2022.8
Timer duration from lovelace UI
2021.6: A little bit of everything
Shed door template sensor help
Help configuring YAML for relay assistant (for automations)
MQTT switch and sensor dont work after 2022.9 upgrade
Use helper minus 2? Can home assistant do math?
Sensor value send mqtt
2021.7: A new entity, trigger IDs and script debugging
Help with thermostat
KNX Dimmen Funktioniert nicht - Hilfe
Honeywell CH/DHW via RF - evohome, sundial, hometronics, chronotherm
Mobile Notification Script with colour field - Please help
Instalar un segundo SSD
Sensor Template | use backup sensor if main not available
Energy template - battery input 2 values
Help with group yaml
Error while announcing change in weather.home status
Integratienota not showing
MyQ garage opener hub integration not working
LED Motion sensor automation
Where do I start?
Integrations didn't work after upgrade
Difficulties with installation of Home Assistant Operating System on Generic X86-64
Template Sensor for days remaining?
Lovelace Table
Abfallkalender in Home Assistent
Unable to find my mqtt device path to use in zigbee2mqtt
Graph data
Time automation triggers on resart
WoL - Not working
Variables in a script
SNZB-01 as event trigger
Installation on a Raspberry Pi4
Modbus failure
Filter "Already running" in logs
Trouble Connecting ESP32-WROOM-32
Input_number Template help
Using BME680 sensor with BSEC
Problema con automazione bluetooth
Help with conditional icon colour
🧯 ZHA - Xiaomi Cube Controller
Multiple IOS notifications through app
Switching on/off radiator with TRÅDFRI control, according to temperature of Aqara sensor
Dynamic gauge severity
Discovergy Power Meter
Mopeka Pro propane sensors via Bluetooth
MQTT to usable light entity (not autodiscoverred)
How to fix this template?
POW R2 sonoff
Does a motion detector need to see motion before it can report it doesn't see motion anymore?
Need help with sht31 code
Reed sensor in gasmeter - wrong consumption
Sensor for heating duration for one day or more
A switch stopped working
I need some help with my script (noob warning)
Sunrise/sunset help
Automation to react to "inactivity"
How to change a sensor to an "energy" sensor for energy dashboard
Get list of sensors that are open
Wifi multiple networks specific SSID
Dropdown Helper State Machine
Using variables in automations
Are there some ESP32 variants I should avoid for lack of support? (Newbie)
Temp sensor automation
Which is the best Weather integration for Australia
MDI icons availability
Using a variable in scripts with brightness_pct
Prevent Zigbee button from activating
PIR sensor directly connected to HA?
Why is Tasmota only showing states on select devices?
New to HA - general questions
Template help? Light brightness
[wait_for_trigger] is an invalid option for [script]
Trigger Automation with Mqtt Topic with json content
Energy export daily sensor not available
What am I doing wrong? (TTS with restore of previous state)
How to use select filter on a variable with unknown format?
AZ-Touch and ESP32
Newbie question - how do I install a community add-on, Nissan Leaf
AZ-Touch and ESP32
Issues with migration (I think)
Configuration invalid
MQTT Notify Automation help
Installing/using ESPHome
Trigger automation if action not seen in N hours
502: Bad Gateway for Zigbee2mqtt
Automation, compare sensor with numeric helper
Telegram Set-up since HA 2025.7.1
How to program delay from header toggle
How can I run my sprinkler script only on even-number days?
Home Assistance OS 2022.3.5 - very slow and unusable
Help with Network Manager
Installazione home assistant 2024.5
Slow to respond all of a sudden
MQTT Message value issue
ESP online but no entity
How to template a date time part of a sensor
ESP online but no entity
Use one line if it exists, but another if it doesn't
Confusion about how to automate state+ 2 times device to work
What is happened, half my addons are gone, omly official ones, where to find the others
Specific time and day set up?
Splitting text out of an entity attribute
OLED Display lambda function read home assistant sensor
Lovelace: Mini Media Player
Automation on boiler
Wall panel logs off
Home assistant yellow and docker compose frigate
Help on Calendar Event
Scheda con password
Hope someone here could help me with a contact sensor/ lock automation (all doors in 1 automation if possible)
Phänomen! Anmelden eines Homatic-Schaltaktors hm-lc-sw2pbu-fm in Raspimatc
Goodnight Automation? (Smartthings clone)
Home Assistant Community Add-on: Visual Studio Code
Binary template assessing the value of multiple valves - how to?
Formatting template sensor works in development tool but not in value_template
Screwed up http
Broadlink RM4 - trying to learn IR and RF codes via script
How can I set callback function for the cancel event of a script?
Need help to configure temp automation
Convert command_line to sensor time date
Hard Disk state
Zigbee2mqtt config
HLK-LD2410C with NODEMCU32 V.3 - EspHome
Tuya local
How to write a loop to detect the index of equal strings
Help with spacing in for loop template
Assistance for defining mqtt device using the new way described in 2022.6
Message malformed: Unable to determine action @ data['action'][0]
Prayer time
Automated dimming with level change
How to display the value of a sensor on a lcd display
SIM800l component
Automation/Template Switch?
Next day check for google calendar
Esp32 board not connecting
Generic MQTT notifications
Need help integrating a FoxESS H3 pro (Modbus)
Binary sensor not being updated from MQTT
Will this nighttime automation work?
Question: How to Use the Scheduler / Helper Function in the 2022.9 Release
ESPHome - Rotary encoder RPM in yaml
Not able to stop ESPHOME builder logging
Unavailable / Unknown Entity Monitoring - Template Sensor
UPS Power Consumption in the Energy Dashboard
Zigbee2mqtt devices not visible in HA mqtt
MQTT payload as input number
Use ESPHome with e-ink Displays to blend in with your home decor!
Why can't I see Zigbee devices under Zigbee Hub in HA?
Asking for help with creating "night light"
Helper "input_number" for lux limit
What am I doing wrong with Frigate
Uitlezen van opgewekte zonne energie - gebruikte energie
Icone color state
Why / How AI and HA
Create a new entity / sensor
Should I use an if-then automation to lock my vehicle?
Template - State_Class: total_increasing
Notification stopped working suddenly Ver 2024.7.3
Sistema allarme home assistant integrato co esp8266
Zwavejsmqtt set parameters not working
2022.10: All over the place
Reverse, invert logic 0 to 1
Home assistant disk full?
Mix template and statistics
HA Supervised - How to move from UNSUPPORTED to SUPPORTED
Calendar only working when "run"
Trouble getting HACS
Create energy overview
Method to simplify entity creation for duplicates?
Newbie question about schedule a lamp
[Custom Component] Tapo: Cameras Control
MQTT from Domoticz To Home-Assistant
Sunrise Trigger not firing HELP!
Samba share 1
Simplified limited permissions for user/time period
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Background image not displayed
ESPHome device shows offline but connected when I check my router
Не могу установить os-agent в HA
Error in automation snapshot from doorbell
Hue Like Light Card
GiB to TB convert - template?
Mosquitto error
Unique id dont work
Template with simple subtraction not working, but working with addition
tydom2MQTT addon :D - Delta Dore Tydom to MQTT Broker
Setup an automatic lights on when arriving
Common condition in three out of five choose options
🔹 Browser_mod - turn your browser into a controllable device, and a media_player
Setup lights for holiday colors
ZIGBEE2MQTT Error with Sonoff USB plus E Dongle
How to combine multiple automations into a single automation/blueprint?
List of dates how many times I was at a certain zone
ESPHOME ESP32 issue with motor controller
Unable to send Mobile Voice Notification Using Helpers
Use an input to set a value in a script
Automation for Random Hue Scene on Command
TRADFRI integration asking for HOST in HA or vise-versa
2012.4 failing to install
Error in automation snapshot from doorbell
Mushroom Cards Card Mod Styling/Config Guide
Daten von Sensoren aus D1Mini Speichern
Problems calling service (media player) in automation
Specify helpers in multiple yaml files
Script Not Firing - Service not found for call_service
Jewish Calendar no longer working
Need some help connecting two VL53LOX time of flight sensors to one ESP32
Is there a manual
Supervisor en RFLink
Creating an Beckhoff ADS Connection
How to use value_template to extract data from the sensors command
How to include long chunks of code that are used several places
[Custom Component] Tapo: Cameras Control
Home Assistant Automatic - Newbie- Automation
Having issue with REST sensor ( Update entity automation)
Utility_meter warning
Integration iClod läßt sich nicht löschen
[solved] Flapping states knx light card
Template if/else doesn't work anymore
Button simple click double click long press
Value template for scrape sensor
New in HA: Invalid config for [sensor]: required key not provided @ data['platform']. Got None
I can not assign error message
Setting brightness by MQTT
Want to help others? Leave your AI at the door
17track - add OutForDelivery as package status
Automation dont trigger
Binary Sensor Delay: can't get it to work
Automation with alias 'set_heating_thermostat' could not be validated and has been disabled:?
Package cronotermostato non riesco ad installarlo
Parse UTC time and display local time (with DST)
Automation for a cold night
What is wrong with this configuration?
Hikvision nvr setup
Midea branded AC’s with ESPhome (no cloud)
State chage not triggering automation
Templates - select attributes
ESPHome device shows offline but connected when I check my router
I need a button with an difrent entity for the on and of state
Template switch: only send "on/off" if not ALREADY on/off (e.g. avoid toggle)
Help with resizing and grouping picture-elements cards for 17 tanks
How to use Attribute and only Time Value
YAML VS. Lovelace
Read Photovoltaic Battery voltage charge
Help with historical values and changing icons
Display divided value of counter
Automation: add condition: Tesla navigation arrival time between 1-45 minutes
Splitting templates
Adding timestamp to maximum value of entity in a 24 hr period
Energy returned, but I don't have any "Return to grid"
ESPHome and 433mhz superheterodyne RF receiver
How can i fix
SmartIR - Control your Climate, TV and Fan devices via IR/RF controllers
Thermostat card turned off when there’s a power outage
HA Stürzt immer wieder ab
Tradfri sensor
YAML Code need optimising when Sensor not available
Setting up an Automation to toggle a kwick set lock
Notification reminder for to do list or shopping list
Regolazione luminosità tablet
Supervisor problem
Frontend Panel for Diabetics using a Dexcom CGM
Lights are turned off after a few minutes without any action
Bulb flickering issues after flashing ESPHome via Cloudcutter
My Automation only fires sometimes
Filodiffusione
Change closed garage color…
Help with sunrise and sunset
Demanding components list?
Installing Home Assistant Supervised using Debian 12
Basic template question - # value to text
Spa heater nordpool price -> heat/no heat automation, any advice? SOLVED!
Entity name used in trigger and condition?
Instant Update of Homeassistant Sensors in espHome
Says certificate has wrong date
Mushroon chips card with custom layout card
Disappearing automations
:window: Control de cerrado o apertura de puertas y ventanas
Rework Zone
Mosquitto not talking to Automation
Help with simple automation: type: turn_on
Esp8266 deep sleep interval
Ugreen bt adapter CM749
Mqtt Json ... help!
Ever Since Update, my home screen keeps looking like this
AC control is working using ESPHome and thermostat on dashboard, but how to automate?
Unable to get esphome loaded
Lovelace/Mushroom Display Issues
:vibration_mode: Appliance Notifications & Actions - Washing Machine - Clothes Dryer - Dish Washer - ETC
I need help installing ESP device on HA
Waste indicator sensor not in dashboard
Fun with custom:button-card
Automation template condition trouble
Toggle entities from a scene by reading the entity list from the scene
Connecting to HA locally using HTTPS
Need help pulling in json data from mqtt
Have a 4-channel relay board where all the relays have the same name. Need to rename them?
Pulling a time from a email with IMAP to automate
Point a to point b automation home assistant
Using helper value in automation?
App IOS y 2 H.A Green
📢 Notifications & Announcements
[Custom Component] Alarmo - browser managed alarm system
MQTT Discovery only fully detecting one ESPHome
Automation trigger with template and multiple value_json
Convert string to number
No stable wifi connection after reboot
Checking whether an automation is enabled/disabled in another automation
Automation failing - "running_script: false"
Email service not created
No /boot/config.txt
Cannot install or reinstall ESPHome with Atom Echo on HAOS
Zones have disappeared in 2024.6.4
Two automations not playing nice together
Denon integration volume in dB
Custom Component (values not published)
Create button with google assistant SDK
HAOS Is always locking up
Dutch gas prices addon
Cyclic updating of RaspberryMatic system variable with Home Assistant sensor value?
Need Help with a Value Statement
头一次安装遇到问题,求助大师们解决问题!
Instalace na Hyper-V
Toggle on Tasmota Light Switch Not Visible
Smart light bulb
Read Sensor with MQTT over internet, not working
Automation via conditions without a trigger
Several Alexa devices, repeating chime x times
CSS: Editing the basic parameter of the dashboard
Calendar (builtin) automation triggers but condition not working
Sensor template error
Ecobee Aux Heat Automation Trigger
Carsan Blinds
Hilfe bei EVCC und MQTT
Mqtt split json data to variables
Harmony Hub and delayed turning lights off with scene change help
How to switch of PC that's running HA linux via terminal command
Multiply two sensors after dividing the first one with 100
Problems with DS18B20 and ESP32
However, it appears as a device that does not support Zigbee devices
Mqtt automation send value calculation
Solar assistant
Need help with file editor error
Intégrer un planning dans un graphique
Reading the temperature of a Raspberry PI 4B 8GB running HASS
KNX value not equal to home assistant
Esphome binnary sensor delay
Multiple alarms playing different media at the same time
Help with energy sensor templates - Negative to positive
HTTP Get -> Sensor in Home Assistant
After sunset OR before sunrise
Need Max Value for the day
Adding To Do Lists - Today
I can install esp-01 but it doesn't work
Energy Dashboard - can´t add Water consumption
Pulling Json Attributes into Sensor Attributes
Rains in next 6 hours
Automation is not available
Help ! when I have lost data it writes the error will not save
Fixed Dashboard Size
And NOT Condition
Simply "above or equal" conditions
Unable to access HA from internal network by HTTP
Kan use some help on conbee 3
HA just died
Button colours not appearing on dashboard
Need help with automation using focus mode
Automation to list all scenes in area, and add these to an input select
Trying to use date/time for longer waits in an automation
Width Of sections
No Back in HACS
Dynamic MQTT state_topic
ESP automatically disconnects
Trouble Understanding Platforms
[Custom Component] Tapo: Cameras Control
Dewenwils integration
Issue When Switching Color Temperature on LED Lamps
Teletonika RUTx50
How about combining AI and sensors in smart bathroom mirrors?
UPS recommendation
ESPHome call Service - SOLVED
Garage Door code giving me problems
Automations stoped working after update
Logic for a Bathroom Fan/Light
Data: message > if/elif to modify message based on trigger.calendar_event.summary
Error at my first script
Frigate config confusion
Life360 Device Tracker Platform
Tapo Hacs Camera integration
Logitech Squeezebox - examples of how to use the API in HA
Template to calculate barometric pressure (QFF)
Toggle lights based on a MQTT text msg
Script not saving after editing in yaml
Join does'nt work as expected
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Automation conditional step blocks further execution, weirdness
Default yaml config issue
[Mealie] - Sync Shopping List as HA-ToDo List
How do i _POST a state via rest_command?
Error with greater than
Connecting to Emporia Vue
Modbus Heatpump Gonzik
Kalender über die ganze Seite
Shutters and Scene with KNX
New Device - cannot and connect to HA ("Can't connect to ESP. Please make sure your YAML file contains an 'api:' line.")
Slider to Sensor
ESP32 SSD1306 128x64 not connecting
Home assistant Crashing
Backup restore white screen
Switch 6Ghz WLAN
Nextion, change color button
In Alert call script via notify
MQTT update implementation help
SMA W into kW and . into , and add 2. PV
Using homeassistant.service notify in script with parameters do not pass the text message
🔹 Card-mod - Add css styles to any lovelace card
Use Trigger Data in automation Action
Send an notification of an entity value on specific time
Honeywell Total Connect Comfort (US) with TH6320R1004
Installation on Qnap NAS
Mushroom template card, show sensor value in secondary information
Trying to clean up storage as HA says I have 0% storage left
Automation to retrieve and Publish hourly weather
Calendar (local) trigger
Unable to configure the philips hue sensor to automate my lights
Using variables for Ikea light bulb in automations
So, I've done something to fully kiosk
Using ELK Motion to trigger Zwave Switch
Communication between two ESPs that is not WIFI
Giving the sum of entity values to helper in automation
Communication between two ESPs that is not WIFI
ESPHome question
How to stop an automation once a condition is met (when a door is changed from open to closed)
Template in action... Missed comma?
Highest Security None
Anyone can please support -
Anyone can please support -
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
No external acces with a reverse proxy (synology) but ok in internal (closed)
Lights wont turn off
Calibration settings for YF-B10 pulse counter?
Cannot connect to HA from Pc
Zigbee2Mqtt Power_on_behavior
How to use arithmetic to do subtraction and addition in the home assistant template,
How can I change the font/font size for the units?
Imou cameras integration
Would appreciate any help with Harmony script
Solved. Adding "assumed_state: false" to command line switch breaks entity
⚪ Bubble Card - A minimalist card collection for Home Assistant with a nice pop-up touch
Problems with entity id's and state change
Don,t work this configuration
Action to dial a specific number for iOS
Getting date time stamp logged
Conditional / If-Then-Else ? How to proceed
Turn light on based on Lux value
Detected blocking call to open with args
Glance Card with 3 different calendar events?
Need help with a combination of 2 automations
Error rendering data template: UndefinedError: None has no element 0
"Translation Error" in automation with Bosch Smart Home Switch
LG webOS: expose whether TV is on Home screen
Cambio de sofware a sonoff dongle plus P
Alarmo instalation
HA on RPi5 shut down
Onvif integration shows inactive for Imou camera
Doing different things in script, depending on who called it
You have 1 second bug or new limitation?
Help, relay pins for ESP32 4 -Relay board
Calculation with Template Sensors
29 / 5.000 consumption recording sensors
2024.5: Just a little bit smaller
Dummy temp sensor for swimming pool
PV surplus for my tesla
Instable integration with KlikaanKlikuit using the RFLink Gateway and an Arduino
Script for my airco in HA
Can apexcharts-card handle graphing time properly
Rest sensor syntax error
Actions stop if group has entity offline after 24.10
How to set a date and time trigger
Optional Input in Blueprints
Test of a blueprint
🖼️ WallPanel Addon - Wall panel mode for your Home Assistant Dashboards
A Way To Store `color_threshold:` As A Variable
GERMAN Youtube channel with tutorials
Map Card configuration Entitles
Apple Home updates
Tuya Plug Energy Monitoring
Help with automation in YAML. Beginner.
Graph sensors don't work
Proper Way To Ask Questions and Community Etiquette
Modbus help - write a register with calculated value
RPi fan not accessible in "HA startup" after update to 2024.8.2
Get all AC units that have been on for some time
Remote user access for other user
History_stats counts time in wrong state
Modulo funtion to trigger automation for a EMS with a SMA inverter
Is this Possible
Esphome black screen
New cards button not working for automation
Use automation to set an entity's value based on input from another template sensor
Fancontroller based on Temperatur
Esphome ir remote climate receiver support for Gree AC
Ls /dev/ttyACM*
Battery sensor update frequency
Slimme lezer en capaciteitstarief
User based device/entity/automations/scripts/etc. access
Need help to configure MQTT & ESP32 power comsumption reporting
Trying to trigger an action based on the sequence of two contact sensors opening or not opening
If kitchen sensor already has lights on, button does not work
Question : Home Assistant Optimization and Reinstallation Considerations
Sony Bravia TV Integration Local Polling
Integration error: resources - Integration 'resources' not found
Help with Multi-Device Automation for Two Buttons with Three Press Types Each
No sensor update with Remote Home Assistant
Script variables (fields) default value error (expected float for dictionary value)
Change variable for MySensors
Change Attribute of a timer
SmartWings
HA Update Entity help
3d floor plan with probable code compilation error
Dawn state trigger not executing wait trigger for sun elevation state
Wifi uitbreiding op RaspPI4 met HA OS d.m.v.: Archer T2U Plus V1
Help for air purifier automation
Section height and web page using iframe
History Statistic Sensor: Max value is same as previous day (if today is lower than yesterday)
Help, automation doesn't work how can i fix it?
Frient (Develco) smoke detector temperature data
ESP is not connected to turn off the safety relay
Using template generated list of device_id in action service
Is there a more elegant way to template this?
'Sensor notes' integration thoughts
How to add device to Zigbee2MQTT
Can I add an Insteon Motion Sensor & how?
Message malformed: extra keys not allowed @ data['automation'] - error
Calculations in a script
Need the process to implement two buttons to send commands through tcp
HA Broken, Unable to restore from backup
Unable to connect to NodeMCU esp2866 with mDNS errors
I need help,please
Accidental switch off Sonoff S26 smart plug
How to use two triggers at the same time? - Trigger1 AND trigger2 -
Calling a script from an automation is not executed
Xiaomi Miio: Mi Robot Vacuum Error Status
Counting number of sensors below a certain number
How to control a relay based on GPIOs states
Getting started tutorial
How does ESPHome differ from Home Assistant in parsing YAML files?
Will energy consumption be synchronized with Home Assistant?
Collect Inverter data from Solarman API
Raise shutters at sunrise, but not when I am home, and no earlier than 7am
Cannot configure Zigbee2MQTT
Migrating my RV HA installation
Notifications to the phone will not be displayed until it is unlocked
HVAC Runtime code
Changing template sensor icon based on state [UI Helper]
No working the app in Finland
Creating "floors" and "areas" inherently unreliable?
Cannot get Person Detection to work with Home Assistant for a AQARA FP300 sensor using ZigbeeMQTT integration integrate the devvice
Endless cycle to turn on/off any switch in ha
Stable room temperature with airconditioner with external temperature sensor
How to use variables in automaton (Message malformed)?
Error in describing condition: e is not iterable
Yaml file config problems
Play Music to Google Nest
Fluid Level (Animated) Background Card [original]
MQTT Device not sending necessary Informations
What am i doing wrong in ESPHome (Sensor Conversions)
Home assistant reboot every 10 minutes
Why does my Generic Thermostat (with Zigbee Thermostat and plug) ignore maximum runtime setting once a day?
Aqara FP300 Z2MQTT
Beginners' / newbies' section or guidance?
Mark a sensor that has not updated in a while
Why I can't reach the Home Assistant Cloud
Error in climate programming code
Understanding the action CHOOSE
MQTT trigger wont trigger timer
Lanbon L9 LCD Smart Light Switch with Motion Sensor
Motion detection in Home Assistant
Help please - trying to calculate a number for number.set_value
ESP Home Smart plug not connecting to ESP Home API
Home Assistant Assist through Alexa (skill)
ESP Bluetooth Proxy
GUITION 4" 480x480 ESP32-S3-4848S040 Smart Display with LVGL
Steinel IS140-2
Question about frequency on the compressor
Failure in communication
Adminrechte
Netatmo camera: non working sensor
Problem with configuration.yaml files in the home assistant
New Home Assistant entities not appearing in Alexa discovery (existing entities work fine)
Assist - how to use 'lists' function in custom intents
Problem with uart communication on esp32-s3 16r8
How to disable illegal DNS servers?
Maxi Media Player
The Add-on ESPHome Device Builder was removed from Add-on Store! Why?
List of vulnerabilities (CVEs)
Python-kasa YAML
Problem with configuration.yaml files in the home assistant
Rassbery pi
EACHEN eWelink wifi relay not working with HA
Getting data from the Solis inverter using API keys
Using sensor as label value
Notifications on yolink speaker come twice
Reolink Hub - want to change reolink scenes based on time
Sonoff 31 defaults to off position
Can't flash program
Operating system
How to disable this buttons from default area card?
[Resolved] ZigBeeToMQTT SonOff ZBDongle-E installation fails with new OnBoarding interface
ESPHome + ESP32 as Modbus RTU Slave — Control Relay via Coil Write
Assistance in solving calendar notifications to Google Speaker
Move proxmox HA-OS to dedicated PC
Several RestAPI Calls to different Solax Inverters
MQTT Topic defintion
HA/Zigbee coordinator question
Installing HA on SSD; works till I need to enter my credentials
Use PeakFinder for exact sunrise/sunset hours
Device in templates.yaml
Device in templates.yaml
2026.7: Automations that speak your language
When I boot up home assistant it won’t load
Trying to understand when Sunset Ends for my Automation
Auto-entities With Entities and Combined Filters
HACS / Fail using mini graph Card
Issues with Blueprint automations running
Goodnight routine
Try to get an Automation but get fault code
My TTS Speak Automations are not working
Save entity value to helper (datetime)
Home Assistant Cookbook - Discussion Thread
MQTT Device ID / NAME Conversion
SGP41 air quality sensor
Impossible to start zigbee2mqtt in LXC container
Unifi Protect Cameras - Motion not being detected
Home Battery System VICTRON in Energy dashboard HomeAssistant not working properly
Need help for scripts for activate/deactivate devices in ha
[solved] (I was the issue) Unable to update from 2025.6.3 to 2025.7.0
Value template from a response variable
How to control Samsung "smart" tv
Update to 2025.7.1 does not work
Clickable link to image file not work working in HAS Companion app
Todays To-Do via TTS
Compiling with Analog Sensor
No sensor data via REST from Shelly for 3 days
Weather integrations showing wrong state?
Zigbee2mqtt configuration
Test speaker
Activating HACS is driving me mad!
Dynamic colors
Automation does not start: Help me
Custom:tiles-card
Zigbee2MQTT crashing every day
Please help, banging head against wall!
Update Template sensor with a variable sensor from a fixed value
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
HA Restart
Home Assistant core running out of memory
HELP. HA does not start
Not all of my knx sensor values are available as entity
Fix PowerView cover crash when shade position is unavailable #171471
Can I test in ui while loop if calendar event is active?
Home Assistant on Banana Pi BPI-M2 1 GB RAM?
Need to send initial data on startup and then only upon meeting a threshold
Filtering Treshold helper
Looking for someone who can help me with a project
Mqtt bizarre data in HA
I spend long time (4h) installation but it a not completed
Message malformed: expected str for dictionary value @ data['triggers'][0]['platform']
Where can I report FR to HACS?
I am lost with my HA configuration
Combine Automation for on/off (MQTT) in one button
After upgrade esphome 2025.11.1
Configuring Hikvision camera
Template yaml if temperature questionary problem
Sensor not available with no error
Setting a value in an entity via yaml
Switch entity lables doesn't work in automation
New Zigbee2MQTT configuration
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Help with input_number helper and setting presets in climate control
Modbus Switch Polling
Z-Wave JS keeps crashing - please look at my logs
HA vpe- failed config
Using Microsoft Copilot to Create zwave JS automation YAML - Seasonal Lighting
Hidden reCAPTCHA on Novafos smart water meter
Killed my HA setup?
A welcome to a newcomer that didn't post in English
Cannot get my ESP32 C-3 to show up in devices list
Unable to connect to server. Domain: Home Assistant. Onboarding Auth Error Code: 1 URL
Creating an Automation that activates an inching relay at a set time for a set period
Home Assistant starts very slowly
Shell_command "duplicated mapping key" but no duplicate?
Home Assistant Newbie: Navigating the Forums & Alexa Won't Turn Off the Right Lamp Or Doesn't Recognize the Skill
The NEW LOCAL REBUILD
Automation broken
Telegram bot changes - Target parameter removed
Getting started with Broadlink RM4 Pro
Home Assistant stops working completely after upgrade from 2026.2.3
Solved:Is the send email service servered or not?
No history for specific entity
Zigbee2mqtt setup issues
The NEW LOCAL REBUILD
SONOFF SNZB-01P switch problem
Error 403 when HA
Tado doesn't work
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Removal of legacy template entities in 2026.6
Play spotify playlist
Repair Issue - App InfluxDB has been removed from the repository
MQTT, probaly asked 1000 times
Mqtt.publish works from Developer Tools but not from automations (HA → Mosquitto → Domoticz)
Sonoff RF Bridge. Strategies for receiving data
ESPHome & MQTT: No Long term statistics
Change icon on state change of other entity
Opening and Closing state of Roller Shutter
Toggle Switch Trigger Automation
Need some help with my automation
Question on difference running hass -c or systemctl
Sensor template working in Developer Tools create error in configuration. yaml
Sensor template error
KeyMaster Z-Wave lock manager and scheduler
Automation UI, Sun and Time
MQTT binary sensor from JSON
Dutch gas prices addon
Mqtt connection trouble
MQTT triggered automation keeps trigering forever
Can I update Home Assistant via Docker?
Will not install on a clean OS
Beginner needs support
IFTTT - Automation with unsupported action
Aeotec Z-Stick Gen5
ESPHOME logger.log format
Automation problema
NUT add-on configuraton problem
Automation to turn on the dishwasher/washing machine with PV (solar power)
Integración de Alarmas Oysta
Life360 update 0.95.4
Brand new user , trying to add something in HASS.IO
Call input_boolean
Automation not loading, but it activates the trigger
Device/Entity Naming Standards / Best Practices
Cannot get simple automation to work correctly
Debugging Unresponsive Home Assistant
Negative time on screen
History overcrowded
Bosch Thermostat
Reset Aeotec Z-stick, and now Home Assistant won't start
Trouble using a 'device_id' field in a script, works for other types of field
Problem on Pyton 3.7 upgrade
PACKAGES folder system
How to re-enable an entity?
Attribute extraction issue
Light brightness decrease after off, need help
Need some help with automation!
Problems with trigger variable in targets
Help with json
Lovelace: Mini Media Player
RG15 Optical rain gauge
Controlling my wired lights with relay board
Using sensor state in email notification
Sun below horizon = lamp on?
Get only a part of a attribute
State unknown
Raspberry Pi 4 Model B temperature
'No card type configured' using !include on a conditional card
While loop in value_template in template switch
0.111: Frontend loaded sooner, Elexa Guardian, Unify Circuit, Acmeda
Media interrupt by notification and resume [condition]
Configurating HmIP-RFUSB to talk to Homematic devices
Motion sensor lighting with manual override
Motion based automation triggering light incorrectly
2021.12: New configuration menu, the button entity, and gorgeous area cards!
Zwave not working with 0.107.0
After updating to HA 2020.12.2, many integrations no longer work
How to configure weather forecast in configuration.yaml
[Solved] First Saturday of month
Group not added?
Trying automation with sonoff water sensor and Hue light
Automation on leaving home zone I can't get it to work
Using NFC tag last scanned in templates
Should I go there? Whole house audio and then some
Mosquitto MQTT broken not authorised
Automation problem - Aqara switch wireless
Motion light off failing
Message malformed: extra keys not allowed @ data['sensor']
Cloud could not be set up
Counting a trigger
Haaska su home assistant errore duckdns
Hue random color effect not supported anymore?
How to distinguish between multiple Switches of the same Model
CC2531 keeps disconnecting
Showing more than 1 calculated value from same output ESP8266
Say a random phraze
Delimiter entity
Automation trigger on sunrise but only past 8
Packages VMC Helty Flow
REST sensors do not handle array JSON reply bodies
I can not add a service in configuration.yaml and see it in the home
Need help with AC voltage detection
Passing password (from text input) to command
Invalid config 0.112.1
How do I fix this?
Home assistant wont restart with ssl certificate
Scenes, Groups, etc,, all are not showing anywhere in the UI, but are being created in the appropriate files
Using one switch device to trigger another via MQTT revisited
Smartthings SetUp
Lovelace: Bringing back entity-filter (monster-card)
Notify Mobile App sound Automation
Tuya switch configuration
Unable to get fresh install to work
Alexa addon
Automower husqvarna
Cannot define any - platform statement behind sensor:
A newbee here very confused
Automation on sonoff t1 2 gang
How running Automation with 2 trigger
Automation fires 1 hour after the specified time
Browser connection unavailable
WeeWX, MQTT and how to import Data
RTL_433 to MQTT Bridge and multiprotocol
Check Battery Level for Door Sensors
TTS clear after sending
Autonomation, from form
Step names and aliasses in trace view of automations and scripts
Request for help with multiple configuration entries for the same platform
Configuration error with Harmony remote
Lovelace Gauge card
Shelly Cloud - new Component? How to implement it? API is available
Help with remote GPIO
Automation with physically turned off Lamps
Ping device tracker
Why my switches are in unused entities and not in home page?
Upgrading home assistant error
Koogeek DW1 BLE
Please set SONOFF basic
Struggling to get automation to set Globe color
Platform not found: sensor.date_countdown
Switch.yaml
How to program 433 remote using raspberry
DHT device on Raspberry GPIO - Not detected? error in logs
Rest command send state in url
Switch telnet - acionamento de reles via telnet
Preparing Hassio forever
Manipulating sensor output display to match unit of measurement
Adding a test script into UI Lovelace
Scene.turn_on trigger not triggering
Has the BoM sensor failed for anyone else?
Unable to complete update to 0.92.0
Figure out time remaining
Binary template for plant moisture
Custom timed event entity state please help
Hassio dont conect
Google Sheets Problems
Got a new tuya door bell
MySensors - USB gateway - No devices could be setup
ZigBee is not longer working
Can I use a template in a SMTP image attachments?
Mqtt - entity is non numeric
Subiew triggered by an event
ESPHome BLE Tracker Hub not showing HA App UUID?
Restart Switches by Home Assistant
Help with remote GPIO
Custom Dark Sky Animated Weather Card
Update won't work
Lovelace: Bar Card
Scrape information from car sell website
GeoSphere Austria (ZAMG) - Weather Forecast
Upgrading home assistant error
ESPHome device recognized but no entities are found
OZW_log.txt remains empty
Problems with the UI and updater
Prowl Install Fail
2 Automation on same " Actions"
[monitor] Reliable, Multi-User, Distributed Bluetooth Occupancy/Presence Detection
How to change brightness of devices part of group that are on
Can't transmit ESPHOME IR command I set up 3 days but failed Help me
Window shutters
Http: in configuration.yaml causes duckdns and login issues
Link to site
Fully kosk and slider problem
Temperature automation not triggering
Scrape 123solar
MQTT Publishing
Database Files to usb hassio
Python upgrade
[NOOB] How to add a cc2531 to HA in een VM
Calculate on time and control a wall plug
Dlib Automationi
Binary sensor status not updating
Low-Powered Viewer: "custom element doesn't exist"
User_ID Null?
Device tracker not working after upgrade to Hassio 0.94
USPS config issue
Add a "mutex" automation helper
Combine values of three sensor
Need help for custom button
Persons reporting unknown
Google Assistant voice command do not works
Combine values of three sensor
Automation switch on randomly
Device tracker not working after upgrade to Hassio 0.94
Hassio MQTT problems
Blink a light when someone new follow me on instagram (no ifttt)
Automation Condtions
Automation based on value from sensor
Can't install docker-compose
Automation toubles, they did work now they dont
Sonoff /eWeLink component for original firmware
Electrical price , switch on/off
Ssh command fails
Using trigger in a value_template condition
Add switch only shows battery status
Distance Sensor to show if car is home or away
Just turn_off light with a xiaomi binary_sensor
Node.js installation help on hassio
iTach and Sony TV
Automation needs to join a text value and a variable when the luminescence changes
Clima automation
Extract data from a sensor and pass it to a message
Esp32 Cam - help connect to network
No Pip? No Platformio?
Installed and no progress at all lovelace cards yaml ui
HA won't let me access 192.168.(local):8123
Rete Bus seriale HA con raspberry e d1mini
Help me, Obi-Wan
Set time of a light to turn on and off
Home assistant doesn't open on raspberry suddenly
MQTT sensor does not allow state_class
Enphase solar
Esp32 Cam - help connect to network
Thermostat Scene
Track people's( devices) presence per country?
Sensor Season
Help filtering highest values from Sensor results
Is there a HA input item to set a date range?
Problem with sensor set
EPS8266-01 in Home Assistant - Problem
Help : error syntax script json
MQTT working except ALL Services run but *do nothing*
Combine on and off into the same automation
Help needed now
Lovelace: Mini Media Player
Node red challenge
Ubuntu + Z-Wave (Z-Wave.Me – UZB (Gen 5))
Recorder exclude config not working or being ignored
Sonoff /eWeLink component for original firmware
0.95: AdGuard, Life360, Plaato Airlock
Sonoff Slampher and Sonoff PIR Integration
I am unable to Log In to my cctv, as my Login and Password is not recognized. What can I do?
Esp32 Cam - help connect to network
Difference between 2 energy sensors
0.93: Essent, AmbiClimate, VS Code debugging
Exchange True and False to Anwesend und Abwesend
Home Assistant: Send SMS message when MQTT topic changes to specific value
Motion Detector with YAMA (Yet Another Motion Automation)
EVCC integration via MQTT (sensor entity config)
Nmap setup
Daikin Aircon Automation
Can only turn on and off LG tv in HomeKit using Home Assistant
Call entity from another integration in espHome .yaml
ESPHome MAX6675 Component problems - Solved
Delay in template switch
Can I use a math function with an input number
My all automations is inactive
Need Help with a Automation, if Powerusage is below
Sonos How to loop through and play favorite list
Can I set a volume level for automations on my AVR receiver (media_player.mrx_1120)
EspEasy MQTT issues
Automation Begin
Roller blind using hall effect pulse sensor
Sonoff T1-1 problem
Upgrade failed
Error in[homeassistant.components.device_tracker]
Command line switch not working since 0.94.X
Button navigate path not working
Alarm_control_panel "Does not have unique ID"
SMA Inverter + Home Manager 2.0
Benutzerpasswort und Anmeldename vergessen
0.95: AdGuard, Life360, Plaato Airlock
Failed to install Hassio on Archlinuxarm
Mold indicator unavailable (What am i doing wrong)_Newby
Automation with multiple entity_id in action
HassOS Image not working on NUC 2TB SSD
Refused to connect after update
Shutter close sensor control
Sonoff /eWeLink component for original firmware
Blue Connect pool measurements
Markdown card doesn't work
How to power down the system gracefully
Help! trigger automation if only another automation triggered or if manual switch not turned on?
How do I setup in configuration.yaml to make the automation of motion sensor stop in a specific time of the day
Security alarm Messages
Home assistant (Rpi3) and room assistant on 2x PiZero - configuration issues using a cluster
Alert not working
New user from Arizona
Problem with sensor set
2 Garage Doors and Visual Alert automation not working
Start an automation 30 minutes before sunset IF ambient light levels are low
Can I reformat teh way time is displayed in an entity
How to make the effect name different from the Json command it send's
Motioneye google drive upload stop working
Add input_boolean from homeassistant
Can't get generic thermostat to work at all
Value template regular expression
Logically inverting state argument
Impossible to reach frontend after reinstalling, need expert help!
Monitor users activities
Can't get shelly mqtt entities in to Raspberry pi4
Xiaomi aqara not working in Hass.io
Action chose wont execute trigger when holding state logic is added
Leaving Home Assistant, not worth the headaches!
Help with automation night lights
ESP8266 code to use pins D4 & D8 as switch
Automation stops working when some Entity IDs is added
Zooz ZSE29 - Automation with HA
ESp8266-01 and DHT11 board - configuration question
"wait_boot": 600
Temperature sensor template log TypeError: unsupported operand type(s) for -: 'float' and 'NoneType'
Hassio is broken?
On/off switch in Lovelace
Template sensor shows as 'Unavailable'
How to add BLE and get it value to Hassio?
Device_tracker using MQTT
Esphome & Hassio - Unkown errors
How to call media_player volume set from python script?
Google Calendar Automation Help
Help with host
Lights goes on without any command
Switch Timer Automation
Switch Timer Automation
Automation when electric car has finished charging
Wrong value of last_updated and last_changed of xiaomi binary sensor
Emergency help needed
Emergency help needed
Aqara vibration sensor availability sensor
Motion sensor help
Emergency help needed
Met.no automation & creating sensor template
Help needed. I want to reboot Raspberry Pi when entity disappears but fails
Automation how to set climate set-point via input_number.* helper?
Lost configuration
Need help with the below error code
Timer Automations using Automations Editor
How to read or write into a Helper out of an esphome yaml-script?
Fail to enable remote Access with DuckDNS
MQTT not working 0.98.4 > 0.98.5 UPGRADE
How do I get Tuya working on my Home Assistant?
What is up with my Hassio file directory?
Cannot load UI
Stuck on the basics
2021.6: A little bit of everything
Action Delay doesn't works if the delay is more than 10 hours
Configuration template for date range xmas lights
Lovelace - I don't know how to add new cards
Question zigbee2mqtt - about unsupported device
Access shell from windows
Notify when alarm is triggered
Mqtt publish_json how to convert sensor.state in string
Newbie - trigger function
Make a group
Ver 0.99.2 Bradlink component problem
Owntracks Cell Phone Location
WIthings config
Please help getting motion sensor set up
Need help with a example with temp in notification
Running random times en scripts in automation
ZIGBEE.DB error 'utf-8' codec can't decode byte 0xac in position 27: invalid start byte
Parse data from one sensor to another
Unable to connect SMA inverter
Condition fails
Condition fails
Sensor updated to binary.sensor and now not automatically triggering automation in 99
Can't get delay to work
I m new hassio stucked in my first code and stucked for 3 hours...need guidance
Energy management using MQTT data
External Switch Button to turn light on or off (service template? script? Other)?
USB not working on raspberry pi CM4
Configure template sensor
Using SNMP on variable (switching) oids
Chicken eggs!
Needs some help parsing JSON
ESP Home code
Entity not available: media_player
Custom card general question
ESPHome Smart Mailbox
Turn off a switch after 3 hours after it was turned on
Is there any basic tutorial on Hassio?
Error during setup of component camera
Ssl cert error in config
New devices: HomeKit Accessory
Home Assistant not updating disconnected sensor data
Looking for help on power calculation with negative values
Sonoff Basic with reed switch
Change theme on switch.lights state change
Motorized Waterspray project
How can i do? Login?
Xiaomi gateway sensors not communicate with HA
MQTT Payload sensor problem
Zigbee2mqtt: show the networkmap in home assistant
安装ha时遇到不能启动?
Local Home assistant
Call service don't show service names
Strange behaviour of the supervisor
Help with MAX sensor value
Use sensor from Buienradar to automate zonnenscherm (Awning)
Configuration yaml error
Need help with Condition For
Sleep for script
ESPHome support for PA-210WYS CH4 Gas Leak alarm
Switch from attribute state
Arrive at home + driving automation
Cant seem to get custom card icon color to work right
Invalid config for [automation]: Invalid time specified: 749 @ data['trigger'][0]['at'][0]. Got None
Simple automation for email action integration not found
Ho installato Home Assistant su Raspberry, da un pc risponde al ping ma non apre la pagina web
Garage Door Cover with Homematic IP Components
Automation not working with climate
Expected a dictionary on INA3221 PlatForm
Change icon base on state
Lovelace Media Art Background Help
"NOT" in conditions?
***NEWB** IFTTT motion on camera webhook to HA TTS for Google
Nodon Octan Remote (How to)
Need help for Pump Control
Grove 4way relay using esphome
Missing database - where is it?
Impossible configure DuckDNS
Logbook almost always broken
Esp32 cam ov2640
Inverter State Integer Value to Text Not Wokring
Template sensor possible of this?
Somos join
Configuration appareil
TTGO-cam: ... reading incoming messages: Error while receiving data: [Errno 104] Connection reset by peer
Sonoff Countdown Timer
Any Support for Midea A/C?
Problem with Binary_Sensor for use of mqtt
Climate object attributes not available yet during Python startup script
Check if power is negative
Invalid config - automation. Logs show line ??
Change default cover icons
Check if power is negative
Nissan Leaf Component(s)/Platform
Timestamp calculation for automation
Script to resume Google Cast devices after they have been interrupted by any action
Convert kW tot Watt
Quick question about template sensor
The future of YAML
Cannot compile
Time controlled write value of a sensor into variable
First automation re: z-wave PIR and z-wave dimmer
Climate esphome
HACS integration issue1
Installazione Hassio su Rasberry
Automation that checks for is doors are open before going to bed
Switches turning on and off randomly
Is Multi line Automation Message possible?
Help with a sensor (i think)
Hacking the XiaomiFang Wifi camera
Zwave dongle - device descriptor read/64, error -32 odroid C2
Esp Home API disconnects
0.108: Logos, Area Pages, Lovelace Entity Card, Lovelace Map History
Restore last state
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Climate esphome
Zigbee2mqtt: show the networkmap in home assistant
MQTT Sensor outputting payload in apostrophes
A different take on designing a Lovelace UI
Integrating Hyundai Bluelink but working with Curl
0.106: Light brightness stepping, better Safe Mode and person dialog
Lovelace: Button card
How to use variables within a conditional
Can someone help me with automation Milight remote dimming Philips Hue lights
I need some help with ESPHome, uart port and a Windsonic anemonemeter
Still the same problem
Manual Solar to EV Automation
Extra keys not allowed @ data['customize']['service']
Help with writing script
Tuya motion sensors
Question regarding announcements
Error connecting mysenssor serialGateway to Bed Occupancy with homeassistant
ESP32 BLE Sniffer for presence detection
Xiaomi human body problem - how to fix it
Configuring an automation trigger for HASS shutdown
Integrating sensor values into a curl statement
Manufacturer Recognition
Google Calender - Automation - Homeoffice Tracking
Esp8266 D1 LED strip not working
How to set this particular door light automation using timer features
Adding two scenes into one
Value template works in Dev tools but error in config
How to get the Green Bar to show?
Samsung TV integration - we need to talk!
Activating Scene At Sun Elevation Angle
Shelly Wifi Door and Window Sensors Review
Lost PC access
Third question...this time serious Sonoff Dongle-E and Zigbee2Mqtt
Gpio not work
How do I show timestamps for the two states of the one switch?
Help Template Light with Switch
iTach Wifi2IR way to use with home assistant
Custom temperature sensor
Two automations not turning on/off lights
Input_boolean condtion in automation does not work anymore
Replacing a tasmota socket for a constant W and converting that to kWh
Google Home yaml
Some problems
Integrating AC IRremote and Boiler opentherm control in home assistant
Please help/ invalid cofig without making changes!
NTC Thermistor with Esphome
❱ Plex Assistant
Cant get automations to run
Automation - Template error on recalling a scene
[On Hold] Deprecating Home Assistant Supervised on generic Linux
Add more than one IR command to remote yaml file?
Home Assistant is slow
A subtraction of 2 sensor values in a Lovelace Gauge card
110 release internal/external url
Ha 110 no longer supports custom-ui?
Time used in the client when away from Home
Node Red service node doesn't seem to communicate with home assistant
The MAC address changes on every reboot on Raspbian Lite after installing Home Assistant
Climate HVAC mode Condition not working
HA change light color if weather forecast changes
Help with platform: template
Have i bricked my first device ? Deltaco SH-P01
Automation MQTT light entity triggering immediately
Aeotec multisensor temperature reporting threshold incorrect
Snapshot from ezviz camera when doorbell go’s
Esp8266 ans dzVents script (from domoticz) to homeassistant
How to control Multiple devices throw wake on lan
I m new hassio stucked in my first code and stucked for 3 hours...need guidance
Getting error “t.entity is undefined” with the plugin "slider-entity-row"
Metrics: how to access advanced integration, Supervisor and HA internal information
Caldav - Calendar sensor shows only appointments which are 24h in the future!
Delete this message
Configure Sprinklers
Insteon Cover, HOW to setup a stop button on HA?
Hassio ZHA - Add through integrations not configuration.yaml
Subscribe to a mqtt topic
What might cause all clients on the built in hass.io MQTT broker to disconnect?
No data, strange
Loading locked with "Home Assistant is starting, not everything will be available until it is finished."
Struggling with turning lights on automation
Sensor for the sum of the values of two sensors
New light bulb do not get added auto to the light card on my dashboard
What's wrong
Multiple Vera Hubs
I really do want to like HA but
Nothing seems to work
Run script based on slider percentage
Clone/Sync/Slave two matching Zigbee Switches
0.115: B-Day release! Media browser, tags, automations & WTH
Set the web url in web card dynamically
Media Browser support for iTunes
Esphome & nextion tft lcd
Went i press the Switch to ON the relay go to OFF
Paid setup help needed
Automaction that repeats x times per day
Paid Consultants for Home Security Platform?
Install complete
Function "Or" and "AND", not working with mobile devices
Unable to find the configuration error
Time difference between previous sensor update
Configuration relay board type R421A08 - RS485 MODBUS RTU
Running a shell command from Home Assistant to remote linux PC
Need help logic
How to save a Variable, triggered by an event
Can't start vaccum based on actionable notifications android
Error setting up entry Z-Wave
Thermostat entity change whit home assistant update
Struggling to combine a template sensor with an automation
Trying to convert kb/s sent to Mb/s sent
Floureon c17
Rest API is slow
How to notify all events in Google Calendar?
"Required key not provided" (binary_sensor automation created using Lovelace UI)
How to check when script was last triggered
Image in Media Browser on Picture Card
Q: Motion Lights automatio
[Custom Component] Tapo: Cameras Control
No Card Type Found - Mini Media Player
Supervisor suddenly not loading
Unable to import a tasmotized Sonoff into Home Assistant via ESPHome
Checking window covers postion in group atomation
Cannot trigger via group state
"Required key not provided" (binary_sensor automation created using Lovelace UI)
Counting operating hours under conditions
Switch lights off when last person leaves
MQTT / sensor help needed
Using templates in script and modbus.write_register
Trigger an automation based on time sensor with offset of few seconds
Can we revisit the move to qt-openzwave?
I tried all the camera platforms so you don't have to
Xuaimi_aqara.click to control xiaomi fan.zhimi_fan_v2 Fan On and Off
Toggle light based on weather condition with openweathermap
Control the air conditioner
Strange things going on
Device trackers always showing not_home despite being used
Execute an action when nobody is home, how?
Anfänger Fragen
Daylight savings template condition
After: ?variable? (yaml)
User based permission [Solved]
All lights in area on at dusk
Variables not resolving
Problem with Water Meter
MUE4094RT Philips Xiaomi Motion Sensor
Declutter template
First in a list of dates?
ZigStar - ZigBee Coordinators and Routers
Automations not working - 24 hour
Cannot be processed as a number - Warning
Image on notification not showing
Help with Entity Controller custom Integration
Send data by pressing a button
After updating to HA 2020.12.2, many integrations no longer work
Help with WOL and ping
Group Light and Switches
2020.12: Automate with Blueprints!
Above in automation
Control my blinds
Assign dynamic sensor name from MQTT message
How do you change Tplink Switch to a Door Class? so i can list it in Entity Card
How to set a input_number as a delay time
2021.7: A new entity, trigger IDs and script debugging
Template in automation trigger's "for" not working
Transition not working in Automations
Help with controlling Thermostat when Door is open
Customize window sensor
Connecting Xiaomi temperature sensors to MQTT... please help
AM2302 ESPHome Compatibility Problem
TTS message
Issue IP Hassos on Proxmox - Guest Agent not running
Home Assistant não reconhece meus Sensores Tuya Zigbee e Wi-fi
Imap Email Content Automation
Using mqtt to shutdown home-assistant
Need Help: Values is string but need float values (platform: rest)
1st automation trigger
Duckdns config fails - not a file for dictionary value
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 2)
Change update interval from Number Components
2021.1: Happy New Year!
How to capture and use the sensor.door_name.operator value from August
2021.3: My Oh My
Getting an odd message in the logs "Platform mqtt does not generate unique IDs." - where to solve that?
Icon State Change_Garage
TemplateError ZeroDivisionError: float division by zero, what is wrong in my syntax?
Getting json data in a sensor
Home Assistant Community Add-on: motionEye
Light toggle script
Ubibot Temp/Humidity integration problems
Message malformed: Service esphome.esp-buzzer_unit_keep_buzzer does not match format
Binary Sensors missing
Broadlink script
Automation based on Onkyo receiver state
Newbie help for custom_components
Determining how many days until a date is reached
Without yaml - are we meant to manually reconfigure every integration each time?
When I put the http: and the two SSL files in configuration.yaml RPi will not serve webpage
ESPHome Integration with this Sensor
Nanoleaf shapes
Should I be able to see port 80?
CSS how to "fix" picture-elements = no scrolling?
Automation with time
Lost dimming in esphome/HA
TV Turn off by switch
Motion sensor triggered Spotify playlist
Automation with various conditions
Automation with a dynamic value
RPi 4 install
How to setup Spotify
Local Home assistant
Sensor values in alerts
Can't upgrade to 2021.11.3
How to copy ui automations from one installation to another (incl device_id)
Input.datetime for a period during the year
Combine a switch and a sensor
Using CATT
Error when calling media service
Tuya Repeating automation
Input helper number not a float?
🔹 Layout-card - Take control of where your cards end up
Binary Sensor Changing State Text
Change user ID to Friendly name in Automation
Entrance Gate - Kids safety
ESP8266 gets reconised in HA but not the PIR, need some HELP!
Create a sensor for holidays/workdays
Pulse-counter on MCP23017 io extender
Safe Mode Start - Can anyone help?
Problem with automation AC off When window is close
Sensor.webhook_temperature: UndefinedError: 'dict object' has no attribute 'temperature'
Virtual Lights On / OFF
Multiline template in automation condition
Automate light timing on and off
Repeat Until Script Crashing HA after Updates (worked perfectly for over a year)
Setup failed for push
Thermostat Setup
Failed Raspberry Replacement
HOW To Execute Commands
HACS and mini_graph-card
Sensor Automation - Template Problem
Create a loop for a timer/sensor
Shelly em pv export
Denial of service attack
Add simple data template ability to visual editor
Create an entity in yaml and make it appear in dashboard
MQTT Dash Commands (json) to Jinja2
Media seek position excepted float, using a template
Assistant Relay
Name / description of icon - floor plan
ESPHOME refuses static IP Address
Keep getting an error
ESPHome - 8266 device does not connect to WiFi
RestAPI Template parsing
How to turn off Home Assistant correctly?
Run automation only once every 24h
Creating new script to open and close IKEA blinds
Warning Smartir
Home Assistant Automation issue with "OR" condition
Enable sensor if consumption is low
Controlling only lights that are on within a group or an area with templating
2021.6: A little bit of everything
Problem with creating restful binary_sensor - Template variable error: 'value_json' is undefined when rendering
MQTT (Nilan to hassio)
Help with my TTS script please
Optimize automation water pump
ESPHome modbus Growatt ShineWiFi-S
Configure sensor to show increments / delta changes of other cumulative sensor
Automation based on log
ESP32 badly shows ADC
Switching off lights at or before sundown
Automations don't work after update
After restarting HA, the "energy_cost" sensors are reset to 0
Esp 32 not showing in settings->Devices&Services->Esphome
Hello_service integration sample
How to change color light?
Can not connect ESPHome manual
Need help to translate in yaml
2021.7: A new entity, trigger IDs and script debugging
Modbus PLC YAML help
Help me love HA - first (failing) automation, Daikin AC with BRP069B45
ZHA-Aqara Single Wall Button (WXKG03LM) onle have power
How to invoke automation at value update
Template or script in an automation
HA Yellow Matter/Thread + Zigbee (Sonoff Dongle) working togheter
Have timestamp (varying day to day), want to use it!
Systemmonitor Drive argument config
Wait for service call in automation
Link local file on Lovelace editor
Missing energy management
Mqtt BUTTON
Area card background removal
Combination of service_template and data_template fails
Device not connected to local push notifications
Temp sensor trigger not working
Send out status emails to dynamic recipients, depending on who request the status
Basic templating: Calculating percentages
Mi first automation
Blueprint is getting Imported but Automation is not running
ERROR Friends can I get help please
Sensor value from homeassistant not readable for ST7735 (SOLVED)
My Problem: how can i open a popup on click
What regular expression to use?
Round template (sensor) to n decimal places, including ending 0's
Random ssml Google Cloud Say
"Energy" - Where are the water device_classes
2021.9.0: More energy, USB discovery, template ❤️
Time Calculation in Home Assistant (sensor & Helper)
Templating help - Show remaining time in HH:MM of timer
Template rendered invalid service - Unexpected error for call_service
Sensor value from homeassistant not readable for ST7735 (SOLVED)
Having trouble with a timer
Integração da camera Imilab C20 no Home Assistant
Lovelace dashhoard card help
Reset state timer
Can't connect after installation
2021.10.0: Z-Wave S2 support, Tuya, secure ESPHome and 400 new icons
Automation not work - user error?
Notify which condition in my automation was used (Doors open)
If count of template is zero, do mot show the digit zero
Mosquitto addOn - create a second user?
Issues with migration (I think)
Home assistent hikvision stream for a newbie/noob
Echo Show 15 alternative for HA
Regex to filter raw data from dutch gas
Trying to use light level attribute as automation condition
[Solved] Change color after time
iPhone distance detection
Problem creating sensor template nest thermostat
Dim a light after a certain time
Plus de connexion OVH erreur 1033
Set boolean based on equation
Aqara Water sensor automation
2022.3: Select and play media
Reading additional values from MQTT
Changing 'template entity' state based on 'entity value + attribute'
How to make HA actively check availability?
Indentation :(
Samba share AND Windows 11 NOT WORKING!
Modbus config problem
Google Translate - announce the door that was opened
Template Cover for gate with automatic closure
Totally stuck with Energy integration, and frustrated too
Button to start operate smartplug for a defined time period
Running automation every 2 hours for 30 minutes
Button to start operate smartplug for a defined time period
Sliders instead of the big Bulb?
Temp automation not firing
Beginers question!
Adding 2 switches to D1 Mini Pro
Presence sencing is frustrating and shouldn't be
Working Ethernet Thermometer using the Olimex ESP_POE_ISO board
AND funtion on multiple triggers, or a work-around for it?
How to use MQTT payload in an automation action
Where do I have to move the text so that it is executed with Assist?
Secure Thermostat
Sonoff R5 Switchman Scene Controller [Integration]
Template sensor with value of two sensors displayed in Gauge
Problem with fan automation
Configure badges to show state of light group like sensor state?
POW R2 sonoff
Capture snapshot notification push not work
How to change the syle of a switch? [SOLVED]
ESPHome Can't Prevent Deep Sleep
How to create a flash rutine?
Read values from a txt file
Code for PH Sensor DFRobot
State Trigger & Time Condition Question
Automation for Bathroom lights and music and blinds not working. Never triggers and goes down default choose path. Help Please
Phone tracking to disable Home Assistant Manual Alarm?
Optimize the MQTT code (Shelly 4 Pro)
Aeotec Heavy Duty ZW078 Failing Inclusion to ZWaveJS
安装出错,怎么处理,请指导下
No voltage history TOMZN Smart Energy Meter
Turn off 3 zigbee dimmers when I arm the alarm
Homeassistant network hell
Device_Tracker "not_home" not functional
Using templates in script and modbus.write_register
Help! Hot to make this automation survive restart
Trigger.for / set value dependent of some state
How to improve tts script with variable
Is there a better way to do this automation?
Open/close curtain on condtions
Couple buttons, boxes, and an automation, basic first steps :)
Just installed fresh 2021.12.7 and input_boolean seems different
This forum is not a helpdesk
Need help for settings an automaton for my Bravia TV
Need help with Switch override for motion sensor for turning on lights
Automations with Shelly Button 1 to notify battery low
Brand new noob - having a go at my first integration - energy - nearly there!
Trigger pump with heating circuits
Luxpower refresh Rate
Cannot publish via mqtt sensor state
If elsif code questions
Restart an automation after a previously unrealized condition finally comes true
Problem in summing up 2 sensors
PIR sensor directly connected to HA?
Automation Trigger with Counter higher then previous
Cant Program D1 Mini
Try to connectect Tapo P110M Matter fails
Slug terminology
Message malformed: expected dict for dictionary value @ data['event_data']
Disable and enable wlan on time and day
Unable to use "if and" in a thermostat automation
Automation turn off light after x amount of time
Multiple Triggers, one action?
Esp32dev devices go unavailable
Please help me with the template configuration
Decimal point not Working
Integral sensors unavailable
Get randrom value which not duplicate with the value in previous random list
Using tts.cloud_say and Sonos
Wifi issues
Block start / end difficulty
Template condition to check state for multiple entities?
Searching sensors with selectattr
Automation action or condition yaml
MQTT Sensor - variable payload throws errors?
Suggestion on part time template sensors usage
Alert based on the previous value from mqtt
Long delay in automation actions. What happens if I manually intervene in the meantime?
Embed number helper in MQTT message for heating control
Camera cards not loading in display mode but displays fine in edit mode
Configuring: light:- platform: mqtt
Multiple value in a single MQTT packet. Trying to split them up?
Need Statistics Help for Freezer Running Average & Notification
ESPHome not accepting HA binary sensor?
Request help Configuration
Automation based on part of MQTT payload
How to read a specific byte(s) from a binairy file
Backup 11111
Value Template Syntax
WARNING Can't connect to ESPHome API for XYZ.local: Error resolving IP address: [Errno -2] Name or service not known
How to use PZEM004T Energy Monitor with esphome
Elgris Smart Meter (Energy Meter)
Problemas con persianas maxcio
Mistake in automation?
Scene to open shutters not working, while one to close them is
How to a trigger GPIO on Raspeberry Pi with a PIR sensor
How to turn on/off multiple outputs in one on_message?
HELP bathroom automation
How to turn off all lights and media players when everyone is out of the house
Last Friday of a specific month automation
Shelly don't work after update
How to install Zigbee2MQTT correctly?
Counting Bulbs and Sockets
Automation Template Trigger Not Triggering
Unable to get a value in a RESTful sensor
After sunset OR before sunrise
New and need help understanding why this doesnt work
Homeassistant app is painfully slow
HACS Not Showing Up After Install on HA Green
Help with first MQTT IR remote control
Newbie Help required please
Templates and script problem
Error Response 500 when create or modify automation
What Trigger for Envisalink Alarmed Automation
Can't get my automation to trigger every 2 hours
Removal of GPIO support
Need help with Google Calendar setup in my configuration.yaml file
Creating a device with multiple sensor entities via MQTT Discovery
Bathroom fan and light with motion and humidity sensor
I can't get a template trigger to work in an automation
Migrating Sonos.join to media_player.join
End of the stream or a document separator is expected
Understanding Automation Time Conditions
Reset of counters at a specific moment
Why / How AI and HA
Insane values in energy dashboard solar production on template sensor
Google calendar automations not working
How to do a sum of several sensors?
New Widetech Internet Dehumidifier
LG TV plugin with Telegram
Hey Insteon users!
Musiccast using custom mini media player and the official musiccast integration. Enjoy!
Modbus: spicierModbus2mqtt
Template to script or automation help/ heating schedule
Termostat brak poczenia WI FI esp8266 ESPhome z HA
Help configuring multiscrape select command
Sun time seems stuck on GMT
Newbie here.. I can see observer but I can't connect to http://homeassistant:8123/
Garbage help
State_attr in config template card
One button with two actions
Dynamic actions based on a single trigger
Home Assistant connettività
Home Assistant connettività
Change icon color based on state(on/off)
Automation with time, offset with an input_number
HA won,t restart bad config
Automation If Trigger
Fun with custom:button-card
Automation (action: repeat) stopped "because an error was encountered" (HTTP 503)
Zone as at_home
Filter Offset based on slider or value input
2024.7: Time to resize your cards!
Upgraded to SSD and now I've no zigbee
Automation sunset turns on at noon
LED Tide Display (help needed)
Sonoff EM Power Attribute - Get a number from string
Formatting array output for email
Simplify automation for greenhouse vent timer
Run automation between 2 constant dates all the years
Whats wrong in this file?
Use automation to set an entity's value based on input from another template sensor
Issue with BME280 in TTGO T-Higrow
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Inconsistency in automation after upgrade to 2023.8.2
Dehumidifier Automation
Nabu Casa account issue
Automation doesn't trigger if the trigger changed outside the time condition
Trying to add minutes to sunset time via helper number
Updated Devices in smart things to home assistant
How to build ESP light sensor
Alerts and trouble shooting
Problems with a public API
Energy Dashboard shows wrong values from energy counter
AutoGenerate Mushroom - Hide entitiy type
Adding a timer to a group
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 1)
Slow motion detection vs Motion light by HA
Template trigger with 'for:'-setting seems only to work with constants not with variables
Please Help me
Flo by Moen Integration with Kasa Switch
Renaming sensor output doesn't work
Help needed asap
Simpel backup automation not triggering (NEW install)
Toggle Switch based on battery level - On works, Off Doesn't?
Please help me with device in google home
How to compare two Device Values against each other
Automation to turn on/off switch to charge fire tablet
Tapo H100 Use different sound
Problems to configure my Oregon sensor
Get the total time a input boolean was turned on and the average by dividing with a counter number
Alert me if someone is outside only if the front door motion sensor does not show open in the last 20 seconds
Automation: open shutter when stop raining - what am I doing wrong?
FingerprintDoorbell Frickelzeug MQTT Problem
Stack-In-Card: Drop-in replacement for vertical-stack-in-card
Use input (fields) in script as sequences
Picture Elements Card Configuration issue
Entities Card 'Format' Variable Broken?
I want to set user1 to be read-only, cant control ennity. How can I do
I want to set user1 to be read-only, cant control ennity. How can I do
Automation not running from state trigger
ESPHome UART desk communication
Z-Wave JS / Z-Stick Gen-5
HELP Needed on My First Automation using a very simple binary entity
Threshold Sensor Question
Autodiscovery
Need help with logger
wESP32 not finding/connecting to multiple sensors
Convert sensor value from negative to positive value
Help with Scripts
Help! codification simple script (YAML) for Rachio irrigation
Ajout d’une temporisation dans un groupe
Automation to record peak power - stopping short
How can I flash a group of light switches
Ayuda con mi configuracion!
How to use a timestamp of an trigger in a notification?
Could not sync group address... L_DATA_CON Data Link Layer Confirmation timed out for <TunnelingRequest...>
Add `DELETE_EVENT` Service to `Calendar` Integration
Templated light colour selection in automation
UPS Power Consumption in the Energy Dashboard
There is Constants or something equivalent like that in esphome?
Zigbee 6-button switch
Using the Ecowitt API to retrieve data from your Personal Weather Station (PWS)
Change of icons via YAML code
Visual Editor - If Conditions and Triggering Sonos
Run schedule only on specific conditions…
Storing current volume levels
Error with pin and dallas sensor in wemo d1
Appdaemon Mqtt pugin
HA automation get notified of who opened or triggered device with time
(German) Integration Doorbird Klingel in HA
[HELP] Dynamic device_id Join Joaoapps
Trying to create a zone notification where only the not in the zone gets the notification
Help! missed comma between flow collection entries
UniFi Controller / MQTT-Server
IF condition comparing two values
Erreur d'installation sur khadas
Binary sensor helper and template sensors not working any more since 2022.10.x
Problem with compile xtensa lx106 elf g++
Help with Sensor Offline Automation
Setting up a motion sensor
Inicios en home assistant problemas con la actualización
Ring Glass Break (without ring integration) Not Triggering Automation
Can´t use Media player in action
How to control wifi relay by serial port of the ESP8266
TS0043 _TZ3000_famkxci2 Loratap not in entity list Blueprints
Time-dependend, Motion-activated lights. Barely working
Home assistant yellow and docker compose frigate
Create an integration to interact with devices in MQTT (LoRaWAN)
Add-ons Button not visible
Home assistant disk full?
Comment integrer capteur sur esp easy en mqtt ! impossible de le rentrer comme entité sensor
Hacky integration for M-Bus
Newbie - Week 2 Power outage no HAOS
Raspberry Pi Bluetooth
Gree brand Pular model air conditioner
Auto personal name for esphome device MQTT
"Platform" is not a valid option for a template binary sensor (ping)?
Wher do I enter lines for a sensor in yaml file
Nabu, HA, Automations and Alexa
Layout issues with the dashboard for Nest Hub 2
Help with template issue
Deactivate all automations at once on second instance
Telegram send photo which name is a variable
What to do when the electricity goes down?
HA constantly crashing on a NUC
Using Nuki Lock 3.0 Fully Local without Bridge
Condition / Trigger based on payload not working
Esphome button hold
Time_pattern
Esphome bk7231n relay on at boot
Value_template wrong JSON
Z-wave devices are not recognized after update to 2022.11.5
🔹 Card-mod - Add css styles to any lovelace card
SSOCR - unable to detect digits
How can i turnoff the new feature "Assist"
Modbus error?
Extracting certain parts of a string
While loop - max amount of times to loop
Transitioning to new forecast design: Automation condition templates?
Problem with Scirpt to tell working day shifts
Timer Bar Card issues
I can't find an answer anywhere?
Paper-Buttons-Row question
Calendar based triggers
Upgrade to 2022.12.3 breaks addons
Icon color based on date
Doorbell automation
Capacitive Moisture Sensors cd74hc4067 Multiplexer esp32
Node-Red, browsermod and formatting issue
Help setting up mqtt switch for a smartthings integration
Saving random HS colors and recalling
Jinja Help needed: How to display the value of a variable?
Call Service Within Template after Long Press
2022.12 Color states are broken/unusable
How do i fix numerical_value = int(value) ^^^^^^^^^^ ValueError: invalid literal for int() with base 10: ''
Saturday, Sunday and public holidays
ESPHome device shows offline but connected when I check my router
I want my temperature sensor to switch my HVAC modes and fan speed
MQTT to Dynamic IR Command via Template
I just snapped my HUSBZB-1 into two pieces. What do I do now?
Help with turning a Curl Post into a Yaml automation
How to migrate from weather integration approach to new weather.get_forecast service?
Nextion esphome
Automatisierung
How can I have local AND imported scenes? (LIFX)
Simple template sensor with last state memory
Script repeat siren sound
If then on interval in ESPHome
Automation with Numeric Condition
Would it be possible to integrate inogema to put cameras
Event triggers? I need help!
Display entities in a row with separator
Automation Not Triggering Help
I can't get into HA
Haaska vs Alexa Smart Home Integration
Help needed binary sensor template
Adjust slider to external value got by mqtt
ESPHome and 433mhz superheterodyne RF receiver
Not being critical BUT
'model' is a required option for [display.st7789v]?
Addons do not start
🔹 Card-mod - Add css styles to any lovelace card
Timer for my Lights
Automation triggert by json via MQTT, Value 0E0443
Statistics sensor outlasting max_age?
Need help with "warning light" automation
Smart switch setup with custom software/app
Ever Home Integration
Sum of four input for activation
[Custom Component] Tapo: Cameras Control
Can't get a value out of my sensor
Brand New to Home Assistant(Having Trouble With Entering Web Browser)
If then else struggle
Trouble with Updating a Group Using group.set Service in Automation
How to use value_template to extract data from the sensors command
Date and time conditions
Help to convert this sensor template code
KNX Cookbook
Entities with low battery template, state of some entities are strings rather than integers, help!
Want to help others? Leave your AI at the door
Condition if attribute contains string
Automation help with an exception situation
How to change the sound mode on a samsung soundbar : Solution
Formattig output based of number of lights on
Thermostat ME98 - rétro éclairage
Window shades won't open at midnight
Automation Trigger - battery_level for a device
Code not working for "template sensor"
Problem with Zigbee2mqtt and the sonoff zigbee dongle version e
Change type of entity
Critical iOS notification with message template
Combine sunset and sunrise
Add runtime to a given time?
Template sensor with multiple conditions
Split config file error
Coolcam powerplug in esphome
Caldav installieren wie?
Creating Automations with YAML (Aqara magic dice)
Zigbee Button Automations now fail
Is an end device required to flash D1 mini pro?
Problem converting C to F
HomematicIP-wired vs KNX
Quel type d'enceinte?
Automation wont trigger with state change
Timed Deep Sleep for ESP's
Wrong chip id 0x0002
Poort 8123
Relays as 5 second buttons
MQTT sensor always unknown
Automation when leaving the house is not triggered
Motion sensor "group" template
Zigbee2MQTT does not show up - Docker setup, Docker-GUI available
Nuc System Monitoring Card
Time above and below trigger issue
Trying to turn lights off when something is true but not working
My Home Assistant keeps restarting
Scripts not appearing in automation editor after creating files
Calendar automations in ha
Noob Notifications
Sensor Reaction Robustness by Means of While Loop
Verkaufe überschüssige Zigbee Hardware
Calculate solar power self-consumption
Rest-Electical prices
Welke Aankoop
SSH switch immediately switch back to previous position
Notification Automation for House temperature?
Bresser ClimateConnect Tuya in ha mit Thuja App werte empfangen?
Setting input min and max number using another input number
Setting input min and max number using another input number
Comment connecter écran TFT 3.5" pour se passe d'un écran en HDMI
Universal-hub from 433 to IR,wifi,Bluetooth,866,..etc IS THERE?/
Issue with platform: integration
Frigate has sound when viewing live, but there is no sound in the recorded clips
Addons fehlen nach Core 2023.3.4 Update
Offline ESPHOME Devices
How to format the text in the new Heading cards?
Calculate Yeld (Photovoltaic)
Volume slider for integrated 3.5mm speaker
Newbie Here, no programming experience
Grid Card use just 5 rows
One wrong value every night
Limiting automation to times of day
Helper, Script? Generate a room darkness category
If I have multiple motion sensors as Trigger, do they both have to be actived?
Lovelace Restriction Card - Client-side Security
Connecting ESPHome node to Home Assistant across a Wireguard VPN
ZHA fails after update 2023.3.x
Cannot complete core installation
Select option
Je n'arrive pas à paramétrer Zigbee2MTT
Aiohttp.server error handling request
Time calculation hour addition
Template show unavailable
ZHA additional property error YAML
Water Tank Level and Water Volume with ESPHome
Home assistent desatualizado
Alerts via Echo
Graceful Shutdown Sensor
How to calculate time between the two most recent state changes for binary sensor
Trying to send HEX commands to shade
Switch fuction to check state of a dropdown
Geofencing automation
Unavailable / Unknown Entity Monitoring - Template Sensor
Problem with my code
About Sonoff
Need help with templating in automation - Template timer
Get no entity with uln2003 Motor Driver -solved-
Group connection of switches - termination of automation
Will a time based automation run forever?
Questions re microSD cards & SSDs
Invalid automation: Device_Id required in Condition
Unable to get CSS styles to apply to automated markdown card (initiated by browser_mod.popup
Home Assistant automatic restart for API call error?
Posting logs, screenshots etc. - English please :-)
YAML file Syntax Error Help Needed
Delaying an automation after the trigger but before the condition
Flex-table-card
How to extract/show a Entities power "Attribute" as a card on Frontend?
HA not logging automations?
Why russian thread was closed by Admin?
Newbie as it gets
Retriggerable timer [solved]
If-then-rule -- but how?
Automation Failing
The B.A.BA of "automation"
Retriggerable timer [solved]
I need help with script parameter
Best practices for making an open/close curtains automation
Shelly trv set valve Position is Not working
Smart life presence sensor
Convert different binary status sensors to one text message
A refreshed logo for Home Assistant!
WT32-ETH01 Action if offline
Input Boolean für Automation
Automation not continually running?
Curtains close at Sunset or 8 pm
Yaml + automation
How do you acquire sensor data that's not numeric or text
Map JSON value to String in REST Sensor
Entity not listed in the energy dashboard
Enable Alarm on 0 people home, not triggering when it hits 0
Eror set up number
How to subscribe to tasmota variables and mem via mqtt?
How to react on MQTT payload
Light switch - protection of switching it on when it is bright in the outside
Need help not quite even sure with what
Disable motion sensor when volume is above 2?
How to populate the Action Node with Function Vlaues from a Function
Help with sensor.yaml
Automation to turn lights on 10 minutes before sunset not working
Run Automation 5 Minutes Before Alarm
Pulsante apri cancello
Automation or Skript?
How to get PV production in the energy dashboard
If then else in configuration.yaml for serial data
If then else in configuration.yaml for serial data
MQTT Switch 8 channel is not showing up
Power Usage calculation
Visual editor not supported
Issues with mqtt sensor
Tasmota temperature scenes/automates dont work
Online support for Home Assistant
How to split attributes
An introduction: Your new Community & Social Media Manager!
Update esphome to 2023.12.x
Energy sensor goes to zero every time template is changed
[SOLVED][Help] Zigbee Relay State Not Updating When Triggered via PyScript/Developer Tools
Add-on: Apache2
Make value 0 if unavailable
Zigbee "wait for trigger" fails
State should be persisted accross restart
Attribute as trigger
Unable to access HA without Login
Dividing in modbus sensor reading
Raspberry PI + Zigbee solution without using an USB Stick
↔️ Swipe Navigation
Size of home-assistant_v2.db does not change
Shelly EM sensor
Have I found a bug?
HA false alerts
Misubishi WF-RAC broken icon
Add multiple MQTT sensors with same state_topic
Message malformed: must contain at least one of below, above HealthBox boost
Cant get this new command_line: code to work
Last state sensor ,but without correct time-zone
„Weiter“-Buttob
Can one trust Home Assistant, since integrations tend to break so often?
Dynamic Binary Sensor - Variable State Value
Condition below 30
HA hardware stop working, and the zigbee2mqtt fails
Configuring Command Line sensor using YAML has moved. Consult the documentation to move your YAML configuration to integration key and restart Home Assistant to fix this issue
From reddit
Energy Dashboard Gas Problem
How to do single AND double click on a switch in automation
Deleted the hacs integration neerlag and now getting error
Best set up
Newbie - Trying to add/modify a valid configuration.yaml with a sensor and template
New to HA and scripting error
Expander Card
Can’t access nabu Casa link. Bad certificate
Template adjust datetime
Windonws10+hyper 安装时一直循环报错no supervisor internet connection
Switch name based his state
Alarmo Automation
Automation to toggle lighting groups on/off
About ESPHOME Web configuration network
If a remote has more than one receiver it will not work
Can't get ESPHome devices to update firmware
Notify on error, continue remainder of automation
Wait for end of TTS before continuing with automation - Sonos
No stable wifi connection after reboot
Help with Automation to Lock Door After 4 Minutes only when it's Closed
Including variables in configuration
Sensor Template doesn't work
Pic out timestamp from mqtt value template Weather Display. How to do?
Fun with custom:button-card
Can't register a lovelace card
Flash my Zigbee Bridge-P or go for a Zigbee dongle?
Conditional card logic nested OR issues
Is there a tutorial?
🎮 ZHA, deCONZ, Zigbee2MQTT - Ikea E1743 On/Off Switch & Dimmer Universal blueprint - all actions + double click events - control lights, media players and more with Hooks
Help me in automation
Configuration.yaml spacing issue waste collection - beginner question
Export action HA in Google Home
Custom Component: Nikobus
Round sensor value
Dummies for decoupled or control relay operation mode
Arlo camera config
COMO VISULIZAR EL URL RTSP EN CAMARA EZVIZ cs-h1c-r101-1g2wr
Help to automate climate preset (Eco to Comfort)?
Help wanted with setting up automation (paid)
Command_line to curl
Automation stops triggering until its renamed (alias changed)
MeteoAlarm: Province containing () in the name
Auto sorting of power monitors
Home assistant blocks every day
Calculation of the value
Calculation of the value
Help with esphome error/rebooting every 2-3 hours
Starting the boiler if tank has less than x% hot water in it
Configurer tableau de bord Caméras Blink sur Lovelace
Home Assistant Entities unavailable while ESP in deep sleep
Nodemcu Disconnecting and pin status change
Boot seems successful, resetting boot loop counter
ESP32 Dev V1 connecting to HA through HA ESPHOME builder
Receiving a time value via MQTT?
How to connect the wires in this setup?
Another Message malformed: extra keys not allowed @ data['0']
Plotly interactive Graph Card
Icons nach Sensoreigenschaften auf dem Dashboard anzeigen
Help with fan automation
How to address ALL lights in scene automation
Extracting Data from JSON Response (of Kostal Power Converter)
Nvidea Shield Remote to Turn On TV LED Lights
Store response varibale in helper
Home Assistant Yellow died on installation
X728 v2.5 Trixie Rpi4 trouble --how to get started?
I;m trying to get a http Post from and android device to Home asistant
Troubleshooting ceiling fan automation that doesn't seem to be firing all the times that it should. Basically want to use my in line Shelly PM1 to determine the speed of the ceiling fan and then report the accurate speed state to the Bond RF controller
How to use a variable with "above"
How to split this single line template?
Automate heating connected to solar generation
Expert help with Jinja2
Python error reloading configuration
Home assistant automation disappeared after update 2023.8.4
Apple watch actions doesn't trigger automations
Template Helpers based on Triggers
How to show a zigbee2mqtt payload on a dashboard
HVAC control when away and guests change setpoint
Sunset trigger for my garage door open
[Custom Component] Alarmo - browser managed alarm system
Help with parson MQTT
Allowlist_external_dirs Integration not found Error
Sensor solargen shown no values
HA Projects kanban
Add 2 entities to display the result in a panel
Smoother ESPHome light transitions?
Action is delayed after trigger
Flashed with wrong flash size esp8266mod
Mosquito entities from a tasmota device get overwritten/reset, want to set "state_class", device_class and unit_of_measurement
Question url button
LD2410 mmWave sensor no longer recognised in ESPHome
Frigate wont connect to mqqt
How can I resync switches after connection loss?
Temperature sensor won't kick automation
How to install on custom ARM?
Automation is crashing
Home assistent på server
Camera: Record error
Third question...this time serious Sonoff Dongle-E and Zigbee2Mqtt
What is the longest a backup restore should ever take?
HACS install issues
Advance automate help
Erreur: Invalid client id lors de la connexion avec Google Home
Critical message with attached image and action!
Convert a platform trigger to a condition
Charge battery automation
Accidental switch off Sonoff S26 smart plug
Value of sensor pulse_meter after reset of esp8266
Sonoren aus MQTT in Home Assistant einbinden funktioniert nicht
Mqtt how to add a switch
Which mini pc or other is right for me - new to HA
Third question...this time serious Sonoff Dongle-E and Zigbee2Mqtt
Ultrasonic sensor with LED and esp32
Platform file and automation
Invalid output from Template
New user needs handholding - dashboards
Automation keeps running when restart Homeassistant
Light control
[Custom Component] Tapo: Cameras Control
How use value from sensor in automation?
PWM exercise, how to manage using a imput number helper
HELP- ESP32 stopped working
Local Calendar feature request 5 - Recognise overlapping events
Filtering attribute data
Fan Component -> UART
How to create several MQTT binary sensors
Sonoff snzb-01p switch
Template sensor shows as 'Unavailable' even though the value exists
How to reference sensor in the today_at() statement
Battery Entities On Dashboard
Time condition script
Need help with some coding (Light count)
Assign values, filters, calibrate_linear
New to Home Assistant. Latest Upgrade created issues with Withings
First time install not working
Home assistant green 💚
First time install not working
Wiegand reader issues -- what am I doing wrong?
Interfacing 'generic_thermostat' help please
Centrale allarme ip
Trigger to turn OFF Boolean by Position of Roll Shutter
Persons on homepage versus devices
Cannot get 2 x sensors showing in ESPHome via Pico W
Compete Newbie. Where do I start?
How create a virtual selector switch
Recommendations to organize configuration files for KNX integration
Intégration partiel de mon matériel Smartlife / Tuya dans HA
Switch automation not working
Invalid config for my switch
Differential temperature
Setting up Automation to Control AC when Utility Prices are Low (Comed, Hourly Pricing)
Can't get a Scene to control ALL covers, only one
Limit in config.yaml?
Issues getting temperature-based automation to run
Mushroom Inspiration!
ESPHome relays logic
Custom Component / Card: Plex meets Home Assistant
Help with date format in a template
Error rendering data - not dictionary, but it's ok?
Assistance with calendar-driven automation
Determine which automation condition returned true
Gas pressure regulator
2 types of sensors in config
Can't get the backup to work
Can anyone advise?
Goodwe to pvoutput problem
Kan use some help on conbee 3
Minimum configuration HA on Pi3? Independent island solution
Can I send a message to my atom echo assistant from an automation?
Mapping not allowed in config/configuration.yaml
Act on one of multiple calendar entries
Automation: time switch with conditions
Homeassistant - KNX bus did not respond in time
Automating a MQTT device to trigger a non MQTT device
How to hide entity-name in apexchart-card
Turn LG Screen off when i select a certain channel i.e Music
NSPanel Pro | mqtt broker integration to homeassistant
Einbindung Speicher von SAX Power mit MODBUS TCP
Yaml code to send ir code to mqtt
I need help combining two things
Trigger bases sensor to calculate difference between previous & current state
Modbus Sensor calculate income value
Templates in automations?
Automation, action started within time condition, but is not stopped after the time period
Automation for a heater
Sensor Scrape: Scraping a webpage of a local power inverter webpage
Custom button card using call service and state
Zigbee2mqtt- broken sonoff co-ordinator- transfer
Configuration.yaml issue, but HA was running fine in the past
Setting sensor value in automation not working
Trying to program ESP32 Bluetooth Proxy OTA
Three thermostats, one HVAC system
[solved] History graph card is not working in HA 2025.2.1/20250205.0
Lovelace: mini graph card
Need help to activate device on first Sunday only
Error code automation?
Help: Syntax issue with Script
Some YAML help for the Apex Charts card?
Starting the boiler if tank has less than x% hot water in it
Matrix sending message and snapshot from Frigate
Capteur Z2M qui ne se met pas à jour
State of lightswitch (MQTT) not preserved after restart
Can't get timer.finished to work as a trigger in automation
Ping an Lan device online, automation not working
Motion Lights, please help
Mqtt payload including a variable based on other states
Media_player and helpers not work together?
[Automation] Motion TTS repeats too often
How can I send an email with HA
Trying to create JSON structure for MQTT
How to debug HomeKit bridge?
Syntax for template with trigger
Google Maps Travel Time migration to Routes API
Template in automation does not pass, gives true in template editor
Hörmann Garage Door with Ing Budde KNX
From response variable to input text greater than 255
How to manually set state/value of sensor?
Guide to Add 214C to Home Assistant via ZHA (with Converter Tool)
Could I have done this logic in Script rather than using Jinja controls?
Need help - Script to mood a room based on time of day
Problem with date stamps variable
ESPHome Dfrobot SEN0521 Config help
CUPS and automation
Resetting sensor on inactivity
PMS5003 air quality sensor - not showing readings!
Aqara motion sensor P1 - bug - automation is missing Illuminance
[Custom Component] Tapo: Cameras Control
Mqtt climate action topic studio code red line
Automation stops at repeat step
Help with Control Relay module of 16 using cd74hc4067 multiplexer in ESPHOME
Question about variable value
Help setting up a battery automation
Can't acces HA, refresh token is invalid
Beelink N100 Mini PC and Home Assistant
Update esphome to 2023.12.x
Simply add two sensors together?
HA to publish a non MQTT sensor to a MQTT broker
Trigger from above value x to value y
Door sensor with esphome by lora
Backup / Restore procedure for HAOS
Plex "stop playback" and provide message
Automation to flash the lights
Having trouble with trigger-based sensors
Aqara zigbee2mqtt configuration
Button to call a web Request
Setting Nest temperature
Create automation that locks door on dashboard?
Picture Elements card configuration issues
Automation based on humidity changes (one overides the other one..)
HA KNX integration
ESPresense Follow-me Music Assistant - Solved
Does Ha have a built in day/night cycle?
Just a simple random on and off during certain hours for one light?
Light color and brightnes depending on time of day
NUKI Hub firmware for the ESP32
Esphome template Maxcio 400ml diffuser
Installing Home Assistant Supervised using Debian 12
Raspberry pi crashing
Help with simple template that check a sensor for a value and does an IF ELSE
Mushroom chip card not aligning vertical
Help: Simple Morning piper TTS briefing for weather and Google calendar events
Home Assistant doesn't work under Golden Gate 27.0
Yolink sensors won't trigger automations?
Aqara g4 page
Whole system is unavailable until I won't apply a core update
Migrating to a HA Yellow with CM4 32gb eMMC and 8gb RAM
Automation not work, why? Alexa works
Stove light on for 2 minutes after motion detected between 10PM and Sunrise
🔹 Card-mod - Add css styles to any lovelace card
How to get 1-wire Dallas/Maxim temperature sensors working after updates
ESP8266 and Buzzer
HA Rest API to trigger automation
Trigger an automation when an email is recieved
Create Variable from part of sensor data
Need suggestions for device that is triggered by current sensor
Automation is triggered by state change from off to off
Not working with PoE switch
Display problems in the app on iPhone
Ring to open door if some1 lately arrived
Heating Oil tank volume
Workshop Climate Monitor for Woodworking, Epoxy Casting and Finishing
Pool automation - Help [ SOLVED ]
Zigbee Leuchte Werte an KNX senden/empfangen
Convert a value in a template sensor
Move to matter over thread from matter over wifi
Reolink + iOS + Home Assistant snapshot notifications
Setting up automation on thermostat
No entity state listed into automations
Log pin state
BRmesh app
Error 500 Waste Collection Schedule AWM München
HA stops responding after a few hours
Automation Lights error
How to AND together two triggers in an automation?
Need some help with the energy dashboard
Rhasspy in home assistant
Send message only when last message has been sent longer than 30 minutes
Simple Sunset change only colors Automation Elgin
Rounding MQTT Sensors
Power Utility Supply state
Binary sensor & command_line integration: sensor remains unknown :(
Esphome binary sensors state
Entity card icon background (border) color
Event triggers
Hue Remote Smooth Dimming RWL022?
Link from configuration.yaml to a list of input_booleans
Lights wont turn off
Cant add more on the config.yaml
Just installed fresh 2021.12.7 and input_boolean seems different
My automation stops after 1 minute
Markdown Card - merge multiple lines together
Scenes not working after upgrading HA
Energy usage negative values
Notify with slack
Automation: Close blinds when forecast rain
Trying to turn on smart bulbs with motion detector but set certain brightness after 9pm
How to check "time device has been on" as a condition in a script
🔹 Card-mod - Add css styles to any lovelace card
No Back in HACS
Calculated values in a card - is this templates only?
Add image to mail notification not working
Bulb color change not working as expected
Strptime help
Sync ESPhome entity to HA on startup
Trying to show how many lights are on
Only insults from a unhelpful platform
Help with this automation please
Aqara switch trigger works only when light on
[SOLUTION]Alexa Media Player and temperature sensor not available
House Light Automation
Going from running perfectly HA setup to scaling up for the next level - Video - next step?
Template sensor seperate same values inputs
How to add links to forum posts
Immersion heater to run on export power
404 after reboot after updating to 2024.3.0
Im very new to Home assistant and would appreciate some help
Device is already configured
How to get temp and hum on an oled Home Assistant?
NVMe SMART Monitor – automatic NVMe SSD health monitoring for HAOS (Pi 5 & x86)
Resolving hostnames
Using Alarm Service as an Automation Trigger
Automation - send condition which was triggered via Notification
Automation with file json, Help
HA UI not open its showing Unable to connect to Home Assistant
The trigger worked at another time!
Some Hama Thermostat wont show their temperature
Would appreciate any help with Harmony script
Raspberry Pi 5 not connecting
Template helper error non-numeric value
Mushroom Cards Card Mod Styling/Config Guide
🔹 Card-mod - Add css styles to any lovelace card
Solved: config example of how to retrofit MQTT onto devices that previously used api
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 2)
Upgrade to 2024.3.3 failed
How can I downgrade a single integration
Best way to add remote switch for my garage door to open and close
Help with power template
Arduino MQTT autodiscovery Problem
Moving the position of a comma
Areas are not working anymore
DHT22 shows 3 degree celsius to much
Two cameras for driveway car notification
Hold down timer for motion sensor and toggle button card to mute alerts
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 2)
How to turn off siren after motion stops
Fairland Pool Wärmepumpe (Heatpump) IXCR66 Modbus Register
2024.4: Organize all the things!
Esp32 + DHT22+Esphone in HA integration
How to add agilePredict
Automation to turn on light based on light level
HA says configuration error
BUG with this template
MQTT with Retained Flag no Data update
Shopping list automation
OS 12.2 upgrade left HA on grub menu, unbootable
Trash-Card Mod
MQTT sensors and switches - status issues
Unifi "Set value for camera Zoom Level" stopped working
All entities in Lights Group
🔹 Card-mod - Add css styles to any lovelace card
Gardena Bluetooth: Connection not stable
Unable to filter logbook entries logged in automation
Refusing to start because configuration is not valid
Check for a value in yaml
How to automatically discover binary sensor devices through discovery topic
How to make a switch that sends command to a web interface
Time trigger parameters from mqtt
Trouble uploading file to esp8266 using esphome
Sensor attribute string: Can't convert to number for graphing
Sunset setting not working
Do it yourself (DIY) with zcs zucchetti single-phase hybrid inverter
Need help with card_mod and input_datetime
I just installed home assistant in docker on Windows 11 but it cannot see any smart device
MQTT configuration in yaml
Poolsana Inverpace 15 Pool Heat Pump via Tuya
From template editor to configuration.yaml
[Automation] Climate mode change with duration ERROR
Gmail notification - Doesn't trigger
Statistics Card vs Statistics Graph Card - Display State
Problem with payload
No display on my OLED display I have an OLED display SSD1306 128x64 0.96 inch and an ESP32 (DEVKIT V1 TyPEC) I've already been able to do a lot with it. But the OLED display shows nothing. My YAML code is valid and can be installed. The connections on t
Mushroom-template-card icon/scripts
Win 10 Docker Desktop + Zigbee Sonoff [resolved]
ZHA stopped working after update core 2024.4.x to 2024.5.x and 2024.6.x
Network card does'nt work propely
2024.6: Dipping our toes in the world of AI using LLMs 🤖
WTH is this forum gatekeeping so hard instead of taking peoples problems seriously?
Apex does Not Show the exact Sensor value
Light is turning off every day at 6PM and 5AM without any action
Different humidity sensors with different automations
Automatic turn on/off cameras when person change status
Notify.send_message in 2024.6
Blueprint Exchange: No longer able to edit my own topic
Buttons change color and icon depending on the thermostat status
What's wrong trigger based sensor with automation
Blueprint/Automation from Device Powered On
🔥 Advanced Heating Control
Broken configuration after core 2024.6.0
Adding Service Data to an Automation
How to initiate an action from and email, through an Alexa Dot's smart light switch
Scene status change that triggers a notification?
How to fix This I Want make a door lock with rfid
Macro problem
Wall display recommendations?
PV / Solar Excess Optimizer: Auto-control appliances (wallbox, dish washer, heatpump, ...) based on excess solar power
Help me. i want a countdown timer
Dimmer coordination
Automation with INKBIRD TH3 (in TUYA integration) and TAPO 100
Trouble with Circle Color Based on Status
Install error rpi4
Capture Text from string
Any AI that can help me out with creating good YAML?
New to HA and ESPHome
How to convert the following to esphome?
Installation card mod
Crossover from OH to HA and MQTT item config
First time install not working
Mqtt value template | mqtt select options
Tailscale Serve won't reach HA Green even with X-Forwarded-For trusted — neither .ts.net nor raw IP work
Crazy values because power from two Shelly 3EMs are not delivered exactly synchronously
Node red help config
Mushroom Cards Card Mod Styling/Config Guide
Newbee trying first automation
Custom: button-card
What's wrong with my Yaml?
Take snapshot from Nest cam daily
Help to create a LIST of elements, then display it
JSON extract help
Flash light red when motion detected
Blinds control sun and photocell storm coming
Need help with my first ever automation
Stop motion turning on light when Plex is running on TV
Switching between Scenes with Hue Tap Dial Switch
One wire Bus and sensor DS18B20 on Esp32
HACS installation problem on VirtualBox image installed HA OS
'dict object' has no attribute 'Occupancy' when rendering
Lumi.sensor_86sw1 blueprint
Home assistant some steps not present on GUI
Hardware check before purchase (please verify)
Button for closing blinds not working
Auto state colour change based on calendar
Need a little help please
Compare color in trigger or condition in an automation
Two window sensors one output | Zwei Fenstersensoren eine Ausgabe
Birdfy Feeder with Solar Panel
Zigbee herdsman failed to start - error ping after 600ms
Count Active MQTT Swtich
Why do my devices not show in Configuration.yaml?
Alot of problems just recently
Automatic control of a pump via the solar system
Time not working
Zigbee2mqtt don't work anymore
Sensor offset template
Blueprint not working when adding a condition using existing entity input
Automation is not triggered when GoodWe inverter sensor.pv_power comes above value
*SOLVED* Check whether vacation is entered in the calendar
Google Generative AI Returns wrong status
Looking for a freelance developer
Solcast API Limits keep being exceeded
Planning and setup - ESP32-S3 - 4848S040 - 480*480 IPS touchscreen
DS18b20 temperature sensors on different pins
How to create template for the fan
2026.2: Home, sweet overview
Input_datetime with only date doesn’t work
ANPR modifiable "approved" plate list
Supervisor not reachable
With Update 2024.8 blueprint no longer works
How create entities in configuration.yaml
How to use reusable template in if statement
Automation False Notifications
Trying to combine two Sensors into one list/count -- Help please
Open door, airco off dos not work
Local calendar events didn't trigger any actions
Fixed: I need HELP... :-) Nous A5T and my ChatGPT screw up
Circulations pump with Motion Detection
HA auf usb stick betreiben
Automation with if higher than a value in the same entity
Android Widget Bug when Triggering Automation with a Delay
Matrix support room
Configuration.yaml spacing issue waste collection - beginner question
Email notification insists on verification
Continuous conversation workaround with code
Esphome with esp32 38pins and lan8720 ethernet module why loss connection?
HAOS Multiple Add-Ons
Custom Component: Flightradar24
Recommendation For Smart TRV
Z2M issues
Dispositivo shelly condiviso tra due accout alexa tramite home assistant
Trying to set a trigger id for a conditional trigger later in the automation
Timer/Schedule based control
Trigger not working in automation bis
Apexcharts card/chart width
State_class total in notify help
Dawn state trigger not executing wait trigger for sun elevation state
Porch Light Not Turning On - Leviton Decora Light Switch
Dallas Component replaced by "one_wire"
HA IR controls for 23-year old Russound Keypads
Using entity attribute dictionary states in an if_statement
Mushroom Cards Card Mod Styling/Config Guide
Error in YAML file but works developer tools "Template"
Alexa : I'm having trouble accessing your Simon Says EU skill right now
Issue with Tado Integration: Thermostats Not Displaying
Local calendar events didn't trigger any actions
Do original device apps become redundant after device setup in HA?
Having issues with initial set up of my HA green, help please
Newly added zigbee2mqtt device disappears
Arduino Nano ESP32 on ESPhome
Erreur Syntax XAML
Motion triggered light - turn off delay using a helper timer adjusted through UI
Automations not firing
How to add device to Zigbee2MQTT
Zigbee light switch initial state
Switch Auto On-Off
Battery level of temperature sensors
Rain Sensor support needed
Turning AC ON
Turning AC ON
Is it me or is the UI useless?
Schedule smart plugin
Notification with aqara door sensor
Switch command
Aubess Switch OFF ON randomly BK7231N BL9042 CB2S
About Agara h1 key and sonoff role automation
Geofencing bouncing
[SOLVED] Change text on lcd display
Help with an automation that calls a script
Error: ZCL command - Timeout from my devices
New automations wont save
Zigbee2MQTT not starting with "Error: Failed to connect to the adapter (Error: SRSP - SYS - ping after 6000ms)"
Beginner template problem
Netatmo: On two houses, only one appear
Netatmo: On two houses, only one appear
Mixpad d1 orvibo
Reading from UART timed out at byte 0!
Pulse counter YAML
Doorbell - Aqara? - Reolink? - transformer and chime?
Add lock state feature in cards
Integration of WIFI Door Chime
Can I swap my SD card into a new Pi?
Automation with Yaml & Jinja - TV Power on/off button
Heat automation
Python dependencies
Configuration.yaml for rest platform
I'm NOT giving up on ESPHome
Open Browser for Cameras
🔥 Advanced Heating Control
Shut down of HA in VM on NAS
Can't get imap to trigger when receiving email from specific sender
SONOFF SNZB-06P stuck on "Detected" – need help fixing
Automation not work
[Request] Hondalink Integration
Daikin AC temperature randomly changes after set by Home Assistant
Google Calendar Notifications to Iphone isn't working
Help compare time
Simple manual trigger for automation - newby questions
Automation help needed please 🙏
Help with HA Green running Core and HACS but options aren't there
Get value and insert into another enitity
ESP32-based local IR control for cloud-locked heaters (Olimpia Splendid and more) – Home Assistant project
ESPHome Tuya 4Gang Switches
Change state name (rename) in template binary sensor
MQTT & component.update event sequence?
My first and short attempt at YAML not going so well
Unable to start mosquito
Thermostat Card Colours
Tapo c200 setup in Frigate with audio & PTZ
Automation - Choose - How to get information about which option was chosen?
Could someone create a specific automation as a learning tool for me?
Energy directly used from solar
Adjusting Alarm Trigger Automation Based on Calendar Entry
Curl API service call extract
Ds-kv6124-wbe1
P1 meter, which one?
I need help with Govee
Using zigbee smart sensor model C3007 to automate my 4 rooms. Having so much issues
Light colors for each bulb based on holidays
Hello from a Home Assistant newbie
Text entry control by automation
Heimgard lock
Filter string
TCP sensor
Install awesome radio
Config error Extra Module
Mushroom Cards Card Mod Styling/Config Guide
I'm stuck reading on a web page
Blueprints help
Passing variables with single and double quotes in scripts
Issues with filling array (rooms for roomcleaning)
Ecowitt HTTP proxu update 1.1.1 not installing
Creating AC isolation switch for Fronius Gen24 inverter within HA
YAML automation
MQTT sensor from MQTT
Card-mod only working in preview - solved!
Template crashing with extensive but meaningless error
Tyua 4 channel relay (with humidity and temp sensor) using regular switch for signalling
Automation active after reboot and other issues
Easy one automation “and triggers”
Sax Battery Usage of Register 40112
Automation Shutters
How to setup Ring Camera for motion triggers
Template in development vs template in configuration.yaml
LLM Vision error defining response variable
Energy management and Self-consumption
Aqara FP2 won't trigger automation after midnight
Trigger with all motion sensors in the area
Configuration esphome mcp23017 dallas temp ds18b20
Combining the data from various sensors
Input select - Fibaro Button
MQTT Help needed getting started
Z2m: Error while starting zigbee-herdsman
Roborock: turn on/off mop drying
Will Home Assistant Ever Develop Its Own PLC Flagship Controller?
Blueprint Light Color
Sharing a Debug Trace
ESP Bluetooth Proxy
YAML automation
Template to calculate a more reliable sensor temperature
Get C++ source code from ESPHome code
Custom python script for publishing sensor values
What's wrong with my configuration.yaml?
Adminrechte
How to help others ... or, how to write a good answer
HA Green - This site can't be reached (Mac OS)
"AVM FRITZ!Box Tools" für kaskadierten Router (Fritzbox) einrichten
Picking a time from a dropdown (input_select)
Automation that triggers a script
YAML code issue
Esp32 cct led
Help needed creating a rule please
Memory size
Smart Home Android Display Backlight and Relay Integration
Decimals for entity shown in notification
Problems with the thermostat helper in cooling mode.
ESPhome issues when network goes down
Control LEDs and LED Effects on Inovelli Black, Red, Blue, and White Series Devices by Floor, Area, Group, Device ID, or Entity
Call service
Adda_zappi
Access to external SSID failing for media
Samsung Oven
Notifications for Android TV Integration additional parameters request
Lux Sensor that can do constant updates to HA
Shelly wall display no longer accessible
KNX - Dimming LED driver
Conditions not allowed in Trigger based Template Sensor
Turning on power save mode on my tablet when the screen is locked
Awning - Swap Open to Closed and Closed to Open
POST variables to Telegram webhook
Please help (images for floorplan)
All Switchbot Sensors Stopped Working
Sonoff dongle error
Lanbon L8 issue need help
Photovoltaic
Notification service help
Cannot edit home zone
Zigbee2mqtt unsupported device TS0504B
Entity for device not showing up in device config
Home Assistant Yellow Can't Find Aeotec Zigbee Zi Range Extender
Daily weather notification through Pushover
Trigger pattern "minutes: /45" is executed twice per hour (solved)
Hard drive space suddenly up to 75%
Dashboard can take a while to load state information when loading on tablet
White "arrows" in the corners of 7735 display with LVGL
Z-Wave reborn - Home Assistant Connect ZWA-2
Help with simple motion sensor automation
Manually Track Water Usage
Unable to setup Google mail integration
IMAP Folder Alerting on non-Received Email
Can anyone help with my YAML Configuration please?
My Lights Keep Turning On and I Have No Idea Why
HA free remote access
Persistent "Property humidifier is not allowed" error with Template Humidifier config (using LocalTuya)
Need help: "sequence:" Incorrect type. Expected one of string, number, boolean
Automation fails silently, but the exact same service call works from Developer Tools. Why?
Event triggers? I need help!
Calendar Event not working
SVG is driving me mad - doesn't display correctly
Eror set up number
Bad indentation of mapping entry SmartGateway
List variable in a loop behave like a local to the loop
Automation state change trigger stopped firing
Climate control based on temperature
ESPHome reporting "An error occurred. Improv Wi-Fi Serial not detected"
Lights somehow got disconnected
Humidity and motion sensor
Solar Powered BTC Mining Automation with HA
Invalid config for 'sensor' at configuration.yaml after last 2025.12 udate
Automations are way off time
Lovelance-layout-card
Hehku One Wireless Meat Thermometer
ESPHome web_server component shows always IwIP license page
How to use a loop inside actions in automation
Mobile app not reporting location
Repeate phone notification
Home Assistant Cookbook - Discussion Thread
Help with Automation - Light/Temp triggered blinds
MQTT messages - receiving and storing for further external analysys
Sonos plays TTS messages even thought it's muted and volume Level 0
Home Assistant Cookbook - Discussion Thread
Home Assistant Cookbook - Discussion Thread
Home Assistant Cookbook - Discussion Thread
Google Calendar issue shutting down HA
Card mod and with "type: tile" and numeric-input - how to template name
KNX Scene - Entity not working
Need help with mmWave and PIR yaml
How to show current readings for 5-8 temperature sensors?
Too many registrations
HA won't open
Aqara Vibration Sensor not working, tried switching to zigbee2mqtt but had latency issues
Sensor with invalid unit of measurement
Issue in YAML code installation
Zigbee2mqtt error while onboarding
IR blaster script error
IR blaster script error
Insteon PLM on HA and 2nd PLM on ISY/eisy (Universal Devices)
Zigbeee devices become Unknown after a few hours
BOM weather - now temp refresh rate
Please help me create a specific template sensor using a formula
Phone charger on/off by battery level
M5 Stack Atom failed to update to latest firmware 2026.7.4
Yaml help needed
Telephone support for a crashed HA server
Automation trigger works but action doesn't run
Blink camera snapshot
SMD630 not working after update
Use epoch time from MQTT as payload_home in device_tracker + rant
Command_volume_level has stopped working
Guidance / question on mqtt topic payload display in card
Jullix script
Manual Trigger fails when used with a Trigger ID and a condition
RF remote control
HA installs in PROXMOX
MQTT Sensor not reading payload correctly
I have done all the process to connect my dongle zigbee -e to home assistant but in logs of zigbee2mqtt in home assistant i am not getting the correct logs
Charge period card
Apex Chart Daily Graph
Motion Sensor Check - Help with Coding
Electrical wiring - controlling wall sockets
Can’t communicate with my inverter
Remote WebView shows HA web dashboard on ESP32-S3-based screen
Google nest integration troubles
How to ensure entity state in a specified timeframe?
How to use next alarm sensor
My SNZB-01P Button toggle Aqara Plug SP-EUC
Error with helper in automation - trace give an error
LinknLink iSG Box SE
Yaml file is not compiled
Dynamic colors
Family Chat App
Kitchen Light Automation Help
Esp32 wt32 eth01 Cmake error
HAOS Dashboard Summaries
Input_boolean.serrande
OpenThread Border Router via network stopped working (FIXED)
Helper text via Telegram message
HA & Shelly Flakiness
Mushroom Cards - Build a beautiful dashboard easily 🍄 (Part 2)
Alexa Devices Integration - Media player
Cover Control Automation (CCA) - Intelligent Automation for Blinds, Awnings & Shutters | Calendar, Sun Shading, Force Functions
Motion-triggered automation doesn't reliably restart timer
Whats is going on with development? Stability please?
Two versions of Device Builder?
Simple template trigger
☔ DIY Zigbee rain gauge
Recently started having issues where automations work work properly for various reasons
How to add non-existing trigger to yaml
Momentary switch Help
Zha_event trigger not working
Passing multiline fields to a script
Deprecation of legacy template entities in 2025.12
Help with new Laundry Automations
Christmas Tree animated icon
Automation to switch lights on at specific time, off at specific time, and then motion activated for a specifci time
HA re-connection help needed, before I pull my teeth out!
Problem with history since 2025.12.3
Honeywell T6 state isn’t changing
Shutter automation only triggers the last action
Yokis roller shutters via the YnO cloud (no local Hub token) — cover + HomeKit
HA Nginx Proxy Manager html path not redirecting
Rain and illuminance sensor automation [RB-SRAIN01]
2026.3: A clean sweep
Hinkley Fan using Tuya-local
Mini pc problem
Help with tupo cameras
Automation Notification
Ikea Timmerflotte Temperature/Humidity Sensor, Smart
HAOS on bare metal - cannot remote into HA but cannot connect on my local LAN
Problem adding Matter light bulb to Home Assistant
Invalid Configuration in configuration.yaml
Companion APP, External Access Disabled, DNS Errors
I have problem vid installing
Im new and i dont now hot to automate this pleas help
Invalid Configuration in configuration.yaml
New to HA need help with automations
Помощь в арифметическом пересчете кода RCSwitch
Remote clim hitachi RAR-6NE1 / XIAO smart IR
Alexa media player not working no more announcement
Auditr Baaklog exceed limits
Create a template sensor which outputs a list?
Leak Detection - Can't get to work
Is there an easy way to manage central heating?
Config flow could not be loaded: 500 Internal Server Error Server
XIAO ESP32-C3 Deepsleep and wakeup pins
How to iterate new templates fast?
DIY Smart Video Doorbell using Raspberry Pi with Home Assistant & Frigate Integration
Team Tracker - MLB - On First Base Detection?
Using toggle on two cameras switches
(newby question) Trigger switch on above soc and above is_power
Using iPhones for BLE
Boolean set not working
Mobile data usage
Trying to Set Automation Start and End Times Using Zigbee Button
How to remove 55K bad remote Home Assistant entities?
Creating automation if either of 2 things are true
Friends of hue switch pairing
Must refresh, to let card_mod do his work in an entity card, setting correct height
Automation trigger threshhold help
FLODE — Visual Flow + Node Editor for Home Assistant (Fork of C.A.F.E., Testers Wanted!)
Making HA user friendly using AI
Exabird ha-tado-x integration possible problem
Zigbee2Mqtt goes to blank screen
Motion sensor showing as event that can't be used in automation
Localisation with zone has strange behavior!
Localisation with zone has strange behavior!
Actionable Notifications in IOS 26.6
Reolink video dorbell integration to HA and frigate
IKEA Bilresa Scroll Wheel Remote controller - Lights, Brightness, Hue, Temperature, Climate use Z2M Zigbee2MQTT
Os keeps failing
Where is the "main configuration folder (usually /config)"?
Home Assistant Voice PE device installation keeps failing
Help - I can't get my Blink Camera to save a picture on my HomeAutomation...what am i doing wroing
Sensor Scrape / Rest - scrape text only page
Custom slider button card image
Trigger IR operation with Xiaomi smart switch (and hub)
Help with my first automation
🌻 Lovelace UI • Minimalist
Vacuum Interactive Map Card
Help Sending ID with Water Leak Detected
Can't integrate Hassio with SmartThings
Konnected Piezo / Siren
Hassio with external NVR
Help to understand my mistake
Extra keys not allowed is driving me crazy
Combining Lights and switches
On/off switch in Lovelace
MQTT connection issue with devices
🖼️ WallPanel Addon - Wall panel mode for your Home Assistant Dashboards
Trouble with template, returns none in blueprint, works great in the template tester
Termometre does not report temperature anymore
NAD T778 on HA
Conditional State triggers for arming cameras