quick question: is it possible to run a cylic function (eg every second) in the new TE2000 HMI? If so, how can I do so?
You can use the JavaScript method setInterval
.
setInterval(logTwinCat, 1000);
function logTwinCat() {
console.log("Hi TwinCAT!")
}