Fibaro Component how to trigger on scene activation?

Thanks for the update Dirk. I’ll scrap this part of my project…

For people searching how to catch events from the Fibaro Dimmer FGD212:

  • On the Zwave node in Node Configuration Options select Parameter 28: ‘Scene activation functionality’, set it to: ‘Functionality activated’
  • In Developer Tools > Events, start listening to zwave.scene_activated
  • Press the dimmer and see the event listed

Note: my dimmers are connected to an Aeotec Zwave USB stick
Here’s an example event that I get:

{
    "event_type": "zwave.scene_activated",
    "data": {
        "entity_id": "zwave.corridor_second_floor",
        "node_id": 13,
        "scene_id": 16
    },
    "origin": "LOCAL",
    "time_fired": "2020-05-24T21:11:11.804987+00:00",
    "context": {
        "id": "blabla",
        "parent_id": null,
        "user_id": null
    }
}
2 Likes