I’ve written automations to monitor Hue bulbs and turn on or off none hue lights to match. The hue bulbs show up twice on my HA States page once from Hue and once from wink. The names are identical, but only the ones on hue seem to update. The ones wink don’t change unless I manually force one of them from the wink app. At that point the application works as intended. It appears that my automation looks at the non-updating wink version and therefore do not work. I am planning to contact wink as well to see why these lights are not updating. Meanwhile, is there a way to force them to use the Hue version of the light or do I need to remove the hue lights from my wink hub? Here is my application just in case:
‘’‘yaml
alias: ‘spotson’
initial_state: True
trigger:
platform: time
seconds: ‘/5’
condition:
condition: and
conditions:
- condition: state
entity_id: light.MakeupOne
state: ‘on’
- condition: state
entity_id: light.bedroom_spots
state: “off”
- condition: time
after: ‘07:45’
before: ‘21:30’
action:
service: light.turn_on
entity_id: light.bedroom_spots
‘’’
Given that both bulbs have the same name, hiding one of them in customize.yaml doesn’t seem to help.