Go to Post What should the lesson of FIRST be? Work within your resources to build the most effective machine that you can--and, at the same time, work to increase those resources. - Billfred [more]
Home
Go Back   Chief Delphi > Other > VEX
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #3   Spotlight this post!  
Unread 07-04-2008, 19:29
programMORT11
 
Posts: n/a
Re: using mplab with vex

Basically, you would use Kevin Watson's FRC code and use that as your project file, since VEX and FRC both use the PIC8717F22 as a base.

Analog inputs (used for analog sensors like a light sensor) are defined as rc_ana_in01, etc. But to get an input from them you need to use the ADC function, so you would do Get_ADC_Result(rc_ana_in01) to get that value.

Digital inputs are a lot simpler, and you can simply retrun rc_dig_in01.

Digital outputs are rc_dig_out01 etc, but only certain ports can be used as digital outputs.

Motors and servos, are controlled by pwm definitions so you would say, pwm01 = 255 for the motor on motor input one to go full forward (255 full forward, 127 neutral, 0 full backward)

Transmitters i.e., the joysticks, are defined as PWM_in1 and so on. Your defintions can go up to PWM_in12 since you can use two tranmitters, with the second tranmitter using the range from 7 to 12. The good thing about the joysticks is that they map directly to the motors, so when
pwm01 = PWM_in1, if PWM_in1 = 255 (full forward), then you have pwm01 going full forward.

The buttons on the back of the VEX transmitter (Channel 5 and 6) are defined using BUTTON_FWD_THRESH as the button on the top, and BUTTON_REV_THRESH as the button on the bottom.

if(PWM_in6 > BUTTON_FWD_THRESH)
pwm06 = 255;
else if (PWM_in6 < BUTTON_REV_THRESH)
pwm06= 0;
else
pwm06=127;

The above code says that if the button on the top is pushed the motor goes full forward, if the button on the bottom is pushed, full backward, otherwise stay on neutral.

The most important thing about this code is knowing where to place it. ALL teleop code that needs to be executed must be placed in user_routines.c in Proccess_Data_from_Master_uP(). You can obviously make functions in other files in order to modularize your code, but if it's run in teleop mode (with the transmitter) you need to place the function calls in here.

Autonomous code is found in user_routines_fast.c and in the if case "if(autonomous_mode)" or something like that. Autonomous code can only be implemented if called in that if case, since this prevents sabotage during the competition.

Make sure that if you do write your own functions to handle the robot, like with the transmitter, that you comment out Default_Routine() in Process_Data_from_Master so that you don't have multiple definitions getting passed, and your robot not moving.

There is a lot of documentation in Kevin's code, like aliases, so it would be good to read through it, and there is always the documentation on the VEXLabs site.
Reply With Quote
 


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Using a VEX Receiver with Non-Vex Equipment akaria VEX 26 06-09-2008 00:55
Can't enter Vex autonomous mode when using MPLab Redneck Programming 4 23-11-2007 01:16
Encoder Help with VEX and MPLAB qnetjoe Programming 5 11-03-2007 21:04
Vex Programming with MPLAB and IF loader Joohoo Programming 3 27-07-2006 18:18
using the MPLAB IDE MPLAB SIM simulator WizardOfAz Programming 1 03-11-2003 01:24


All times are GMT -5. The time now is 21:25.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi