Remotec ZRC90

Hello all,
I try to configure a Remotec ZRC90.
I followed the doc here: https://www.home-assistant.io/docs/z-wave/device-specific/#remotec-zrc-90-scene-master but can’t get it work.

Does anyone got one up and running?

Here are the details of my automation configuration:

- id: '1582542651553'
  alias: bouton2
  description: test bouton 2 commande_bas
  trigger:
  - event_data:
      node_id: 9
      scene_data: 0
      scene_id: 2
    event_type: zwave.scene_activated
    platform: event
  condition: []
  action:
  - data:
      message: Commande bas
      title: Test Commande bas
    service: notify.gmail

I can see the events in OZW_Log.txt:

2020-05-02 12:44:10.730 Info, Node009, Received Central Scene set from node 9: scene id=2 in 0 seconds. Sending event notification.

Then I can see some logs about my automation in the logs but it’s not getted executed:

2020-05-02 12:54:34 INFO (MainThread) [homeassistant.components.automation] Initialized trigger bouton2
2020-05-02 12:54:34 DEBUG (MainThread) [homeassistant.core] Bus:Handling <Event state_changed[L]: entity_id=automation.commande_bas, old_state=None, new_state=<state automation.commande_bas=on; last_triggered=2020-05-02T12:24:39.579180+02:00, id=1582542651553, friendly_name=bouton2 @ 2020-05-02T12:54:34.974871+02:00>>
2020-05-02 12:54:34 DEBUG (MainThread) [homeassistant.components.websocket_api.http.connection.2934058480] Sending {'id': 2, 'type': 'event', 'event': <Event state_changed[L]: entity_id=automation.pressalleautom, old_state=None, new_state=<state automation.pressalleautom=on; last_triggered=2020-05-02T12:54:16.655239+02:00, id=1576792551543, friendly_name=presSalleAutom @ 2020-05-02T12:54:34.964676+02:00>>}
2020-05-02 12:54:34 DEBUG (MainThread) [homeassistant.components.websocket_api.http.connection.2934058480] Sending {'id': 2, 'type': 'event', 'event': <Event state_changed[L]: entity_id=automation.presence_terrasse_1, old_state=None, new_state=<state automation.presence_terrasse_1=off; last_triggered=2020-01-04T15:21:28.488662+01:00, id=1577051634166, friendly_name=presence terrasse 1 @ 2020-05-02T12:54:34.967745+02:00>>}
2020-05-02 12:54:34 DEBUG (MainThread) [homeassistant.components.websocket_api.http.connection.2934058480] Sending {'id': 2, 'type': 'event', 'event': <Event state_changed[L]: entity_id=automation.presence_terrasse_2, old_state=None, new_state=<state automation.presence_terrasse_2=off; last_triggered=2020-02-24T13:09:48.741632+01:00, id=1577989366891, friendly_name=presence terrasse 2 @ 2020-05-02T12:54:34.970592+02:00>>}
2020-05-02 12:54:34 DEBUG (MainThread) [homeassistant.components.websocket_api.http.connection.2934058480] Sending {'id': 2, 'type': 'event', 'event': <Event state_changed[L]: entity_id=automation.commande_bas, old_state=None, new_state=<state automation.commande_bas=on; last_triggered=2020-05-02T12:24:39.579180+02:00, id=1582542651553, friendly_name=bouton2 @ 2020-05-02T12:54:34.974871+02:00>>}

I can’t find a lot of feedback about this device in HA, so if you have some and have an idea of what I’m doing wrong, please let me know!

Thanks in advance!

Are you sure your notify.gmail service is functioning? From what you have stated, it seems like you are generating an event from the button push and the automation is being triggered. I would confirm that you notify.gmail is working as expected.

yes notify.gmail is working, I forgot to mention that manually executing the automation is fully working and I receive the expected email.

I also noticed in the logs that I don’t have the following line for my expected script (“bouton2”):

2020-05-02 22:48:11 INFO (MainThread) [homeassistant.components.automation] presSalleAutom: Running script

So the “bouton2” script is never executed…

The only difference I see between your automation and the one that I have configured is that you have “node_id” and I use “entity_id”

YEEESSSS! It was (only) that!
But the official documentation is wrong… where did you get this config?
Thanks a lot!

2020-05-03 11_20_53-Z-Wave Device Specific Settings - Home Assistant

1 Like

Don’t remember, it’s been setup for some time.
Glad you got it working though.