Home Assistant Voice PE - Detect if it turns on the lights

Hi,

At the moment when I ask Alexa to turn on the lights, I capture the fact that Alexa triggers the lights and set them to a default colour (and not the last state). I do this like this :

alias: Alexa - Office White
description: ""
triggers:
  - event_type: alexa_smart_home
    event_data:
      request:
        namespace: Alexa.PowerController
        name: TurnOn
        entity_id: light.office_light
    trigger: event
conditions: []
actions:
  - data: {}
    target:
      entity_id: scene.office_white
    action: scene.turn_on
mode: single

I can’t see a similar way to get Voice Assist to do the same (which seems a bit odd as it is actually a Home Assistant device).

Any pointers?

See if the following on “Sentence Trigger” helps:

Trouble with that, is that you lose the room awareness of the device - which makes that aspect pretty pointless.