|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Omni Vex code in easyc?
So im a noob at codeing and im trying to do omni drive in easy c. I would be able to maby do it in mplab but i don't got access to that software. im wondering how to go about doing it in easy c?
any suggestions. o ps.....its v.5 not the shiney new version 2.0. theres not that big of a difference though. any help would be greatly appreciated. |
|
#2
|
||||
|
||||
|
Re: Omni Vex code in easyc?
|
|
#3
|
|||
|
|||
|
Re: Omni Vex code in easyc?
When you say Omni drive, what are trying to say?
Are you thinking about a Mecanum drive? That will be hard to do, since there are not Vex Mecanum wheels (unless you fabricate your own) Are you thinking about a Holononmic drive? 4 wheel 90 degree offset. That would be four omni wheels, one on each face of a square bot. Are you thinking about a 3 wheel 120 degree offset or Kiwi drive? This is a good drive description video Thanks! Foster |
|
#4
|
|||
|
|||
|
Re: Omni Vex code in easyc?
yes....im thinking the 4 wheel 90* off set. Sorry for not clarifying
|
|
#5
|
|||
|
|||
|
Re: Omni Vex code in easyc?
If you search for holonomic drive, you can find a number of posts about it.
Arthur Dutra wrote this code (and posted it) to support a holononmic drive. One joystick stick moves forward/back and side-side (and diagonally) for translation motion. The other joystic moves left/right to rotate, both can be moved at the same time. The platform consists of four omni wheels mounted at 180 degrees from the next corner (ie two go "forward / backwards" two go "left / right" Code is for the WPILibrary, so it should work fine with EasyC. Let us know how you make out. Code:
#include "API.h"
void main ( void )
{
int LF; // Left Front
int RF; // Right Front
int LR; // Left Rear
int RR; // Right Rear
int leftx;
int lefty;
int rightx;
int spin;
while ( 1 )
{
// Get Data
leftx = GetRxInput ( 1 , 4 ) ; // Left Joystick, X Axis
lefty = GetRxInput ( 1 , 3 ) ; // Left Joystick, Y Axis
rightx = GetRxInput ( 1 , 1 ) ; // Right Joystick, X Axis
// Half the input signal (so code does not overflow past 255)
leftx = leftx / 2 ;
lefty = lefty / 2 ;
spin = rightx / 2 ;
// Drive Code Algorithim
LF = RR = lefty - leftx + 127 ;
RF = LR = 255 - lefty - leftx ;
RR = 255 - RR ; // Reverse Direction of RR motor
LR = 255 - LR ; // Reverse Direction of LR motor
// Spin Code Algorithim
RF = RF - spin + 63 ;
RR = RR - spin + 63 ;
LF = LF - spin + 63 ;
LR = LR - spin + 63 ;
// Code overflow prevention
if ( LF < 0 )
{
LF = 0 ;
}
else if ( LF > 255 )
{
LF = 255 ;
}
if ( RF < 0 )
{
RF = 0 ;
}
else if ( RF > 255 )
{
RF = 255 ;
}
if ( RR < 0 )
{
RR = 0 ;
}
else if ( RR > 255 )
{
RR = 255 ;
}
if ( LR < 0 )
{
LR = 0 ;
}
else if ( LR > 255 )
{
LR = 255 ;
}
// Set Motors
SetMotor ( 1 , RF ) ;
SetMotor ( 2 , LF ) ;
SetMotor ( 3 , LR ) ;
SetMotor ( 4 , RR ) ;
}
}
|
|
#6
|
|||
|
|||
|
Re: Omni Vex code in easyc?
stupid question but how do i upload this into easy c....this looks like its for mp lab.
Last edited by xanarchyx : 21-10-2008 at 21:03. |
|
#7
|
||||
|
||||
|
Re: Omni Vex code in easyc?
Just look at the code and match it in EasyC with blocks, you can't just copy and paste.
|
|
#8
|
||||
|
||||
|
Re: Omni Vex code in easyc?
With easyC Pro you can.
|
|
#9
|
|||
|
|||
|
Re: Omni Vex code in easyc?
ok ill try and match it...but i got pro, i haven't been able to figure out how to manually code....like i know you can....im just missing it.
|
|
#10
|
||||
|
||||
|
Re: Omni Vex code in easyc?
Here is the easiest way to do what you wish.
1.) Right click on User Functions -> Add New -> Name it omni and click ok 2.) Click on the project tab. 3.) Right Click on the function name -> Convert to 'C' Code -> Yes 4.) After you function will look like this.... #include "Main.h" void omni ( void ) { <---Paste the code in here } 5.) Paste the code provided between the braces starting at the variables and ending with the last brace. 6.) Rename SetMotor to SetPWM 7.) Goto the UserInclude.h File and under where it says "Add User Code Here" Add a line : void omni (void ); This should work, I tested it out. |
|
#11
|
||||
|
||||
|
Re: Omni Vex code in easyc?
Why is it necessary to cap the values at the maximums and minimums? Does the processor not automatically do this? I've always found it easier to subtract values from full drive and having the motors that need to be full power just have values greater than 255 and subtracting values from the other wheels instead of just starting from half power for everything. That way, you get full speed, but everything still works fine. I've never done a holonomic function, but this usually works fine for homemade arcade drives and the similar.
Also, please correct me when I say the obvious thing I'm missing, but the algorithm doesn't quite look right: Code:
LF = RR = lefty - leftx + 127 ;
RF = LR = 255 - lefty - leftx ;
I'm designing a robot to drive this way for practicing during Elevation, and I've not yet had time to start (notice the 4 weeks between BEST competition and VEX). Any clue what I'm missing? |
|
#12
|
|||||
|
|||||
|
Re: Omni Vex code in easyc?
Quote:
Quote:
For example, the robot is moving right at "full speed" while spinning slightly: 255 = GetRxInput ( 1 , 4 ) ; // Left Joystick, X Axis 127 = GetRxInput ( 1 , 3 ) ; // Left Joystick, Y Axis 180 = GetRxInput ( 1 , 1 ) ; // Right Joystick, X Axis // Half the input signal (so code does not overflow past 255) 128 = leftx / 2 ; 64 = lefty / 2 ; 90 = rightx / 2 ; // Drive Code Algorithim (note how "full speed" only sends half speed values to the motors to avoid saturation). 63 = 63 = 64 - 128 + 127 ; 63 = 63 = 255 - 64 - 128 ; 192 = 255 - RR ; // Reverse Direction of RR motor 192 = 255 - LR ; // Reverse Direction of LR motor // Spin Code Algorithim (Since we were only at half speed values before, the spin values have room to work with) 36 = 63 - 90 + 63 ; // RF 165 = 192 - 90 + 63 ; // RR 36 = 63 - 90 + 63 ; // LF 165 = 192 - 90 + 63 ; // LR Now is this algorithm perfect? No. In the N, E, S, and W directions the robot never travels at maximum speed; only when the robot goes diagonally do the motors reach their limits of zero and 255. You can overcompensate this by saturating the equation by not diving the leftx or lefty variables in half, but this will take away maneuverability. You can experiment with this by tweaking the constants to see how the system responds. A video of this code working is available here: http://www.team228.org/media/video/view/9 Another thing to keep in mind is that this is entirely open-loop; there are no sensors for feedback. Forward is always relative to the front of the robot. By adding a gyro to the robot, getting the angle of the joystick ( angle = atan(lefty/leftx); // I'm pretty sure math.h does everything in radians. You can also write a lookup table to save the processor from imploding. ), getting the angle of the robot (you'll also need to integrate results to keep track of robot angle over time), then you can then use slightly different algoritms to make sure the robot always goes in the direction of the joystick - no matter what way the robot is pointing. But that's a good exercise that one should experiment with and learn on their own. I posted the my basic holonomic drive code just so people can get past that initial hump of figuring out how to make it work (and judging by the number of teams I see with omni/mecanum drive that never strafe, this hump can be high). |
|
#13
|
||||
|
||||
|
Re: Omni Vex code in easyc?
Quote:
|
|
#14
|
||||
|
||||
|
Re: Omni Vex code in easyc?
For those of you interested, I've posted a scaled holonomic drive library on VEX Forums here. The features of this library:
-squarejoy() - A function which will perform squaring on a PWM value (still has a range of about 0-255, one or two points less). -charabs() - Perform an absolute value function with 127 as center instead of 0. -holodrive() - Function for holonomic driving that can be used portably. -Scaled - you can always reach full value of the motor speeds, but scaling maintains maneuverability. When a motor goes out of range, it scales all of the motors down to the wheel that is most out of range. -Documented code! - I've tried to comment everything as much as possible so you can tell what's going on. Not to mention the description on the VEX Forum page. Anyone is free to use this code, and ask me questions about it. As for use with EasyC, I'm not quite sure about using actual code in !EasyCPro. All of this was done with WPILib under MPLAB. But maybe someone here could transform the header and .c file I loaded into EasyC project files? I'm not sure if you can just include source code files in an EasyC project, but if you can, that should work too. |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| 2008 Omni Drive Code Help | Vasily Zaitsev | Technical Discussion | 5 | 27-01-2008 00:57 |
| pic: vex omni drive | 1902_Battery_SGT | FIRST Tech Challenge | 6 | 28-05-2006 17:55 |
| pic: simple omni vex bot | colin340 | FIRST Tech Challenge | 15 | 05-05-2006 17:16 |
| EasyC Default Code | Team 1649 | Programming | 13 | 29-01-2006 11:52 |
| Vex Easyc vs Mplab | Joohoo | Programming | 17 | 27-01-2006 08:22 |