|
Re: How do you turn on the Autonomous mode (to test)?
Quote:
|
Originally Posted by Salik Syed
Hi i can't test autonomous, what i did was put some code in user routines where if a joystick trigger is pressed the autonomouse mode var is set to 0 but when i do it nothing happens????? I can still control the robot!
|
Normally, you'd be wanting to set the autonomous_mode = 1.
a la,
Code:
autonomous_mode = p1_sw_top;
if (autonomous_mode)
{
User_Autonomous_Code();
}
__________________
"Rationality is our distinguishing characteristic - it's what sets us apart from the beasts." - Aristotle
|