You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
397 B
16 lines
397 B
#!/bin/bash |
|
# Execute une commande distance sur le module ESP |
|
# syntaxe : updateESP.sh PARAM VALUE |
|
# PARAM : 3 -> min_temp ; 4 -> min_prct |
|
|
|
IP="192.168.0.115" |
|
|
|
[ ! -z "$1" ] || echo "PARAM is empty" |
|
[ ! -z "$2" ] || echo "VALUE is empty" |
|
|
|
if [ ! -z "$1" ] && [ ! -z "$2" ]; then |
|
curl http://$IP/control?cmd=taskvalueset,3,$1,$2 &> /dev/null |
|
echo "Update OK !" |
|
else |
|
echo "Leaving script :-(" |
|
fi
|
|
|