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:
parent
726290b8d3
commit
0de735aaa6
6
src/Subsystems/Dashboard.cpp
Normal file
6
src/Subsystems/Dashboard.cpp
Normal file
@ -0,0 +1,6 @@
|
||||
#include "Dashboard.h"
|
||||
|
||||
class Dashboard
|
||||
{
|
||||
|
||||
};
|
1
src/Subsystems/Dashboard.h
Normal file
1
src/Subsystems/Dashboard.h
Normal file
@ -0,0 +1 @@
|
||||
|
@ -42,4 +42,7 @@ void ZaphodBase::TeleopPeriodic()
|
||||
{
|
||||
zBot->handler();
|
||||
}
|
||||
void ZaphodBase::Test()
|
||||
{
|
||||
}
|
||||
START_ROBOT_CLASS(ZaphodBase);
|
||||
|
@ -31,5 +31,6 @@ class ZaphodBase : public IterativeRobot
|
||||
void DisabledPeriodic();
|
||||
void AutonomousPeriodic();
|
||||
void TeleopPeriodic();
|
||||
void Test();
|
||||
};
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user