mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
20 lines
376 B
C++
20 lines
376 B
C++
#ifndef __ROBOT_H__
|
|
#define __ROBOT_H__
|
|
#include <WPILib.h>
|
|
#include "HHBase.h"
|
|
#include "classes/Collector.h"
|
|
#include "hhlib/input/controller/Joystick.h"
|
|
class HHRobot{
|
|
private:
|
|
RobotDrive *hhdrive;
|
|
Gyro *gyro;
|
|
DentCollector *collector;
|
|
Extreme3dPro *driveStick;
|
|
public:
|
|
HHRobot();
|
|
void Init();
|
|
void Handler();
|
|
};
|
|
#endif
|
|
// vim: ts=2:sw=2:et
|