[BASH] Enigma2 – aktualizacja stanu dekodera w Domoticz
Skorzystaj z poniższego skryptu aby sprawdzić status dekodera z oprogramowaniem Enigma2. #!/bin/bash STATE=`curl -s http://[IP_ENIGMA]/api/powerstate | jq '.instandby'` DOMOSTATE=`curl -s http://[IP_DOMOTICZ]/json.htm?type=devices\&rid=55 | jq '.result[0].Status' | tr -d '"'` DOMO=[IP_DOMOTICZ] IDX=[IDX_DEKODERA_W_DOMOTICZ_DUMMY_SWITCH] if [ "$STATE" == "false" [...]