Hi everyone,
I’m experiencing an issue with my Home Assistant setup and could use some help. I’m running Home Assistant in a VM with OS 13. Since yesterday, my floorplan lights have stopped working. The floorplan only loads a red image and stays that way regardless of the light color. However, if I manually apply a 90-degree filter, it turns green.
Is there a known issue or something I might have missed? Any advice or solutions would be greatly appreciated.
Thanks in advance!
type: custom:config-template-card
style:
top: 50%
left: 50%
width: 100%
variables:
LIGHT_STATE: states['light.deckenlicht_kinderzimmer'].state
COLOR_MODE: states['light.deckenlicht_kinderzimmer'].attributes.color_mode
LIGHT_COLOR: states['light.deckenlicht_kinderzimmer'].attributes.hs_color
BRIGHTNESS: states['light.deckenlicht_kinderzimmer'].attributes.brightness
entities:
- light.deckenlicht_kinderzimmer
element:
type: image
image: local/lovelance/1x1_transparent.png
state_image:
'on': >-
${COLOR_MODE === 'color_temp' ?
'/local/ui/floorplan/Kinderzimmer_ON_Rot.png' :
'/local/ui/floorplan/Kinderzimmer_ON_Weiß.png' }
entity: light.deckenlicht_kinderzimmer
style:
filter: '${ "hue-rotate(" + (LIGHT_COLOR ? LIGHT_COLOR[0] : 0) + "deg)"}'
opacity: '${LIGHT_STATE === ''on'' ? (BRIGHTNESS / 254) : ''100''}'
mix-blend-mode: lighten
pointer-events: none