I 've a question about Timer() function. All knows that this useful function runs a branch every x milliseconds as specified when programming.
But what happens if the branch itself contains a delay() function with a value greater than the Timer() function ??
In other words, what happens in this example ??
Timer 1000, [test]
wait
[test]
delay 1500
Print "Hello World"
wait
I think that the Timer() function starts another cycle only when the branch is completely performed. Is it correct ??
Thank you