#include "DentRobot.h" OI* DentRobot::oi=NULL; Collector* DentRobot::collector=NULL; Drivetrain* DentRobot::drivetrain=NULL; Elevator* DentRobot::elevator=NULL; DIO* DentRobot::dio = NULL; AirCompressor * DentRobot::airCompressor=NULL; DentRobot::DentRobot(){ oi=new OI(); collector=new Collector(); drivetrain=new Drivetrain(); elevator=new Elevator(); dio = new DIO(); airCompressor=new AirCompressor(); printf("Initialized"); } void DentRobot::RobotInit(){ } void DentRobot::DisabledPeriodic(){ Scheduler::GetInstance()->Run(); } void DentRobot::AutonomousInit(){ } void DentRobot::AutonomousPeriodic(){ Scheduler::GetInstance()->Run(); } void DentRobot::TeleopInit(){ } void DentRobot::TeleopPeriodic(){ Scheduler::GetInstance()->Run(); } void DentRobot::TestPeriodic(){ } START_ROBOT_CLASS(DentRobot);