Added new Function

This commit is contained in:
unixweb 2020-06-20 09:46:18 +02:00
parent 5917654afd
commit 7f4bf7ca7e

17
toogle.js Normal file
View File

@ -0,0 +1,17 @@
/*
if we receive a true we toogle output
and store the new state in a local context
with a unique name
*/
var fname = "toggle1";
if(msg.payload === true){
if(context.get(fname) === false){
msg.payload = true;
}else{
msg.payload = false;
}
context.set(fname, msg.payload);
}
return msg;