Bash and Wnindows CMD scripts for updating multiple WLEDs.
This commit is contained in:
parent
3eb1fe0eb2
commit
72e001b0d5
16
tools/multi-update.cmd
Normal file
16
tools/multi-update.cmd
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
@echo off
|
||||||
|
SETLOCAL
|
||||||
|
SET FWPATH=c:\path\to\your\WLED\build_output\firmware
|
||||||
|
GOTO ESPS
|
||||||
|
|
||||||
|
:UPDATEONE
|
||||||
|
IF NOT EXIST %FWPATH%\%2 GOTO SKIP
|
||||||
|
ping -w 1000 -n 1 %1 | find "TTL=" || GOTO SKIP
|
||||||
|
ECHO Updating %1
|
||||||
|
curl -s -F "update=@%FWPATH%/%2" %1/update >nul
|
||||||
|
:SKIP
|
||||||
|
GOTO:EOF
|
||||||
|
|
||||||
|
:ESPS
|
||||||
|
call :UPDATEONE 192.168.x.x firmware.bin
|
||||||
|
call :UPDATEONE ....
|
19
tools/multi-update.sh
Normal file
19
tools/multi-update.sh
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
FWPATH=/path/to/your/WLED/build_output/firmware
|
||||||
|
|
||||||
|
update_one() {
|
||||||
|
if [ -f $FWPATH/$2 ]; then
|
||||||
|
ping -c 1 $1 >/dev/null
|
||||||
|
PINGRESULT=$?
|
||||||
|
if [ $PINGRESULT -eq 0 ]; then
|
||||||
|
echo Updating $1
|
||||||
|
curl -s -F "update=@${FWPATH}/$2" $1/update >/dev/null
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
update_one 192.168.x.x firmware.bin
|
||||||
|
update_one 192.168.x.x firmware.bin
|
||||||
|
# ...
|
Loading…
Reference in New Issue
Block a user