Hue Lights Do Not Turn On When Nest Camera Detects Motion In a Particular Zone

I have this Automation Setup to turn on my shed lights when I enter the specified area I have created, but it does not trigger.
Nest Cam sent me a notification so I know the zone is working.

 id: '1546096782981'
  alias: If Garden Cam Detects Motion in Shed Zone Turn On Shed Lights
  trigger:
  - entity_id: binary_sensor.garden_gam_camera__zshed_activity
    from: 'off'
    platform: state
    to: 'on'
  condition: []
  action:
  - data:
      brightness: 154
      entity_id: group.shed_lights
    service: light.turn_on

I used the Automation Editor and have other Automatons for another nest cam in specified zones which work. Any ideas?

Thanks
Darren

Some basic things to check to narrow down where the problem might be:

  • Is the automation on?
  • When you enter the zone, do you see the binary_sensor changing from ‘off’ to ‘on’?
  • Go to the States page and click on the box with the arrow in it next to the automation. Click the TRIGGER button. Do the lights go on?

Thanks pnbruckner,

  • Is the automation on? Yes
  • When you enter the zone, do you see the binary_sensor changing from ‘off’ to ‘on’?
    How do you check this?
  • Go to the States page and click on the box with the arrow in it next to the automation. Click the TRIGGER button. Do the lights go on? Yes

Cheers
Darren

Can you not see the binary_sensor in the frontend? If not, go to the States page and find it in the list. You should see its current state, which will update as the entity changes. Also, if you click on the box with the arrow in it to the left of the entity, you should see the last 24 hours of history of the entity. Do you see it has changed at all?

EDIT: BTW, since the automation is on, if the trigger happens, then the action should run. And since when you manually trigger the automation, the lights go on, that tells you that the action part of the automation is correct. The only other possibility then is that the trigger is not coming. Either binary_sensor.garden_gam_camera__zshed_activity is not changing from ‘off’ to ‘on’, or you misspelled its name.