Problem with Command count
Quote:
Originally Posted by Melanie
PAUSE will give you pauses in steps of 1mS.
If you want less than 1ms, you must use PAUSEUS.
PAUSEUS 55 ' Pause for 55uS (ie 0.055 of a mS)
tHANKS Melanie
I have a second ( last for today!) question . When somebody has a 2 channel incremenatl encoder (channel a and channel b) can he count the counts of the incremenatl encoder with the command count?My manual says
' Count # of pulses on Pin1 in 100 milliseconds
COUNT PORTB.1, 100, W1
But if i want to put the period not 100 milliseconds but 0.055mS will the following work?:
Quote:
COUNT PORTB.1, 0.055, W1
Please answer me!