Hello
I cannot succeed in driving a hue bulb lamp with color with appdaemon.
Following line works
self.turn_on("light.hue_color_lamp_1", brightness=255, color_temp=220)
Following line does not work
self.turn_on("light.hue_color_lamp_1", brightness=255, color_temp=220, rgb_color = (255,0,0))
nor
self.turn_on("light.hue_color_lamp_1", brightness=255, color_temp=220, rgb_color = [255,0,0])
and returns
> WARNING HASS: Error calling Home Assistant service default/homeassistant/turn_on
> WARNING HASS: Code: 400, error: 400: Bad Request
If someone could provide some help with correct syntax to drive the color of the lamp
Many thanks