2015-01-16 19:49:16 -05:00
|
|
|
#ifndef DENTROBOT_H
|
|
|
|
#define DENTROBOT_H
|
|
|
|
#include "WPILib.h"
|
2015-01-17 12:21:16 -05:00
|
|
|
#include "OI.h"
|
|
|
|
#include "Subsystems/Elevator.h"
|
2015-01-31 12:16:02 -05:00
|
|
|
#include "Subsystems/DIO.h"
|
2015-01-17 12:21:16 -05:00
|
|
|
#include "Subsystems/Drivetrain.h"
|
|
|
|
#include "Subsystems/Collector.h"
|
2015-01-20 07:02:46 -05:00
|
|
|
#include "Subsystems/AirCompressor.h"
|
2015-01-16 19:49:16 -05:00
|
|
|
class DentRobot: public IterativeRobot {
|
2015-02-02 20:43:22 -05:00
|
|
|
private:
|
|
|
|
Command *driveCommand = NULL;
|
|
|
|
public:
|
|
|
|
static OI* oi;
|
|
|
|
static Collector* collector;
|
|
|
|
static Drivetrain* drivetrain;
|
|
|
|
static Elevator* elevator;
|
|
|
|
static DIO* dio;
|
|
|
|
static AirCompressor* airCompressor;
|
|
|
|
DentRobot();
|
|
|
|
void RobotInit();
|
|
|
|
void DisabledPeriodic();
|
|
|
|
void AutonomousInit();
|
|
|
|
void AutonomousPeriodic();
|
|
|
|
void TeleopInit();
|
|
|
|
void TeleopPeriodic();
|
|
|
|
void TestPeriodic();
|
2015-01-16 19:49:16 -05:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
// vim: ts=2:sw=2:et
|