Quote Originally Posted by luxornet View Post
For large amount of time, Pause does'nt seem to work well, the measured period is less than I expected.
Code:
main:
high Led
For i = 1 to 30
pause 100
next i
low Led
for i = 1 to 30
pause 100
next i
goto main
Above code produced about 1Hz on Led pin and not 1/6Hz!
You are pausing for 3 seconds instead of 1 second.