Start Homekit Automation based on Zwave network status in Node-Red

Im pretty new to Node-Red and have completed a few automations and am really loving the flexibility of it. Now im trying to wrap my head around how to create the homekit autiomation here:
https://www.home-assistant.io/integrations/homekit/#disable-auto-start

# Example for Z-Wave
homekit:
  auto_start: false

automation:
  - alias: 'Start HomeKit'
    trigger:
      - platform: event
        event_type: zwave.network_ready
      - platform: event
        event_type: zwave.network_complete
      - platform: event
        event_type: zwave.network_complete_some_dead
    action:
      - service: homekit.start

Any help or pointers would be greatly appreciated

Here’s what I have:

I have an event node called ZWave Network Ready that looks like this:

33%20AM

It listens for the zwave.network_ready event.

Then I have it do a call service to start HomeKit that looks like this:

I also have it notify me by slack that everything is setup as I don’t like to touch anything until ZWave is ready.

I hope this helps!

Worked perfectly. Thanks!