mirror of
https://github.com/team2059/Zaphod
synced 2024-12-18 20:12:28 -05:00
40 lines
539 B
C++
40 lines
539 B
C++
#include "ZaphodBase.h"
|
|
|
|
ZaphodBase::ZaphodBase():
|
|
zBot(new ZaphodRobot())
|
|
{
|
|
printf("Done.\n");
|
|
}
|
|
void ZaphodBase::RobotInit()
|
|
{
|
|
}
|
|
void ZaphodBase::DisabledInit()
|
|
{
|
|
}
|
|
void ZaphodBase::AutonomousInit()
|
|
{
|
|
}
|
|
void ZaphodBase::TeleopInit()
|
|
{
|
|
}
|
|
void ZaphodBase::DisabledContinuous()
|
|
{
|
|
}
|
|
void ZaphodBase::AutonomousContinuous()
|
|
{
|
|
}
|
|
void ZaphodBase::TeleopContinuous()
|
|
{
|
|
}
|
|
void ZaphodBase::DisabledPeriodic()
|
|
{
|
|
}
|
|
void ZaphodBase::AutonomousPeriodic()
|
|
{
|
|
}
|
|
void ZaphodBase::TeleopPeriodic()
|
|
{
|
|
zBot->handler();
|
|
}
|
|
START_ROBOT_CLASS(ZaphodBase);
|