|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Autonomous Driving
What our robot currently does is move around randomly.
This is that code Code:
m_robotDrive->Drive(ajoysticky,aajx); Wait(2.0); aajx = aajx * .5; m_robotDrive->Drive(ajoysticky,aajx); Wait(3.0); aajx = aajx * -.1; m_robotDrive->Drive(ajoysticky,aajx); Wait(4.0); aajx = aajx * -.1; m_robotDrive->Drive(ajoysticky,aajx); Wait(6.0); aajx = aajx * -.8; m_robotDrive->Drive(ajoysticky,aajx); Wait(5.0); aajx = aajx * -1.2; m_robotDrive->Drive(ajoysticky,aajx); I would assume something similar to this Code:
RobotDrive *m_robotDrive; Jaguar* rightmotor; Jaguar* leftmotor; m_robotDrive = new RobotDrive(1,2); rightmotor = new Jaguar(1); leftmotor = new Jaguar(2); m_robotDrive->Drive(1,0) Wait(3.0); (Set right motor and left motor to 1) so it will cause one side to go forward and the other to go in reverse (Both are 1 because one cim has to go in reverse) -Dan |
|
#2
|
||||
|
||||
|
Re: Autonomous Driving
under the autonomous portion of the code do something like:
rightmotor->Set(1);// motor speeds range from -1 to 1 leftmotor->Set(1);// so this sets both motors full speed forward Wait(3.0); //Both motors will remain full speed forward for 3 seconds rightmotor->Set(-1);// right motor turns backward full speed leftmotor->Set(1);// left motor turn forward full speed Wait(2.0);// So the robot will spin in circles(right) for 2 seconds rightmotor(0.0);// stop right motor leftmotor(0.0);// stop right motor I hope this helps. I put the comments in there so you can see what is going on. |
|
#3
|
|||
|
|||
|
Re: Autonomous Driving
Thanks I will let you know how it goes when I test it on our robot!
|
|
#4
|
||||
|
||||
|
Re: Autonomous Driving
The spin move seems to be popular.
|
|
#5
|
|||
|
|||
|
Re: Autonomous Driving
Haha, I used a timer class instead of Wait. Why didn't I use wait
![]() |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Driving Tips? | Betty_Krocker | General Forum | 40 | 23-02-2008 10:12 |
| Driving, What to do? | shorterboarder | General Forum | 0 | 19-02-2006 18:35 |
| Driving at Last! | The_Goodie | Robot Showcase | 4 | 10-02-2005 20:23 |
| driving at noon | Adam Collet | General Forum | 6 | 20-09-2003 23:40 |
| Driving a clutch | Kevin A | Chit-Chat | 18 | 03-07-2003 16:02 |