Quote Originally Posted by chips123 View Post
With my millisecond values are integers, I don't expect 100% accuracy. Using PBP, how do I get from say, 16mS to 62Hz ?

Scott
Time and Frequency are reciprocal, so you can use a constant (in this case 1000) and divide you mS value into it. For example:

1000 / 16mS = 62Hz.

Or if you had 40mS -

1000 / 40mS = 25Hz etc.

You are probably kicking yourself right about now

Regards,

Andy