Web Aktionen nach x-Minuten auslösen
Hallo!
Ich habe eine WLAN-Steckdose mittels IFTTT in die Web Action eingebunden, um den 3D-Drucker auszuschalten. Weiß jemand, ob ich einstellen kann, dass deser Befehl erst nach x-Minuten ausgelöst wird, damit der Drucker vor Abschalten auskühlen kann?
Comments
@timedCall name timeoutMS function_name
Calls
function_name
aftertimeoutMS
milliseconds. It does not repeat. Thename
can be used to stop the timer with @deletedTimedCall. If you need an interval, you need to call the function with @timedCall at the end of the function. In that case make sure it is never started twice, or you end up with increasing amount of calls until you have no time left for printing! Best is to always have some exit conditions in the called function like when you wait for a temperature to be reached, but disabling heater would stop loop as well.@deleteTimedCall Name
Deletes all active monitors with the name
Also den ifttt call in eine Funktion setzen die in x ms aufgerufen wird. Das gute ist der restliche code wird erst mal weiter verarbeitet also job beenden etc, und wenn die Zeit um ist wird die Funktion aufgerufen. Mit function istName
.@func shutXYDown
....
@endfunc
gemeint. Einfach vor dem code reinschreiben reicht.