2
0
mirror of https://github.com/team2059/Zaphod synced 2024-12-18 20:12:28 -05:00

Added a Dashboard class and added test function

This commit is contained in:
Adam Long 2014-06-08 08:07:25 -04:00
parent 726290b8d3
commit 0de735aaa6
4 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#include "Dashboard.h"
class Dashboard
{
};

View File

@ -0,0 +1 @@

View File

@ -42,4 +42,7 @@ void ZaphodBase::TeleopPeriodic()
{ {
zBot->handler(); zBot->handler();
} }
void ZaphodBase::Test()
{
}
START_ROBOT_CLASS(ZaphodBase); START_ROBOT_CLASS(ZaphodBase);

View File

@ -31,5 +31,6 @@ class ZaphodBase : public IterativeRobot
void DisabledPeriodic(); void DisabledPeriodic();
void AutonomousPeriodic(); void AutonomousPeriodic();
void TeleopPeriodic(); void TeleopPeriodic();
void Test();
}; };
#endif #endif