Thread: Functions
View Single Post
  #5   Spotlight this post!  
Unread 12-02-2012, 00:39
WizenedEE's Avatar
WizenedEE WizenedEE is offline
Registered User
AKA: Adam
FRC #3238 (Cyborg Ferrets)
Team Role: Leadership
 
Join Date: Jan 2011
Rookie Year: 2010
Location: Anacortes, WA
Posts: 395
WizenedEE is a name known to allWizenedEE is a name known to allWizenedEE is a name known to allWizenedEE is a name known to allWizenedEE is a name known to allWizenedEE is a name known to all
Re: Functions

Code:
class myRobot : SimpleRobot {
  RobotDrive drivetrain;

  void MoveFwd2Sec() {
    drivetrain.ArcadeDrive(1, 0);
    Wait(2);
    drivetrain.ArcadeDrive(0,0);
  }
public:
  void Autonomous() {
    MoveFwd2Sec();
  }
};
Reply With Quote