From 819b956ceb51467cda16ed64a8b98c56914ca564 Mon Sep 17 00:00:00 2001 From: puffpants Date: Mon, 15 Dec 2025 19:53:15 -0500 Subject: [PATCH] Update QUICKSTART.md --- docs/QUICKSTART.md | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/docs/QUICKSTART.md b/docs/QUICKSTART.md index cf72971..62088bf 100644 --- a/docs/QUICKSTART.md +++ b/docs/QUICKSTART.md @@ -41,18 +41,21 @@ mqtt: Add this to `configuration.yaml` or `automations.yaml`: ```yaml -automation: - - alias: "Request Zigbee Network Map" - trigger: - - platform: time - at: "00:00:00" # Once per day at midnight - - platform: homeassistant - event: start - action: - - service: mqtt.publish - data: - topic: zigbee2mqtt/bridge/request/networkmap - payload: '{"type": "raw", "routes": true}' +- id: 'xxxxxxxxxx' + alias: Request Zigbee Network Map + description: 'Request Zigbee network map daily and on HA start' + triggers: + - trigger: time + at: "00:00:00" + - trigger: homeassistant + event: start + conditions: [] + actions: + - service: mqtt.publish + data: + topic: zigbee2mqtt/bridge/request/networkmap + payload: '{"type": "raw", "routes": true}' + mode: single ``` ## Step 4: Restart and Verify (3 minutes)