One Joystick Code

Some how i’ve lost my way-

I at one time found and printed a program which was the default code which was modified to use only 1 joystick. I can’t find it anymore, and i can’t access innovationfirst.com because it crashes my computer everytime. If anyone can help, i would greatly appriciate it.
~bobb
Team 804

Here’s a direct link to the pdf:

http://www.innovationfirst.com/FIRSTRobotics/pdfs/OneJoystickControl.pdf

Step 1 : Declare the variables in the “Declare Variable” section.

       Example:
=============in  Declare Variable section=============

PWM1 VAR byte 'define variable for use in Serout command

PWM2 VAR byte 'define variable for use in Serout command

Step 2 : Add the following to the main Program:

=============in MAIN PROGRAM section ================

PWM1 = (((2000 + p1_y - p1_x + 127) Min 2000 Max 2254) - 2000)

PWM2 = (((2000 + p1_y + p1_x - 127) Min 2000 Max 2254) - 2000)

Step 3 : Finally place PWM1 And PWM2 in the Serout command respectively.

Serout USERCPU, OUTBAUD, [255,255, PWM1, relayA, PWM2, relayB, p3_y, p4_y, p1_x, p2_x, p3_x, p4_x, p1_wheel, p2_wheel, p3_wheel, p4_wheel, 127,127,127,127]

Additional Information:

y-axis controls speed
x axis turns
PWM1 - Left Motor
PWM2 - Right Motor

Thx guys- i appriciate it, and so does my team
~bobb
Team 804