Go to Post Students and engineers should work side by side, actually inspiring each other. - Andy Baker [more]
Home
Go Back   Chief Delphi > Technical > Robotics Education and Curriculum
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 17-12-2003, 10:17
Mark McLeod's Avatar
Mark McLeod Mark McLeod is online now
Just Itinerant
AKA: Hey dad...Father...MARK
FRC #0358 (Robotic Eagles)
Team Role: Engineer
 
Join Date: Mar 2003
Rookie Year: 2002
Location: Hauppauge, Long Island, NY
Posts: 8,917
Mark McLeod has a reputation beyond reputeMark McLeod has a reputation beyond reputeMark McLeod has a reputation beyond reputeMark McLeod has a reputation beyond reputeMark McLeod has a reputation beyond reputeMark McLeod has a reputation beyond reputeMark McLeod has a reputation beyond reputeMark McLeod has a reputation beyond reputeMark McLeod has a reputation beyond reputeMark McLeod has a reputation beyond reputeMark McLeod has a reputation beyond repute
Re: Autonomous modes?

Quote:
Originally Posted by Buster
Looking for an autonomous code to use as a test. please reply ASAP
/************************************************** *******
* FUNCTION NAME: Sample_Auto_1
* PURPOSE: Primitive form of autonomous mode program
* This overrides the PWM joystick inputs
* CALLED FROM: user_routines.c, Default_Routine
* ARGUMENTS: none
* RETURNS: void
************************************************** *******/
void Sample_Auto_1(void)
{
static unsigned int counter=0;

/* Sample primitive autonomous mode
* This uses a counter of the number of slow loops as a measurement for how long
* to execute any of the PWM overrides below.
* Note: A timer can also be used in place of "counter"
*/

if (counter<100){
counter++;
PWM_in1 = 200;
PWM_in2 = 200;
}
else if(counter< 150){
counter++;
PWM_in1 = 127;
PWM_in2 = 10;
}
else if(counter< 500){
counter++;
PWM_in1 = 127;
PWM_in2 = 127;
}
else if(counter<700){
counter++;
PWM_in1=254;
PWM_in2=1;
}
else if(counter<900){
counter++;
PWM_in1=1;
PWM_in2=127;
}
else /* Make sure it always stops at the end */
{
PWM_in1 = 127;
PWM_in2 = 127;
}

} /* End Sample_Auto_1 */
__________________
"Rationality is our distinguishing characteristic - it's what sets us apart from the beasts." - Aristotle
 


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
A better autonomous method.. randomperson Programming 4 24-02-2004 18:02
crazy idea for autonomous Mike Ciance Programming 16 24-04-2003 21:50
autonomous location manodrum Programming 4 02-04-2003 08:05
autonomous mode problem on field Chris_C Programming 17 26-03-2003 19:11
Autonomous Kill Switch UCGL_Guy Programming 8 15-01-2003 17:39


All times are GMT -5. The time now is 22:07.

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