Log in

View Full Version : cant get into autonomus


blindguyinanorg
19-02-2004, 13:49
i followd the directions int the manual(set team # to 0 then untether) still getting no autonomus. what do i do, a program based autonomous would be nice so i can use dasboard

The Lucas
19-02-2004, 14:11
You could always make an autonoumous dongle. Then you could go into autonomous at the flip of a switch instead of setting the team # to zero all the time. Directions from Innovation First on how to build one are here (http://innovationfirst.com/FIRSTRobotics/pdfs/Competition_Port_Pinout_Guide.PDF) Also the disable switch is a very useful safetey feature

hobbes
19-02-2004, 15:01
are you sure you are not in autonomous mode? (check the disable light on the operator interface, if it is blinking yellow, the robot is in autonomous mode). it may be that you are in autonomous mode, but the robot does nothing. i had a similar problem ...... http://www.chiefdelphi.com/forums/showthread.php?t=24386

blindguyinanorg
19-02-2004, 18:19
i know all the LEDs are blinking green

bstempi
20-02-2004, 13:50
If you want to use dashboard, the best thing to do is to make the dongle. That way, if you see that something is seriously wrong or you want to kill the bot, you can bring it out of autonomous with the flick of a switch. You can also disable the bot using the same dongle. This is useful if your controler is out and people are bumping it, but you don't want to turn it off. Disableing kills all of the inputs from the OI.

deltacoder1020
20-02-2004, 13:58
If you want to use dashboard, the best thing to do is to make the dongle. That way, if you see that something is seriously wrong or you want to kill the bot, you can bring it out of autonomous with the flick of a switch. You can also disable the bot using the same dongle. This is useful if your controler is out and people are bumping it, but you don't want to turn it off. Disableing kills all of the inputs from the OI.

actually, disabling does not kill any of the inputs, it just kills the outputs from the robot controller to any other device, such as PWMs, et cetera.

Phil_Lutz
20-02-2004, 14:44
On your OI you can set a trigger.


#define AUTO_BUTTON p1_trig // don't quote me on the variable

if ((autonomous_mode =0 || AUTO_BUTTON = 1)
{
// Execute autonomous code
}

(I don't have the exact code in front of me)

Then All you need to do is pull the trigger and your robot jumps into auton.
Release the trigger to stop it. (great for stopping a run-away robot :))

Phil

Astronouth7303
20-02-2004, 17:06
I like port 3 for stuff like this: 1&2 for driving, 4 for a dial box, 3 for debug/advanced.