Added new Function
This commit is contained in:
parent
5917654afd
commit
7f4bf7ca7e
17
toogle.js
Normal file
17
toogle.js
Normal 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;
|
Loading…
Reference in New Issue
Block a user