Model: 910 S TRL ZW 15 SMT Kwikset

Setup:
Home assistant on Rasp pi 3 (virtual install)
Aeon labs V2 usb Zwave stick
Using this lock Kwikset Signature deadbolt

So now I have the problem that most people I see on here have. It pairs, but when I hit lock\lock or lock\unlock the lock itself just lights up but does not lock or unlock.

In the logs I get this command.
ERROR: Dropping command, expected response not received after 1 attempt(s)

Can someone point me in the right direction of troubleshooting with logs and xmls?
I figure I need to Install open z wave control panel…
Is that going to help me get a secure key that has to be put in a mysterious xml it needs to lock\unlock?

I can drop any logs you might need in the thread. Just leave me the default location :slight_smile:

2 Likes

Was able to fix this on my own.
Stopped the home assistant.
Uncommented the network key entry in the options.xml for the open zwave control panel. Created a new key and saved it.
Started the open zwave control panel, initialized the panel via the web page. Added the lock with the secure option.
Stopped the control panel and started HA and the lock works!

Probably just needed to uncomment and set the network key in options.xml for ha. Put wanted to write this to help others.

Was using the AIO install so it had everything installed already.

1 Like

I’m having issues on this lock. Where did you find your options.xml file? I want to make sure I’m using the correct one. Also how far were you from the door?

Thank you!

/srv/hass/src/open-zwave-control-panel
when you edit this one it gets replicated to the home-assistant one.

sensor and automation to fix and display lock sync
sensor:
   - platform: template
   sensors:
   kwikset_touchpad_electronic_deadbolt_alarm_type1:
    friendly_name: 'outhouse bolt'
    value_template: >
      {% if is_state("sensor.kwikset_touchpad_electronic_deadbolt_alarm_type_10_0", "24") %}
        locked with Home Assistant
      {%  elif is_state("sensor.kwikset_touchpad_electronic_deadbolt_alarm_type_10_0", "25") %}
        unlocked with Home Assistant
      {%  elif is_state("sensor.kwikset_touchpad_electronic_deadbolt_alarm_type_10_0", "21") %}
        locked manually
      {%  elif is_state("sensor.kwikset_touchpad_electronic_deadbolt_alarm_type_10_0", "22") %}
        lock manually
      {% else %}
        unknown
      {% endif %}
    

- alias: 'Sync Lock/Unlock State outhouse'
  trigger:
platform: state
entity_id: sensor.kwikset_touchpad_electronic_deadbolt_alarm_type_10_0
 action:
service_template: >
  {%- if ( (trigger.to_state.state == "22") or
           (trigger.to_state.state == "25") )
  -%}
    lock.unlock
  {%- else -%}
    lock.lock
  {% endif %}
entity_id: lock.kwikset_touchpad_electronic_deadbolt_locked_10_0