View Single Post
  #1   Spotlight this post!  
Unread 17-02-2007, 04:15
Dave K.'s Avatar
Dave K. Dave K. is offline
Engineer/Mentor
FRC #0930
Team Role: Mentor
 
Join Date: Jan 2007
Rookie Year: 2005
Location: WI
Posts: 91
Dave K. is a splendid one to beholdDave K. is a splendid one to beholdDave K. is a splendid one to beholdDave K. is a splendid one to beholdDave K. is a splendid one to beholdDave K. is a splendid one to beholdDave K. is a splendid one to behold
Re: Problems with one of my victors...

Quote:
Originally Posted by Japper View Post
I am having problems with one of my victors...

I calibrated it to the X axis of my port 3 joystick and in my code, if the Joystick is pushed to the left ( p3_x < 20) then I set the PWM03 to 115 and if the joystick is pushed to the right (p3_x > 240) then I set the PWM03 to 140. Then I set the PWM11 to = the joystick value (PWM11 = P3_x) so that I could watch this in the dashboard viewer...

The joystick value ( as seen on PWM11 in the dashboard viewer) when pushed all the way left reads 0 and all the way to the right reads 255 as it should.

The problem is that the motor only rotates when the joystick is pushed to the right (when p3_x = 255)

I removed the M+ & M- from the victor and used the battery to verify that the motor will spin both directions so I know the wiring is correct. Also I double checked to make sure that the control lines were set correctly (black wire to black wire)

Is there something wrong with my victor? I calibrated it and it appears that the values are correct for the joystick and that my code is working.... Why won't it move in the reverse direction when the PWN is set to zero????

What else can I check or how can I verify if it is a victor problem?

Thaks in advance

When pushed to the right, and pwm03 = 140, the resulting positive speed is 140-127 = 13 and in the other direction 127-115 = -12. Depending upon the motor, that might not result in enough voltage to get the motor to overcome friction and allow it to start moving.

You could easily confirm this with a volt meter and watch the resulting voltage applied to the motor when either direction was commanded.

Do you have additional logic that detects that the joystick is within a deadband region and sets the PWM value to 127?

Assuming that you calibrated the speed controller with a stopped PWM value of 127, and set the min/max speeds somewhat near their normal full scale values, then it is probably working as expected... however, if you calibrated with your much smaller values, the speed controller might not have accepted that small of a change as valid values.
__________________
--Dave