Aeotec MultiSensor 6 configuration on HASSIO 0.83.2

HI,
How to configure Aeotec Multisensor 6 (ZW100 purchased in October 2018) on HASSIO / RPi.
-Where to place Aeotec multi sensor 6 in the configuration.yaml file.
-How to configure Aeotec Multisensor 6
motion detector to start a lamp for 10 minutes, and where the configuration is set in config.yaml.
-Do you have any examples of how you configured, on HASSIO / RPi
My current HASSIO version is: 0.83.2
Regards Christian

Do you have a zwave hub of some sort?

If HA is controlling the zwave network,did you add the sensor per the instructions below?

Get the sensor setup and identify the resultant entity_id for your motion sensor. We can work on the automation when that information is available.

Here is an example where I have a door sensor to turn on a light. Then it gets turned off after 5 minutes. It can be easily adapted to do what you ask.

Yes , I have a Aeotec ZW090 Z-Stick Gen5 EU

Yes , I have a Aeotec ZW090 Z-Stick Gen5 EU
Can you give your example on config.yaml for motion sensor?
//Christian

Have you added the sensor to your Home Assistant instance?

yes, i have.

What is the entity ID and what are the states?

Here is my configuration.yaml file.

automation:

  • alias: Turn on kitchen light when there is movement
    trigger:
    platform: state
    entity_id: sensor.aeotec_zw100_multisensor_6_burglar_9_10
    to: ‘on’
    action:
    service: homeassistant.turn_on
    entity_id: switch.telldus_tzwp100_plugin_switch_switch_4

  • alias: Turn off kitchen light 10 minutes after last movement
    trigger:
    platform: state
    entity_id: sensor.aeotec_zw100_multisensor_6_burglar_9_10
    to: ‘off’
    for:
    minutes: 10
    action:
    service: homeassistant.turn_off
    entity_id: switch.telldus_tzwp100_plugin_switch_switch_4

Can you format per the instruction in the blue bar at the top of every post?

Is the automation not working? Getting a configuration error?

The switch_4 does not turn on the lamp, when sensor aeotec6 has detected motion.

automation:
- alias: Turn on kitchen light when there is movement
  trigger:
    platform: state
    entity_id: sensor.aeotec_zw100_multisensor_6_burglar_9_10
    to: 'on'
  action:
    service: homeassistant.turn_on
    entity_id: switch.telldus_tzwp100_plugin_switch_switch_4

- alias: Turn off kitchen light 10 minutes after last movement
  trigger:
    platform: state
    entity_id: sensor.aeotec_zw100_multisensor_6_burglar_9_10
    to: 'off'
    for:
      minutes: 10
  action:
    service: homeassistant.turn_off
    entity_id: switch.telldus_tzwp100_plugin_switch_switch_4

My configuration doesn’t show the last _x_y after the burglar word in entity_id and then I switch on the light when the sensor get value 8 not on or true and switch off when 0 not false nor off

I hope it helps you

I would confirm your entity ID and your actual states in the states page of the developer tools.