Files
Domoticz/volets3.sh
2025-03-06 11:09:58 +01:00

18 lines
692 B
Bash
Executable File

#!/bin/bash
DOMO_IP="localhost" # Domoticz IP Address
DOMO_PORT="81" # Domoticz Port
Gauche_IDX=684 # numéro ID de l interrupteur du relais
Droit_IDX=701
Milieu_IDX=699
lockfile-create "/tmp/volet3.lockfile"
echo "Avant $1" >>/tmp/test
curl -s "http://$DOMO_IP:$DOMO_PORT/json.htm?type=command&param=switchlight&idx=$Droit_IDX&switchcmd=$1" &
sleep 1
curl -s "http://$DOMO_IP:$DOMO_PORT/json.htm?type=command&param=switchlight&idx=$Milieu_IDX&switchcmd=$1" &
sleep 1
curl -s "http://$DOMO_IP:$DOMO_PORT/json.htm?type=command&param=switchlight&idx=$Gauche_IDX&switchcmd=$1" &
echo "Apres" >>/tmp/test
lockfile-remove "/tmp/volet3.lockfile"