Technisat szenenschalter 1 Remote Control

Well thank you so much for all the Help! I am going to try to 20 secs mode to clean it and try again as secure.
Wish me LUCK!

Youā€™re welcome!
:crossed_fingers: good luck - let us know how it went!

no luck :frowning: I am giving up for now i guessā€¦

so today i bought new remotesā€¦ and still the sameā€¦ so the problem is not from the remote!

i did what @tom_l asked me in a improved way that i saw on a new post and this is what i got

Event 1 fired 5:53 PM:
{
    "event_type": "zwave_js_event",
    "data": {
        "type": "value_notification",
        "domain": "zwave_js",
        "node_id": 58,
        "home_id": 3889200754,
        "endpoint": null,
        "device_id": "b078e1d6a79f6ee6ba98789f0138ff1d",
        "command_class": 91,
        "command_class_name": "Central Scene",
        "label": "Scene 002",
        "property_name": "scene",
        "property_key_name": "002",
        "value": "KeyPressed"
    },
    "origin": "LOCAL",
    "time_fired": "2021-02-25T17:53:10.381458+00:00",
    "context": {
        "id": "6716c1c14579e2ff29ab9d8528800dec",
        "parent_id": null,
        "user_id": null
    }
}


how can i automate the buttons with this information? any suggestions?

i can see that someone created this blueprint but i dont know how to import it or even use it

---
blueprint:
  name: Aeotec ZWA003 NanoMote Quad
  description: Create automations for the Aeotec ZWA003 NanoMote Quad using the
    OZW integration.
  domain: automation
  input:
    aeotec_nanomote:
      name: Aeotec NanoMote Quad
      description: The NanoMote Quad to interact with.
      selector:
        device:
          integration: zwave_js
          manufacturer: Aeotec Ltd.
          model: Aeotec NanoMote Quad
    button_1:
      name: Press Button One
      description: Action to run on button press.
      default: []
      selector:
        action: {}
    button_2:
      name: Press Button Two
      description: Action to run on button press.
      default: []
      selector:
        action: {}
    button_3:
      name: Press Button Three
      description: Action to run on button press.
      default: []
      selector:
        action: {}
    button_4:
      name: Press Button Four
      description: Action to run on button press.
      default: []
      selector:
        action: {}

mode: single

max_exceeded: silent

trigger:
  platform: event
  event_type: zwave_js_event
  event_data:
    command_class_name: Central Scene
    device_id: !input aeotec_nanomote

action:
  - variables:
      scene_id: "{{ trigger.event.data.property_key_name }}"
  - choose:
      - conditions: "{{ scene_id == '001' }}"
        sequence: !input button_1
      - conditions: "{{ scene_id == '002' }}"
        sequence: !input button_2
      - conditions: "{{ scene_id == '003' }}"
        sequence: !input button_3
      - conditions: "{{ scene_id == '004' }}"
        sequence: !input button_4

I believe I understood How it works now! I am going to test it out TOMORROW!!!

1 Like

Finally Someone Helped me and Now I can make automations for any Buttons!

- alias: Wallmote 1
  trigger:
    - platform: event
      event_type: zwave_js_event
      event_data:
        device_id: [OWN DEVICE ID HERE]
        label: [OWN LABEL HERE]
        value: KeyPressed (or KeyHeldDown or KeyReleased)
  action:
    - service: switch.toggle
      entity_id: light.wall