2015-01-16 19:49:16 -05:00
|
|
|
#include "DentRobot.h"
|
|
|
|
DentRobot::DentRobot():
|
|
|
|
driveCommand(new Drive()){
|
|
|
|
printf("Initialized");
|
|
|
|
}
|
|
|
|
void DentRobot::RobotInit(){
|
|
|
|
printf("Initializing");
|
|
|
|
CommandBase::init();
|
|
|
|
}
|
|
|
|
void DentRobot::DisabledPeriodic(){
|
|
|
|
Scheduler::GetInstance()->Run();
|
|
|
|
}
|
|
|
|
void DentRobot::AutonomousInit(){
|
|
|
|
}
|
|
|
|
void DentRobot::AutonomousPeriodic(){
|
|
|
|
Scheduler::GetInstance()->Run();
|
|
|
|
}
|
|
|
|
void DentRobot::TeleopInit(){
|
|
|
|
}
|
|
|
|
void DentRobot::TeleopPeriodic(){
|
|
|
|
Scheduler::GetInstance()->Run();
|
|
|
|
}
|
|
|
|
void DentRobot::TestPeriodic(){
|
|
|
|
}
|
2015-01-11 16:02:49 -05:00
|
|
|
START_ROBOT_CLASS(DentRobot);
|