Quote:
Originally Posted by RyanN
Pretty much
Code:
wrist_pos = (-11/5)*arm_pos + 1670;
I think that should work in your code without any problems.
|
Not quite... (-11/5) will always evaluate to -2. Try this instead:
Code:
wrist_pos = -11*arm_pos/5 + 1670;