I ned send rnumer to reapyt iterval from ui interface or variablia to inject node. How can i do that?
You can’t set the interval for the inject node remotely.
But you can always use a function node with a simple javascript setInterval command to do the same (as long as you clear any existing timer before setting the new one)
Thank you. Works.
var aaa= 3000
setInterval(function() {node.send(msg);}, aaa);