Ein einfaches Shelly Blink Script.
Simpel_Blink:
Code
//Config Remote Shelly
var remote_Ip= "192.168.0.9"; //Remote Shelly IP
var remote_PW= ""; //Optional Remote Shelly PW
var remote_Switch_ID= 0; //Remote Shelly Switch Channel ID
var cTimeout= 5; //Remote Shelly Call Time out, in Seconds
//Config Local Shelly
var input_ID= 0; //Local Input Channel ID
var blink_Period= 3; //Blink Period, in Seconds
var blink_onFlank= 0.2; //Blink on Flank, in Seconds
function Blink(){
try{
Shelly.call('http.get',{url: 'http://admin:'+remote_PW+'@'+remote_Ip+'/relay/'+remote_Switch_ID+'?turn=on&timer='+blink_onFlank, timeout: cTimeout}); //Blink
}catch(e){print(e);}
}
var tH1= 0; //Global Timer
function StatusLoop(d){
try{
if(Shelly.getComponentStatus('input',input_ID).state && !tH1) {Blink(); tH1= Timer.set(1000*blink_Period,true,Blink);} //Trigger
if(!Shelly.getComponentStatus('input',input_ID).state && tH1) {Timer.clear(tH1); tH1= 0;} //Clear Timer
}catch(e){print(e);}
}
Shelly.addStatusHandler(StatusLoop); //Subscribe to Shelly Status changes
print("Status: Blink Script Working");
Alles anzeigen
Apache License Version 2.0, January 2004, siehe Link für mehr Infos: https://github.com/ALLTERCO/shell…ob/main/LICENSE