Z-wave error

Hi i have just got a zwave switch and a z-stick.
I have added the switch but I don’t get any events in ha…
But if I look in the zwave log it says the following.
2017-10-12 20:44:03.437 Warning, Node004, No ValueID created for Scene 1 what does it mean?

It’s a ZME_WALLC-S.

It means that the device is sending Scene updates, rather than updating any entities. Each button will send a different Scene value, and you can use those to trigger automations:

alias: 'Somebody pushed up'
initial_state: 'on'
trigger:
  platform: event
  event_type: zwave.scene_activated
  event_data:
    scene_id: 1
    entity_id: zwave.my_wall_switch

Change the entity_id and scene_id to suit.

You can also change the messages the switch sends, as detailed in its manual.

1 Like

i can’t get it to work…
i have the following automation:

- alias: 'living_room_wallswitch_test1'
  initial_state: 'on'
  trigger:
    platform: event
    event_type: zwave.scene_activated
    event_data:
      scene_id: 1
      entity_id: zwave.living_room_wallswitch
  action:
  - service: notify.notify
    data:
      title: "test"
      message: "test"

but it does not trigger when openzwave logs the following:

2017-10-14 08:42:03.995 Detail, Node004,   Received: 0x01, 0x08, 0x00, 0x04, 0x00, 0x04, 0x02, 0x98, 0x40, 0x2d
2017-10-14 08:42:03.997 Info, Node004, Received SecurityCmd_NonceGet from node 4
2017-10-14 08:42:03.999 Info, NONCES: 0x48, 0x6b, 0xdf, 0x4d, 0xac, 0xae, 0x35, 0x75
2017-10-14 08:42:04.001 Info, NONCES: 0xa8, 0xa6, 0x8a, 0x07, 0x75, 0xd6, 0xba, 0xba
2017-10-14 08:42:04.003 Info, NONCES: 0xa6, 0x5d, 0x74, 0x4f, 0xc3, 0xeb, 0xf5, 0x44
2017-10-14 08:42:04.005 Info, NONCES: 0x6f, 0x9a, 0xc0, 0x8c, 0x4e, 0xf3, 0xf2, 0x96
2017-10-14 08:42:04.006 Info, NONCES: 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2017-10-14 08:42:04.007 Info, NONCES: 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2017-10-14 08:42:04.009 Info, NONCES: 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2017-10-14 08:42:04.010 Info, NONCES: 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2017-10-14 08:42:04.011 Info, Node004, Sending (WakeUp) message (Callback ID=0x01, Expected Reply=0x00) - Nonce_Report - 0x01, 0x11, 0x00, 0x13, 0x04, 0x0a, 0x98, 0x80, 0x6f, 0x9a, 0xc0, 0x8c, 0x4e, 0xf3, 0xf2, 0x96, 0x05, 0x01, 0x8f:
2017-10-14 08:42:04.021 Detail,   Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2017-10-14 08:42:04.022 Detail,   ZW_SEND_DATA delivered to Z-Wave stack
2017-10-14 08:42:04.040 Detail,   Received: 0x01, 0x07, 0x00, 0x13, 0x01, 0x00, 0x00, 0x02, 0xe8
2017-10-14 08:42:04.041 Detail,   ZW_SEND_DATA Request with callback ID 0x01 received (expected 0x01)
2017-10-14 08:42:04.102 Detail, Node004,   Received: 0x01, 0x1f, 0x00, 0x04, 0x00, 0x04, 0x19, 0x98, 0x81, 0x14, 0x82, 0xf6, 0xb5, 0x25, 0x0b, 0xa5, 0xad, 0xc1, 0x00, 0x50, 0x39, 0x89, 0x96, 0x6f, 0xf4, 0xa4, 0xea, 0x00, 0x68, 0x55, 0xb9, 0x87, 0x72
2017-10-14 08:42:04.103 Info, Raw: 0x98, 0x81, 0x14, 0x82, 0xf6, 0xb5, 0x25, 0x0b, 0xa5, 0xad, 0xc1, 0x00, 0x50, 0x39, 0x89, 0x96, 0x6f, 0xf4, 0xa4, 0xea, 0x00, 0x68, 0x55, 0xb9, 0x87, 0x72
2017-10-14 08:42:04.105 Detail, Node004, Decrypted Packet: 0x00, 0x5b, 0x03, 0x25, 0x00, 0x01
2017-10-14 08:42:04.106 Detail,
2017-10-14 08:42:04.107 Info, Node004, Received Central Scene set from node 4: scene id=1 in 0 seconds. Sending event notification.
2017-10-14 08:42:04.108 Warning, Node004, No ValueID created for Scene 1

and nothing is logged to the ha log file even when i set homeassistant.components.zwave: debug.

so what am i missing?

(i have tried to fire the automation manually and it works)

By changing to “send scenes” i managed to get everything working!
Thanks i im sooooo happy!!!

What does “send scenes” mean? I’m having a similar warning too and not seeing scene events.


It’s a device configuration.