2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/HHRobot.h

20 lines
376 B
C
Raw Normal View History

2015-01-09 20:57:26 -05:00
#ifndef __ROBOT_H__
#define __ROBOT_H__
2015-01-05 19:07:24 -05:00
#include <WPILib.h>
#include "HHBase.h"
2015-01-09 20:57:26 -05:00
#include "classes/Collector.h"
2015-01-05 19:07:24 -05:00
#include "hhlib/input/controller/Joystick.h"
class HHRobot{
private:
RobotDrive *hhdrive;
2015-01-09 20:20:05 -05:00
Gyro *gyro;
2015-01-09 20:57:26 -05:00
DentCollector *collector;
Extreme3dPro *driveStick;
2015-01-05 19:07:24 -05:00
public:
HHRobot();
void Init();
void Handler();
};
#endif
// vim: ts=2:sw=2:et