Difference between revisions of "Servo skeleton with fast & slow interrupts"

From Mech
Jump to navigationJump to search
 
 
Line 1: Line 1:
Check out the Pololu.c code [http://peshkin.mech.northwestern.edu/pic/code/ServoSkeleton/|here]. This is very simple code to control two motors to run at the same speed. A 1 ms interrupt service routine (ISR) is used to check the encoders of two motors to see if the motors have moved. Note that if your encoder pulses come too quickly, you will miss counts by this simple polling, so this code is only appropriate for low encoder pulse rates. A 13.1 ms ISR calculates a control law: if encoder 1 is ahead of encoder 2, slow motor 1 and speed motor 2, and vice-versa.
Check out the Pololu.c code [http://peshkin.mech.northwestern.edu/pic/code/ServoSkeleton/ here]. This is very simple code to control two motors to run at the same speed. A 1 ms interrupt service routine (ISR) is used to check the encoders of two motors to see if the motors have moved. Note that if your encoder pulses come too quickly, you will miss counts by this simple polling, so this code is only appropriate for low encoder pulse rates. A 13.1 ms ISR calculates a control law: if encoder 1 is ahead of encoder 2, slow motor 1 and speed motor 2, and vice-versa.

Latest revision as of 12:49, 21 February 2008

Check out the Pololu.c code here. This is very simple code to control two motors to run at the same speed. A 1 ms interrupt service routine (ISR) is used to check the encoders of two motors to see if the motors have moved. Note that if your encoder pulses come too quickly, you will miss counts by this simple polling, so this code is only appropriate for low encoder pulse rates. A 13.1 ms ISR calculates a control law: if encoder 1 is ahead of encoder 2, slow motor 1 and speed motor 2, and vice-versa.