Eine universelle Toolbox für Shelly-Skripts.
Wie benutzt man die Toolbox?
Kurzfassung:
- Kopiere einfach den Toolbox-Code ans Ende deines Scripts und definiere eine Main() Funktion über der Toolbox.
- Die Main()-Funktion sollte den Hauptcode enthalten, z.B. das erstellen eines Endlos-Timers Schleife oder eines Ereignis-/Status Handlers. etc.
Beispiel für Call():
- Um das Call() Tool zu verwende kannst du die Call() Funktion einfach wie eine normale Shelly.call() Funktion nutzen.
- Weitere Informationen zur Verwendung von Shelly.call() findest du hier --> https://shelly-api-docs.shelly.cloud/gen2/0.14/Scri…ures#shellycall
- Bei Call() gibt es einen 4. Debug-Parameter, der bei Shelly.call() nicht vorhanden ist, wenn hier "true" übergeben wird, wird automatisch eine Debug-Ausgabe für den Call erzeugt.
Shelly Scripts auf "base" reduziert:
Toolbox v1.0 + Call() Beispiel
JavaScript
//Some Exampel config
let debug= false; //Create extra Debug output
let tH1= 0;
//Some Call() Exampel
function Main(){
for(let i= 0; i < 40; i++){
Call("Switch.Toggle",{id: 0},0,0,debug); //Some Shelly.call()
}
tH1= Timer.set(1000,true,function(){if(!cCache.length && !aC){print('\nStatus: Finisched Call Test\n'); Timer.clear(tH1);}}); //Check for Fin all calls
}
//Toolbox v1.0(base), a universal Toolbox for Shelly Scripts
function Efilter(d,p,deBug) { //Event Filter, d=eventdata, p={device:[], filterKey:[], filterValue:[], noInfo:true, inData:true}->optional_parameter
try{
let fR= {}; //d.info= d.info.data;
if(p.noInfo){fR= d; d= {}; d.info= fR; fR= {};} if(p.inData && d.info.data){Object.assign(d.info,d.info.data) delete d.info.data;}
if(!d.info) fR.useless= true; if(p.device && p.device.length && p.device.indexOf(d.info.component) === -1) fR.useless= true;
if(p.device && p.device.length && !fR.useless && !p.filterKey && !p.filterValue) fR= d.info;
if(p.filterKey && !fR.useless) for(f of p.filterKey) for(k in d.info) if(f === k) fR[k]= d.info[k];
if(p.filterValue && !fR.useless) for(f of p.filterValue) for(v of d.info) if(Str(v) && f === v) fR[Str(v)]= v;
if(deBug) print('\nDebug: EventData-> ', d, '\n\nDebug: Result-> ', fR, '\n');
if(Str(fR) === '{}' || fR.useless){return;} return fR;}catch(e){ErrorMsg(e,'Efilter()');}}
function ErrorChk(r,e,m,d){ //Shelly.call error check
try{
aC--; if(aC<0) aC= 0;
if(d.CB && d.uD) d.CB(r,d.uD); if(d.CB && !d.uD) d.CB(r);
if(!d.CB && d.uD) print('Debug: ',d.uD); if(e) throw new Error(Str(m));
if(Str(r) && Str(r.code) && r.code !== 200) throw new Error(Str(r));
}catch(e){ErrorMsg(e,'ErrorChk(), call Answer');}}
function Cqueue(){ //Shelly.call queue
try{
if(!cCache[0] && !nCall[0]) return;
while(cCache[0] && aC < callLimit){if(cCache[0] && !nCall[0]){nCall= cCache[0]; cCache.splice(0,1);}
if(nCall[0] && aC < callLimit){Call(nCall[0],nCall[1],nCall[2],nCall[3],nCall[4]); nCall= [];}} if(tH9){Timer.clear(tH9); tH9= 0;}
if(nCall[0] || cCache[0])if(cSp <= 0) cSp= 0.1; tH9= Timer.set(1000*cSp,0,function(){tH9= 0; Cqueue();});}catch(e){ErrorMsg(e,'Cqueue()');}}
function Call(m,p,CB,uD,deBug){ //Upgrade Shelly.call
try{
let d= {};
if(deBug) print('Debug: calling:',m,p); if(CB) d.CB= CB; if(Str(uD)) d.uD= uD; if(!m && CB){CB(uD); return;}
if(aC < callLimit){aC++; Shelly.call(m,p,ErrorChk,d);}else if(cCache.length < cacheLimit){
cCache.push([m,p,CB,uD,deBug]); if(deBug) print('Debug: save call:',m,p,', call queue now:',cCache.length); Cqueue();
}else{throw new Error('to many Calls in use, droping call: '+Str(m)+', '+Str(p));}}catch(e){ErrorMsg(e,'Call()');}}
function Str(d){ //Upgrade JSON.stringify
try{
if(d === null || d === undefined) return null; if(typeof d === 'string')return d;
return JSON.stringify(d);}catch(e){ErrorMsg(e,'Str()');}}
function Cut(f,k,o,i){ //Upgrade slice f=fullData, k=key-> where to cut, o=offset->offset behind key, i=invertCut
try{
let s= f.indexOf(k); if(s === -1) return null; if(o) s= s+o.length || s+o; if(i) return f.slice(0,s);
return f.slice(s);}catch(e){ErrorMsg(e,'Cut()');}}
function Setup(){ //Wating 2sek, to avoid a Shelly FW Bug
try{
if(Main && !tH9){tH9= Timer.set(2000,0,function(){print('\nStatus: started Script _[', scriptN,']_');
if(callLimit > 4){callLimit= 4;} try{Main();}catch(e){ErrorMsg(e,'Main()'); tH9= 0; Setup();}});}}catch(e){ErrorMsg(e,'Setup()');}}
function ErrorMsg(e,s,deBug){ //Toolbox formatted Error Msg
try{
let i=0; if(Cut(e.message, '-104: Timed out')) i= 'wrong URL or device may be offline';
if(Cut(e.message, 'calls in progress')) i= 'reduce _[ callLimit ]_ by 1 and try again, its a global variabel at the end of the toolbox';
if(s === 'Main()' || deBug) i= e.stack; if(Cut(e.message, '"Main" is not')) i= 'define a Main() function before using Setup()';
print('Error:',s || "",'---> ',e.type,e.message); if(i) print('Info: maybe -->',i);}catch(e){print('Error: ErrorMsg() --->',JSON.stringify(e));}}
var tH8= 0, tH9= 0, aC= 0, cCache= [], nCall= [], callLimit= 4, cacheLimit= 40, cSp= 0.1; //Toolbox global variable
var Status= Shelly.getComponentStatus, Config= Shelly.getComponentConfig; //Renamed native function
var info= Shelly.getDeviceInfo(), scriptID= Shelly.getCurrentScriptId(), scriptN= Config('script',scriptID).name; //Pseudo const, variabel
//Toolbox v1.0(base), Shelly FW >1.0.8
Setup();
Alles anzeigen
Eine ausführliche Hilfestellung, wie was zu verwenden ist, findest du hier:
Thema
How to use Toolbox, Toolbox erklärt.
In diesem Thread möchte ich euch erklären wie genau die Toolbox, funktioniert, etwas, das ich mittlerweile in nahezu allen meinen Shelly-Scripts integriert habe.
Was ist die Shelly Script Toolbox?
Die Shelly Script Toolbox ist ein Ensemble von Funktionen innerhalb eines Shelly Scripts, welche von mir entwickelt wurden, um die Verwendung vorhandener Shelly-Funktionen und -Abläufe zu vereinfachen. Sie fungiert im Grunde als ein praktischer Werkzeugkasten, der das Erstellen von Shelly-Scripts…
Was ist die Shelly Script Toolbox?
Die Shelly Script Toolbox ist ein Ensemble von Funktionen innerhalb eines Shelly Scripts, welche von mir entwickelt wurden, um die Verwendung vorhandener Shelly-Funktionen und -Abläufe zu vereinfachen. Sie fungiert im Grunde als ein praktischer Werkzeugkasten, der das Erstellen von Shelly-Scripts…
_[Deleted]_
Hinweis: Die Dokumentation ist noch nicht vollständig, aktueller Zustand --> "Unvollständig"
Viel Spaß mit dem Script,
Tim