![]() |
1 Joystick Control
The FRC code for 1 joystick control is
Code:
p1_x = 255 - p1_y;and when in move the joystick up and down the robot moves left and right should is switch all the axises to the opposite or what Thanks in advance Barry Preston STAG Robotics Team #1997 Programming and Communications Officer |
Re: 1 Joystick Control
That code assumes that both motors (or sets of motors) move the robot in one direction when they are going forwards. In order to make it work for conventional systems, you need to reverse one of the sides. Simplest way to do that is subtract the value you assign to the PWM outputs from 254:
Code:
p1_x = 255 - p1_y; |
Re: 1 Joystick Control
It could be that one side of your motors need to be run backwards. In the standard toughbox, if both motors on both sides are run CCW then it will turn. If one is run CW and one CCW then it will go foward.
So I'm not sure how you have wired your motors, but this could be fixed in code or fixed by reversing the red and black leads on one side of your robot drive motors. |
Re: 1 Joystick Control
Quote:
Code:
pwm13 = pwm14 = 255 - Limit_Mix(2000 + p1_y + p1_x - 127); |
Re: 1 Joystick Control
See also this thread.
Hmmm... I never thought about putting the subtraction outside of the Limit_Mix() function. I had it inside: Code:
//Put modified joystick numbers into the four motorsReversing motors isn't the only problem us programmers have to go thru. We loaded up code on our brand-spanking new robot that we've been testing on last year's robot for the past -- well, the past year, come to think of it. New robot goes all which-way crazy directions. (Didn't help that one side's motors weren't working.) Shop says "programming error!" (Yeah, right!) Check wiring from last year to this year. Red-to-red, black-to-black. Everything checks out. Turns out (40 minutes later!) new robot has one less set of gears, so motor output to wheels is now opposite from last year. Shop says "oh yeah." Sigh.... But this year we had our autonomous working (on last year's robot) before they even built the robot! Woo-hoo! :cool: |
Re: 1 Joystick Control
Quote:
Quote:
Quote:
Of course, 254 is only the right value to subtract from in theory. With the Victor's observed "neutral bias", though, it might actually work better to choose 132 as the mirror point instead of 127, and subtract from 264 instead (making sure to limit the result to 254 after the subtraction). |
Re: 1 Joystick Control
ok..... Forward goes foreward and backwards goes backwards... But left goes right and right goes left
|
Re: 1 Joystick Control
Quote:
Maybe post Your code? |
Re: 1 Joystick Control
Quote:
In my defense (meager as can be) I can only say I did put it inside the Limit_Mix() function, so that the function did keep the numbers in range. I'll have to check my spreadsheet numbers again, and try the 132 center point. |
Re: 1 Joystick Control
This is easier.
Code:
left_motor = speed - turn_rate; |
| All times are GMT -5. The time now is 23:50. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi