|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
||||
|
||||
|
Autonomous Code Example
We seem to be have a hard time finding where to input code for any autonomous code in the 2004 Edu controller code. Is there anyone out there that would be willing to share their code they have been working to help us get started with ours?
Thanks, Matthew Ubergeeks |
|
#2
|
||||
|
||||
|
Re: Autonomous Code Example
Quote:
http://www.innovationfirst.com/FIRST...umentation.htm -Greg The Great |
|
#3
|
||||
|
||||
|
We have been reading the manual from innovation first but I was hoping to look at some code examples of working autonomous code.
|
|
#4
|
||||
|
||||
|
Quote:
http://www.innovationfirst.com/FIRST...10-28-2003.zip -Greg The Great |
|
#5
|
|||||
|
|||||
|
We have the default code.
We're having difficulties getting the RC to respond to anything. The PWM's just stay at 127 no matter what values we try to enter into them and/or change with code. We downloaded the EduController from the White Papers and tried to dissect that, but it was a bit over our heads seeing as how we're not exactly the most experienced with C. What we really need is to know WHAT to put...I think we've figured out where to put it (Mostly because it says "Put your own code here"...but yes.), so if anyone out there can show us a brief example of how to make the robot go forward. I think we're merely changing the wrong variables (clinging to my PBASIC p2_y and pwm02 variables...), but maybe I'm just inputting the code wrong? Thanks for any help you can offer. ![]() |
|
#6
|
||||
|
||||
|
Quote:
Possibility: Maybe you have a line in your code, where you declare your variables... It might be set to neutral, and whenever you go into your loop it just keeps it at neutral. Check that first, that often is the problem. -Greg The Great |
|
#7
|
||||
|
||||
|
ok, it goes something like this (in my mind)
1. Check to see if the autonomous_mode bit is set. You may opt to skip this part while testing your auto-code, or alternatively you can try this . 2. The output variables for the PWM outputs are PWM01 - PWM08. A simple statement like PWM01 = 255; PWM02 = 255; should work. 3. You might try creating functions such as go_forward() { PWM01 = 255; PWM02 = 255; } turn_right() { PWM01 = 255; PWM02 = 0; } and such. Something I suggest even more is that you create your own aliases in alias.h in ways such as #define leftDriveMotor PWM01 #define rightDriveMotor PWM02 and then use the leftDriveMotor and rightDriveMotor variables in all of your autonomous code. That way, when your electrical guy accidentally misreads the schematics and plugs the left motor into PWM 2 and the team decides its a software bug, it's all of three keystrokes to rectify. (This seems to happen a lot in my team... grrr) |
|
#8
|
||||
|
||||
|
Quote:
Check the obvious before changing the program. Did you debug? -Greg The Great |
|
#9
|
||||
|
||||
|
That's a nice way to start, but you have to code out your autonomous routine, and that can make it harder to tweak.
The method I use is arrays. Yes, fun old arrays. For Example: const int Func[13][3] = { {84, 170, 40}, {170,170,60}, {84,170,20}, {170,170,30}, {84,170,20}, {170,170,30}, {84,170,20}, {170,170,60}, {84,170,40}, {170,170,30}, {84,170,20}, {170,170,30}, {84,170,40} }; Then you only need a simple strand of general cod in your Process_Master_uP routine: if (F_Count < MAX_FUNC) { counter ++; if (counter > Func01[F_Count][2]) { counter =0; F_Count ++; } if (F_Count == MAX_FUNC) //Comment out this if for no loop. { F_Count = 0; counter = 0; } pwm02 = Func01[F_Count][0]; pwm01 = Func01[F_Count][1]; } Now, you could shorten this down to a 2D array, since all the variable in Column 2 are the same. I left it open because I change that array around alot. You could increase the dimensions so several different auto modes could be within one array, and the switch could be applied to one array element. (BTW, for those of you out there who would like to tinker a bit, what does the array listed above do? HINT: It writes something. PWM01 is the left drive(facing reverse) and PWM02 is the right) Now, someone may come along and tell you that it's a rough process mapping out all your array values and hard coding them in, but I solve this with my own program, that I'm working on called eduCAD. The program gets a spec sheet on your edubot, generates some basic variables for use and calculation etc. Then you draw out the path of motion for the bot. It then calculates all the data to form a final array which is dumped to a custom include file that contains different auto arrays. I plan on posting eduCAD on CD once it's more complete. I just planned on making it more usable with the full robot as well, however, and I'm working on making it a win32 prog(rather than DOS )Anyway, if you have any specific questions, just PM me, I'm more than willing to help with any programming issues anyone's having. |
|
#10
|
||||
|
||||
|
Quote:
Is the count automatically defined, or does it need to be custom inserted into the loop? -Greg The Great |
|
#11
|
||||
|
||||
|
I'm assuming you mean the counter variable. Upon initing the prog, it's set to 0. It counts up until it reaches the counter time limit for a specific function (the third array element)
MAX_FUNC is the total number of functions. You can modify the code by commenting out the reset routine so that it won't repeat. Since this is in user_routines.c, it clocks every 17ms which means 58 cycles is about 1 second. The final array element is the number of cycles for the first two elements to be outputted to the motors. ie: {127,130,60} ^ ^ ^ Left Out || Number of Cycles to output Right out If your'e talking about F_Count, that's just the function you want to start with. It's defined at the beginning as 0 usually, but you can have 2 different modes in one array by refining the F_Count's start value and the MAX_FUNCs value I hope that answers your question. |
|
#12
|
||||
|
||||
|
Quote:
Thanks, -Greg The Great |
|
#13
|
||||
|
||||
|
I just received this email from FIRST.
By now most teams have received the FIRST EDUrobobtics kit or the new upgraded control system. FIRST is proud to unveil the new EDUrobotics System Guide developed specifically for FIRST by Carnegie Mellon University and The National Robotics Engineering Consortium. Please go to our homepage at www.usfirst.org and under "What's New" click on the EDUrobotics System Guide to get started. This interactive website is an excellent way for your team to learn C programming and other important FIRST Robotics content as you prepare for the upcoming competition season. The website will be adding modules in the upcoming days. Just click on Content Updates for more learning modules and other information. All teams will receive a CDrom of this material, including Challenges you can run in your own classroom, in the kit of parts in January. We hope you find the EDUrobotics System Guide helpful not only preparing your team but also introducing robotics to others. Go Teams! Matthew Ubergeeks |
|
#14
|
||||
|
||||
|
What do you mean by "reserve" counter, and how does that relate to a gosub?
You can pretty much do everything (and more) with the new controller that the old one could do. |
|
#15
|
||||
|
||||
|
Quote:
I am talking about compiling the code, with a "reserve" without using something simple like indicators. -Greg The Great |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| autonomous mode problem on field | Chris_C | Programming | 17 | 26-03-2003 19:11 |
| Autonomous code tutorial | miketwalker | Programming | 2 | 23-02-2003 12:28 |
| Overcomplicated Autonomous Code | EbonySeraphim | Programming | 33 | 20-02-2003 21:53 |
| Autonomous code | PBoss | Programming | 7 | 14-01-2003 15:29 |
| Autonomous Code | Adrian Wong | Robotics Education and Curriculum | 1 | 18-11-2002 22:34 |