Minimote quit working on new install

I had a working AIO installation RPI3 of .55

I could not see an easy way to upgrade that, so I did a new install of Rasspian and and now running .61.1. I copied over my configuration.yaml and automations.yaml and moved the AEON Z Stick over.

Everything but the minimotes appears to be working. Here is code from my automations.yaml file:

Do I need to rename a node?

## MINIMOTES:  
#        There are two.  The first is labeled, the second is for testing.

- alias: Minimote Button 1 Pressed
  trigger:
    platform: event
    event_type: zwave.scene_activated
    event_data:
      entity_id: zwave.aeotec_dsa03202_minimote
      scene_id: 1
  action:
    service: switch.toggle
    entity_id: switch.table_lamp_1_switch

- alias: Minimote Button 2 Pressed
  trigger:
    platform: event
    event_type: zwave.scene_activated
    event_data:
      entity_id: zwave.aeotec_dsa03202_minimote
      scene_id: 3
  action:
    service: light.toggle
    entity_id: light.living_room_floo_level

- alias: Minimote Button 3 Pressed
  trigger:
    platform: event
    event_type: zwave.scene_activated
    event_data:
      entity_id: zwave.aeotec_dsa03202_minimote
      scene_id: 5
  action:
    service: light.toggle
    entity_id: light.bedroom_level

- alias: Minimote Button 4 Pressed
  trigger:
    platform: event
    event_type: zwave.scene_activated
    event_data:
      entity_id: zwave.aeotec_dsa03202_minimote
      scene_id: 7
  action:
    service: light.toggle
    entity_id: light.porch_light_level

- alias: Minimote2 Button 1 Pressed
  trigger:
    platform: event
    event_type: zwave.scene_activated
    event_data:
      entity_id: zwave.aeotec_dsa03202_minimote_2
      scene_id: 1
  action:
    service: light.toggle
    entity_id: light.table_lamp_2_level
- alias: Minimote2 Button 2 Pressed
  trigger:
    platform: event
    event_type: zwave.scene_activated
    event_data:
      entity_id: zwave.aeotec_dsa03202_minimote_2
      scene_id: 3
  action:
    service: light.toggle
    entity_id: light.living_room_floo_level
- alias: Minimote2 Button 3 Pressed
  trigger:
    platform: event
    event_type: zwave.scene_activated
    event_data:
      entity_id: zwave.aeotec_dsa03202_minimote_2
      scene_id: 5
  action:
    service: switch.toggle
    entity_id: switch.outdoor_switch
- alias: Minimote2 Button 4 Pressed
  trigger:
    platform: event
    event_type: zwave.scene_activated
    event_data:
      entity_id: zwave.aeotec_dsa03202_minimote_2
      scene_id: 7
  action:
    service: light.toggle
    entity_id: light.porch_light_level

are both remotes showing up as devices in the states (<>) area?

I got one of them working. I think one problem is they were joined using Open Zwave on the old install, I so I guess HA did not know about them. Joined the first and it saw the entity name. For some reason I had to rename the entitys in the action in the automation, but that one is working. Haven’t tried the second yet.