Hi, I want to change my color of a LED strip in a automation. But it didn’t work.
I can change the brightness but not the color.
I can change it in the UI color wheel.
Did anyone now what I am doing wrong?
alias: Testing
description: ""
trigger:
- platform: time
at: "12:01:00"
condition: []
action:
- service: light.turn_on
data:
rgbw_color:
- 0
- 255
- 255
- 0
brightness_pct: 50
target:
entity_id: light.zolder_51_0_52
mode: single
123
(Taras)
November 6, 2022, 3:01pm
2
Try using the rgb_color
option instead.
- service: light.turn_on
data:
rgb_color:
- 0
- 255
- 255
brightness_pct: 50
target:
entity_id: light.zolder_51_0_52
RGB color also didn’t work.
123
(Taras)
November 6, 2022, 6:15pm
4
Is there a related error message in the Log?
What is reported in the automation’s trace?
Reference: Troubleshooting Automations
For so far i can see. No errors.
And my lights support rgbw (see picture previous message).
I have found the problem.
I can not set two things in the same time (for example, the color and the brightness)