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 add-on 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, add-ons will have their own documentation too. In many cases it will be embedded in the add-on, or accessible through it, but if not check the add-on page or the relevant GitHub repository (for a non-core add-on).

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 add-on, 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
  • Add-on 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.

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