Homeseer WD200+ Zwave Plus Wall Dimmer

UPDATE
I have it working with LEDs now too.
Here is the example automation that turns my LEDs (one switch for now) RED when security is armed, YELLOW when pending (exit time) and WHITE when disarmed.

 - id: '123456789'
  alias: Security State ON
  trigger:
  - entity_id: alarm_control_panel.home_alarm
    platform: state
    to: armed_home
  - entity_id: alarm_control_panel.home_alarm
    platform: state
    to: armed_away
  condition: []
  action:
  - data:
      node_id: 13
      parameter: 14
      value: Red
    service: zwave.set_config_parameter
- id: '123456789'
  alias: Security State OFF
  trigger:
  - entity_id: alarm_control_panel.home_alarm
    platform: state
    to: disarmed
  condition: []
  action:
  - data:
      node_id: 13
      parameter: 14
      value: White
    service: zwave.set_config_parameter
- id: '123456789'
  alias: Security State PENDING
  trigger:
  - entity_id: alarm_control_panel.home_alarm
    platform: state
    to: pending
  condition: []
  action:
  - data:
      node_id: 13
      parameter: 14
      value: Yellow
    service: zwave.set_config_parameter
3 Likes