forked from FRC1296/RHSRobot2015
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RhsRobot.h
43 lines (35 loc) · 829 Bytes
/
RhsRobot.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* The RhsRobot class is the main robot class. It inherits from RhsRobotBase and MUST define the Init() function, the Run() function, and
* the OnStateChange() function.
*/
#ifndef RHS_ROBOT_H
#define RHS_ROBOT_H
#include "WPILib.h"
#include "RhsRobotBase.h"
//Robot
#include "Drivetrain.h"
#include "Autonomous.h"
#include "Conveyor.h"
#include "Clicker.h"
#include "JackClicker.h"
#include "CanLifter.h"
class RhsRobot : public RhsRobotBase
{
public:
RhsRobot();
virtual ~RhsRobot();
private:
Joystick* Controller_1;
Joystick* Controller_2;
Drivetrain* drivetrain;
Autonomous* autonomous;
Conveyor* conveyor;
Clicker* clicker;
JackClicker* jackclicker;
CanLifter* canlifter;
void Init();
void OnStateChange();
void Run();
int iLoop;
};
#endif //RHS_ROBOT_H