Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 15 additions & 12 deletions docs/QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down