ZWaveJS UI with Keymaster-Basic

I am using a ZWaveJS UI combination with Yale Zwave locks using the steps defined in the Keymaster Basic (GitHub - desertblade/Keymaster-Basic: Simple Home Assistant Lock Manager) design.

When i set a PIN/Username, the PIN codes are not sent and i don’t see any traffic in the Zwave debug monitor.

My setup is the following:

I setup a dashboard with the https://github.com/desertblade/Keymaster-Basic/blob/c666200c0e2883da52562fca020b624769b5563d/lovelace-keymaster-basic.yaml design in it. No changes ot the code.

in /config/configuration.yaml

..
# Keymaster
homeassistant:
  packages: !include_dir_named packages
..

/config/packages/keymaster_basic.yaml

..
# Add your locks here
lock:
  - platform: group
    name: "House Locks"
    entities:
      - lock.FrontDoor
      - lock.GarageDoor
      - lock.OfficeDoor

# Add notification services
notify:
  - name: "Lock Notify Group"
    platform: group
    services:
      - service: mobile_app_DEVICE
..

Update Oct 15

the problem was the home_locks group entity IDs. I assumed (novice!) that i could use the entity names as the entity IDs. Oops

# Add your locks here
lock:
  - platform: group
    name: "House Locks"
    entities:
      - lock.node_12 #FrontDoor
      - lock.assure_lever_keypad_with_z_wave_plus #GarageDoor
      - lock.assure_touchscreen_deadbolt #OfficeDoor