-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandBasedRobot.cpp
46 lines (37 loc) · 1.03 KB
/
CommandBasedRobot.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "WPILib.h"
#include "Commands/Command.h"
#include "CommandBase.h"
//#include "Commands/AutonomousGroup.h"
class CommandBasedRobot : public IterativeRobot {
private:
Command *autonomousCommand;
virtual void RobotInit() {
CommandBase::init();
/*autonomousCommand = new AutonomousGroup();*/
}
virtual void AutonomousInit() {
/*
CommandBase::autonomousEnabled = true;
autonomousCommand->Start();
m_watchdog.SetEnabled(false);*/
}
virtual void AutonomousPeriodic() {
/*
Scheduler::GetInstance()->Run();
*/
}
virtual void TeleopInit() {
// This makes sure that the autonomous stops running when
// teleop starts running. If you want the autonomous to
// continue until interrupted by another command, remove
// this line or comment it out.
//autonomousCommand->Cancel();
//CommandBase::autonomousEnabled = false;
//m_watchdog.SetEnabled(false);
}
virtual void TeleopPeriodic() {
Scheduler::GetInstance()->Run();
m_watchdog.Feed();
}
};
START_ROBOT_CLASS(CommandBasedRobot);