first commit

This commit is contained in:
Souti
2025-03-06 11:09:58 +01:00
commit 11f7d440ff
330 changed files with 38306 additions and 0 deletions

17
volets3.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/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"