Switches? Programming? Help? :)

Hey I programmed joystick triggers to make a motor go back and forth using:


if (p1_sw_trig == 1)
{
pwm06 = 0;
}
if(p2_sw_trig == 1)
{
pwm06 = 254;
}
if((p1_sw_trig == 0) && (p2_sw_trig == 0))
{
pwm06 = 127;
}

Now it worked flawlessly… but then we soldered our three point switches in. On our port 3 serial, we have pins 9 as forward position, 15 as backward postition, and the middle position is grounded on pin 12. On our port 4 switch, we have forward as pin 5, backward as pin 8, and middle grounded with pin 12… or 4… they are both grounds… not sure which one though. Anyway…

pins 9 and 15 are names p3_sw_aux1 and p3_sw_aux2 correct? And pins 5 and 8 are called p4_sw_trig and p4_sw_top, correct?

So we replaced the code with this:


if (p3_sw_aux1 == 1)
{
pwm06 = 0;
}
if(p3_sw_aux2 == 1)
{
pwm06 = 254;
}
if((p3_sw_aux1 == 0) && (p3_sw_aux2 == 0))
{
pwm06 = 127;
}

and …


if (p4_sw_trig == 1)
{
pwm07 = 0;
}
if(p4_sw_top == 1)
{
pwm07 = 254;
}
if((p4_sw_trig == 0) && (p4_sw_top == 0))
{
pwm07 = 127;
}

The problem is… it does not move at all when we start it up. I’ve been messing around with this code for a while now and can’t get the motors spinning. I know for sure the Victor is wired correctly because I put in the code:

pwm07 = 0;

and it spun fine. Is the code correct still? Or did we wire it wrong? Is the ground not wired correctly? Any suggestions are helpful. This is pretty much our last day to work on this soooo anything would help.

Thanks in Advance,
Idaman323

The pinouts for the OI can be found here. The pins for aux1 and aux2 are 10 and 14, not 9 an 15, and the pins for top and trig are 7 and 2, not 5 and 8.

OH, well looking at talble 4.3.2, the table says p3_sw_aux1 and 2 are those pins. Maybe that means something else… okay well thanks, I will try that today when I get to the “shop”.

Thank you!

ps. that guide can be confusing…

Idaman323

Not correct.

You’re getting confused by the fact that ports 2 and 4 each have four extra inputs that are detected as if they were different inputs on ports 3 and 1. Pins 9 and 15 on the port 2 connector are p3_sw_aux1 and p3_sw_aux2.

The inputs you want to use are pins 2, 7, 10, and 14. Unless you can explain exactly why you need to be doing something unusual, don’t use the extra inputs on pins 5, 8, 9, and 15. Especially since those pins are LED outputs on ports 1 and 3.

Okay, i just got confused because I was using port 3 and the variables I saw on the 4.3.2 table were those pins. So when we resolder this stuff, will we still be calling it p3_sw_aux1 and 2 or p2_sw_aux1 and 2.

Im guessing it will be p3 but ya never know…