Home Assistant Only Changes Lights to Red regardless of color selected

This is really stranger and I can’t seem to figure out what is causing this. It happened sometime this week. I have several automations and one script hat changes the color of my living room lights. One changes a light to blue. One changes a light to crimson. The other changes the lights to gold or dark orange. These were all working as of Tuesday (3/27/18). Now, these automations and scripts change the lights to Red. I’ve tried changing from “color_name” attribute to “color_rgb” but it doesn’t help. When I change the color via the Home Assistant front end, it doesn’t matter what color I choose, it changes it to the same red. I’m running HASS.IO 0.66.0 and the bulbs in question are Lightify SMART + RGBW bulbs. I’m posting my script and automations below. Any help or ideas would be appreciated.

Automations

  - alias: TV Monday
    trigger:  
      platform: time
      at: '19:59:00'
    condition: 
      - condition: state
        entity_id: 'sensor.fatpants_home'
        state: 'home'
      - condition: time
        weekday:
          - mon       
    action:
      - service: remote.turn_on
        data:
          entity_id: remote.Lopez
          activity: 31268671
      - service: light.turn_on
        data:
          entity_id: light.file_cabinet
          brightness_pct: 100
          color_name: 'crimson'     


  - alias: TV Tue
    trigger:  
      platform: time
      at: '19:59:00'
    condition: 
      - condition: state
        entity_id: 'sensor.fatpants_home'
        state: 'home'
      - condition: time
        weekday:
          - tue        
    action:
      - service: remote.turn_on
        data:
          entity_id: remote.Lopez
          activity: 31268671
      - service: light.turn_on
        data:
          entity_id: light.file_cabinet
          brightness_pct: 100
          color_name: 'dodgerblue'  

Scripts

  movie_time:
    sequence:
      - service: light.turn_on
        data:
          entity_id: light.desk
          brightness_pct: 100
          rgb_color: [255,215,0]
          #gold          
      - service: light.turn_on
        data:
          entity_id: light.file_cabinet
          brightness_pct: 100
          rgb_color: [255,215,0] 
          # gold          
      - service: light.turn_on
        data:
          entity_id: light.side_table
          brightness_pct: 100
          rgb_color: [255,140,0]  
          # Dark Orange         
      - service: light.turn_on
        data:
          entity_id: light.couch_lamp
          brightness_pct: 1
      - service: light.turn_off
        entity_id: light.kitchen
      - service: light.turn_off
        entity_id: light.dining_room
      - service: light.turn_off
        entity_id: light.entry_way
      - service: light.turn_off
        entity_id: light.hallway
      - service: light.turn_off
        entity_id: light.laundry_room
      - service: remote.turn_on
        data:
          entity_id: remote.Lopez
          activity: 28259458

Don’t know much about Lightify, but have you checked your bulbs/hub with an app or something?

I should have mentioned that. They are connected via a Wink Hub and both the Wink Hub and Alexa change the color correctly. It’s just when done via Home Assistant that it defaults to Red.

hi there. The same for me. As I updated both home assistant and wink to last version I don’t know which one causes trouble.

I suspect that wink changed something. I am waiting on a zigbee stick for my Raspberry Pi so I can move my colored bulbs out of Wink but it’s back ordered and won’t be here for a month.

In the meantime, I’ve created shortcuts in Wink to do what I want and then HA calls that scene. It’s not the ideal solution but it works for now.

I’m having this issue as well home assistant can’t change colors of wink bulbs.

@w1ll1am23 any insight?

I still haven’t found a solution to this so I switched all of my bulbs over to the HUSBZB-1 z-wave and zigbee controller. Color change works well now and they operate a lot faster.

Really? I haven’t seen that issue. I am able to chnage color, just seems that my none color bulbs report as having color support.

Hmm. I have a few lightify led strips and bulbs and they pretty much stay white no matter what color I pick from the wheel.

Found an open issue on it. https://github.com/home-assistant/home-assistant/issues/13843

Hmm okay, stange. I am on vacation at the moment so won’t be able to take a look for awhile, but I know last week the color was working on the one lightify bulb I have. I also haven’t upgraded HA in a few weeks so something could have changed.

Wink light colors are being fixed with PR14263.

2 Likes