|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#6
|
|||
|
|||
|
Re: Autonomous With Camera
Depending on your autonomous strategy is what color you want. Possibly green if you want the vision tetra?
Here is what we have for tracking green autonomously Code:
char look_for_green=1;
...
while (autonomous_mode) /* DO NOT CHANGE! */
{
if(look_for_green)
{
camera_find_color(GREEN);
look_for_green=0;
}
|
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Scripting Setup and the Camera + Serial Port Drivers | CJO | Programming | 22 | 11-01-2006 17:42 |
| Unresponsive camera | neilsonster | Programming | 9 | 17-02-2005 08:51 |
| CMUCam2 Camera Code - Are important parts commented out? | Mr. Lim | Programming | 4 | 14-01-2005 12:11 |
| autonomous mode problem on field | Chris_C | Programming | 17 | 26-03-2003 19:11 |