2013-12-15 18:30:16 -05:00
|
|
|
#include "WPILib.h"
|
|
|
|
|
|
2014-02-25 18:43:40 -05:00
|
|
|
class Robot: public IterativeRobot
|
|
|
|
|
{
|
2013-12-15 18:30:16 -05:00
|
|
|
private:
|
2015-07-24 19:19:40 -04:00
|
|
|
LiveWindow &lw = LiveWindow::GetInstance();
|
2014-02-25 18:43:40 -05:00
|
|
|
|
|
|
|
|
void RobotInit()
|
|
|
|
|
{
|
2013-12-15 18:30:16 -05:00
|
|
|
}
|
2014-02-25 18:43:40 -05:00
|
|
|
|
|
|
|
|
void AutonomousInit()
|
|
|
|
|
{
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
}
|
2014-02-25 18:43:40 -05:00
|
|
|
|
|
|
|
|
void AutonomousPeriodic()
|
|
|
|
|
{
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
}
|
2014-02-25 18:43:40 -05:00
|
|
|
|
|
|
|
|
void TeleopInit()
|
|
|
|
|
{
|
|
|
|
|
|
2013-12-15 18:30:16 -05:00
|
|
|
}
|
2014-02-25 18:43:40 -05:00
|
|
|
|
|
|
|
|
void TeleopPeriodic()
|
|
|
|
|
{
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
}
|
2014-02-25 18:43:40 -05:00
|
|
|
|
|
|
|
|
void TestPeriodic()
|
|
|
|
|
{
|
2015-07-24 19:19:40 -04:00
|
|
|
lw.Run();
|
2013-12-15 18:30:16 -05:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2015-07-24 19:19:40 -04:00
|
|
|
START_ROBOT_CLASS(Robot)
|