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.

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