jerrym | 1815d88 | 2013-02-14 04:21:29 +0000 | [diff] [blame] | 1 | // RobotBuilder Version: 0.0.2
|
| 2 | //
|
| 3 | // This file was generated by RobotBuilder. It contains sections of
|
| 4 | // code that are automatically generated and assigned by robotbuilder.
|
| 5 | // These sections will be updated in the future when you export to
|
| 6 | // C++ from RobotBuilder. Do not put any code or make any change in
|
| 7 | // the blocks indicating autogenerated code or it will be lost on an
|
| 8 | // update. Deleting the comments indicating the section will prevent
|
| 9 | // it from being updated in th future.
|
| 10 | #include "AutonomousCommand.h"
|
| 11 | AutonomousCommand::AutonomousCommand() {
|
| 12 | // Use requires() here to declare subsystem dependencies
|
| 13 | // eg. requires(chassis);
|
| 14 | // BEGIN AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=REQUIRES
|
| 15 | // END AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=REQUIRES
|
| 16 | }
|
| 17 | // Called just before this Command runs the first time
|
| 18 | void AutonomousCommand::Initialize() {
|
| 19 |
|
| 20 | }
|
| 21 | // Called repeatedly when this Command is scheduled to run
|
| 22 | void AutonomousCommand::Execute() {
|
| 23 |
|
| 24 | }
|
| 25 | // Make this return true when this Command no longer needs to run execute()
|
| 26 | bool AutonomousCommand::IsFinished() {
|
| 27 | return false;
|
| 28 | }
|
| 29 | // Called once after isFinished returns true
|
| 30 | void AutonomousCommand::End() {
|
| 31 |
|
| 32 | }
|
| 33 | // Called when another command which requires one or more of the same
|
| 34 | // subsystems is scheduled to run
|
| 35 | void AutonomousCommand::Interrupted() {
|
| 36 | }
|