Compare commits

..

No commits in common. "bc484958a32cc008b42243deb0d6aa427e3b8cbc" and "edbc155a59673bb35afe62dce4c1eed8ce6fe171" have entirely different histories.

2 changed files with 1 additions and 12 deletions

View file

@ -2,5 +2,3 @@
Simple shell script to turn predefined wled instances on/off or switch presets.
Requires *curl* version 7.82.0 or newer.

11
wled
View file

@ -7,7 +7,7 @@
# License: CC0
print_usage() {
echo "Usage: $0 [f(nordcenter)|w(ohnzimmer)] [on|off|1-17|list]"
echo "Usage: $0 [f(nordcenter)|w(ohnzimmer)] [on|off|1-17 (preset number)|dump]"
}
if test $# -ne 2; then
@ -41,15 +41,6 @@ case "$2" in
[1-9]|[1-9][0-7])
api_resp=$(curl -s -4 --json "{'on':true,'ps':$2}" "http://$wled_host/json")
;;
l|list)
echo "Presets on $wled_host:"
curl -s -4 "http://$wled_host/presets.json" | \
# Split into lines. One line per preset.
sed --sandbox -n 's/"\([0-9]\{1,2\}\)"/\n"\1"/gp' | \
# Extract number and name. Append final newline.
sed --sandbox -n 's/^"\([0-9]\{1,2\}\)":.*"n":"\([[:print:]]*\)".*$/\1: \2/p; a\'
exit $?
;;
dump)
curl -s -4 -w '\n' "http://$wled_host/json"
exit 0