Error setting state for philips hue bulb

Hi,

I set a specific light with the hue app on a coloured philips hue bulb. Then I copied the State Attribute from HA developer tools,

and I pasted all the values in a s\SCENE in configuration.yaml.

  - name: Concentrate living
    entities:
      light.central_left:
        color_temp: 233
        xy_color: 0.3691,0.3719
        supported_features: 127
        brightness: 254
        rgb_color: 255,231,192

Then after restarting HA in front end I click the SCENE but I get this error

16-12-08 23:12:03 homeassistant.helpers.state: reproduce_state: Unable to reproduce state <state light.central_left=None; color_temp=233, xy_color=0.3691,0.3719, supported_features=127, brightness=254, rgb_color=255,231,192 @ 2016-12-08T23:11:23.074059+01:00>

why?

Im guessing you are calling to many options, most of them are repeats of the same function. Only choose one color option and the brightness.

For example:

  - name: Concentrate living
    entities:
      light.central_left:
        brightness: 254
        rgb_color: 255,231,192

tried receive same error

16-12-08 23:26:14 homeassistant.helpers.state: reproduce_state: Unable to reproduce state <state light.central_left=None; brightness=254, rgb_color=255,231,192 @ 2016-12-08T23:25:57.736557+01:00>

maybe try…

  - name: Concentrate living
    entities:
      light.central_left:
        state: on
        brightness: 254
        rgb_color: 255,231,192

rgb_color needs to be a list:
rgb_color: [255,231,192]

I think that this might also work:

rgb_color: 
  - 255
  - 231 
  - 192

that made it, thanks