I’m trying to hide my automations from the UI by adding hide_entity: true (or hide_entity: True, I’ve tried both) to each of them, but they just won’t disappear. I’d really like these hidden so that I don’t accidentally edit an automation that’s too advanced for the UI, which would wipe out some of the data.
hide_entity seems like a pretty straightforward option, so I’m kind of baffled why this isn’t working, and I’m hoping someone might have a suggestion.
- id: '1546706499176'
alias: Lights (Bedroom Lamp) -- Adjust brightness depending on time of day
initial_state: true
hide_entity: true
trigger:
- entity_id: light.bedroom
platform: state
from: 'off'
to: 'on'
condition: []
action:
service: homeassistant.turn_on
data_template:
entity_id: light.bedroom
brightness_pct: >
{%- if now().strftime('%H')| int >= 21 %}
20
{%- elif now().strftime('%H')| int >= 20 %}
50
{%- elif now().strftime('%H')| int >= 9 %}
100
{%- elif now().strftime('%H')| int < 9 %}
20
{%- endif %}