File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ # WLED Tools
4+ # A utility for managing WLED devices in a local network
5+ # https://github.com/wled/WLED
6+
37# Color Definitions
48GREEN=" \e[32m"
59RED=" \e[31m"
@@ -64,6 +68,19 @@ Commands:
6468 update Update the firmware of a WLED device or multiple discovered devices.
6569 discover Discover WLED devices using mDNS and list their IP addresses and names.
6670
71+ Examples:
72+ # Discover all WLED devices on the network
73+ ./wled-tools discover
74+
75+ # Backup a specific WLED device
76+ ./wled-tools -t 192.168.1.100 backup
77+
78+ # Backup all discovered WLED devices to a specific directory
79+ ./wled-tools -D -d /path/to/backups backup
80+
81+ # Update firmware on all discovered WLED devices
82+ ./wled-tools -D -f /path/to/firmware.bin update
83+
6784EOF
6885}
6986
You can’t perform that action at this time.
0 commit comments