inital commit

This commit is contained in:
2015-05-15 20:32:13 -06:00
commit 540aa25473
9 changed files with 294 additions and 0 deletions

39
src/Robot.cpp Normal file
View File

@@ -0,0 +1,39 @@
#include "WPILib.h"
class Robot: public IterativeRobot
{
private:
LiveWindow *lw;
void RobotInit()
{
lw = LiveWindow::GetInstance();
}
void AutonomousInit()
{
}
void AutonomousPeriodic()
{
}
void TeleopInit()
{
}
void TeleopPeriodic()
{
}
void TestPeriodic()
{
lw->Run();
}
};
START_ROBOT_CLASS(Robot);