Yeelight Scene

Hello, I am trying to create a yeelight scene in homeassistant. I am failing to create a complete white light. I do put both my lights in white (full brightness) and then save the scenes but once I run the scenes I do see yellow light. I have included my scenes file and was wondering if you can help me white light. I have got Yeelight color2. Regards,

- id: '1602510353742'
  name: Full Beam
  entities:
    light.upstairs_light:
      min_mireds: 153
      max_mireds: 588
      effect_list:
      - Strobe color
      - Police
      - Christmas
      - RGB
      - Random Loop
      - Fast Random Loop
      - LSD
      - Slowdown
      - Disco
      - Strobe epilepsy!
      - Alarm
      - Police2
      - WhatsApp
      - Facebook
      - Twitter
      - Slow Temp
      - Stop
      brightness: 255
      color_temp: 5000
      hs_color:
      - 54.768
      - 1.6
      rgb_color:
      - 255
      - 255
      - 255
      xy_color:
      - 0.326
      - 0.333
      flowing: false
      friendly_name: Upstairs Light
      supported_features: 63
      state: 'on'
    light.downstairs_light:
      min_mireds: 153
      max_mireds: 588
      effect_list:
      - Strobe color
      - Police
      - Christmas
      - RGB
      - Random Loop
      - Fast Random Loop
      - LSD
      - Slowdown
      - Disco
      - Strobe epilepsy!
      - Alarm
      - Police2
      - WhatsApp
      - Facebook
      - Twitter
      - Slow Temp
      - Stop
      brightness: 255
      color_temp: 5000
      hs_color:
      - 54.768
      - 1.6
      rgb_color:
      - 255
      - 255
      - 255
      xy_color:
      - 0.326
      - 0.333
      flowing: false
      friendly_name: Downstairs Light
      supported_features: 63
      state: 'on'```

This is my scene for white light (hell)

  - name: Hell
    entities:
      light.yeelight_color1_34ce008b8e6e:
        state: on
        brightness: 255
        color_temp: 153 
      light.yeelight_color1_7811dcaa4d4e:
        state: on
        brightness: 255
        color_temp: 153  
      light.yeelight_color1_7811dcd9218f: 
        state: on
        brightness: 255
        color_temp: 153  

You should play with the brightness and color temp

1 Like

Hello thanks for your reply,

its still whitish yellow not the full white :(. I am using scenes from HomeAssistant interface, do you think would that be an issue.
Even tried changing scenes files but still the same issue.

I also got the bulb 2, which is also the white colour with this scene.

You can change your colours to the desired “white” color from the frontend with the RGB wheel. If you check the developers tab you can note down your brightness and color temperature.

If you create your scene according these values, they should match that color.

For example the below, or my example from the post above

scene:
  - name: Romantic
    icon: "mdi:flower-tulip"
    entities:
      light.tv_back_light: "on"
      light.ceiling:
        state: "on"
        xy_color: [0.33, 0.66]
        brightness: 200
1 Like

thanks @Infineghost
Still its the same, please see my screenshots.

looks like i resolved it. I had to delete all the lines that were added by lovelace and it now works as intended.

name: Full White
entities:
light.upstairs_light:
brightness: 255
color_temp: 153
rgb_color:
- 255
- 254
- 250
xy_color:
- 0.326
- 0.333
flowing: false
friendly_name: Upstairs Light
state: ‘on’
light.downstairs_light:
brightness: 255
color_temp: 153
rgb_color:
- 255
- 254
- 250
xy_color:
- 0.326
- 0.333
flowing: false
friendly_name: Downstairs Light
state: ‘on’