forked from WPIRoboticsEngineering/RBE2002_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudentsRobot.h
216 lines (183 loc) · 4.9 KB
/
StudentsRobot.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/*
* StudentsRobot.h
*
* Created on: Dec 28, 2018
* Author: hephaestus
*/
#ifndef STUDENTSROBOT_H_
#define STUDENTSROBOT_H_
#include "config.h"
#include <Arduino.h>
#include "src/pid/ServoEncoderPIDMotor.h"
#include "src/pid/HBridgeEncoderPIDMotor.h"
#include "src/pid/ServoAnalogPIDMotor.h"
#include <ESP32Servo.h>
#include "DrivingChassis.h"
#include "LineFollower.h"
#include "Navigation.h"
#include "Parking.h"
#include "Pose.h"
#include "LiftControl.h"
#include "BinHandling.h"
#include "src/commands/IRCamSimplePacketComsServer.h"
#include "src/commands/GetIMU.h"
/**
* @enum RobotStateMachine
* These are sample values for a sample state machine.
* Feel free to add ot remove values from here
*/
enum RobotStateMachine {
StartupRobot = 0, StartRunning = 1, Running = 2, Halting = 3, Halt = 4, WAIT_FOR_MOTORS_TO_FINNISH=5, WAIT_FOR_TIME=6,
Testing = 7, Navigating = 8, ParkingRobot = 9, HomingLift = 10, MovingLiftFromGUI = 11, DeliveringBin = 12, ReturningBin = 13, //was 13
};
const String StringStates[14] = {"StartupRobot", "StartRunning", "Running", "Halting", "Halt", "WFMF", "WFT", "Test", "NAV", "PRK", "Homing", "MovingLift", "DLV", "RTN"};
/**
* @enum ComStackStatusState
* These are values for the communications stack
* Don't add any more or change these. This is how you tell the GUI
* what state your robot is in.
*/
enum ComStackStatusState {
Starting_up = 0,
Starting_to_run = 1,
IDLE = 2,
Stopping = 3,
Stopped = 4,
WFMF= 5,
WFT = 6,
Testing_Feature = 7,
NAV = 8,
PRK = 9,
Homing = 10,
MovingLift = 11,
DLV = 12,
RTN = 13,
Delivery_Done = 14,
Return_Done = 15,
Bin_Not_on_Cleat = 16,
Bin_Not_on_Shelf = 17,
Delivery_Unsuccesful = 18,
Timed_out = 19,
};
/**
* @enum ParkingStates
*/
enum ParkingStates {
SETTING_PARKING_GOAL = 0,
GOING_TO_PARKING_SPACE = 1,
PARKING = 2,
};
/**
* @enum NavigatingStates
*/
enum NavigatingStates {
CHECKING_IF_PARKED = 0,
LEAVING_PARKING_SPOT = 1,
SETTING_NAV_GOAL = 2,
NAVIGATING = 3,
};
/**
* @enum BinDeliveryStates
*/
enum BinDeliveryStates {
SETTING_DELIVERY_LOCATION = 0,
GOING_TO_BIN = 1,
PROCURING_BIN = 2,
FINISHED_DELIVERY = 3,
};
/**
* @enum BinReturnStates
*/
enum BinReturnStates {
SETTING_RETURN_LOCATION = 0,
GOING_TO_SHELF = 1,
RETURNING_BIN = 2,
FINISHED_RETURNING = 3,
};
enum HomingLiftStates {
STARTING_HOME = 0,
MOVING_TO_LOWER_LIMIT = 1,
MOVING_TO_UPPER_LIMIT = 2,
DONE_HOMING = 3
};
enum MovingLiftFromGUIStates {
SET_LIFT_HEIGHT = 0,
WAIT_FOR_HEIGHT_REACHED = 1,
DONE_LIFTING = 2
};
/**
* @class StudentsRobot
*/
class StudentsRobot {
private:
PIDMotor * motor1;
PIDMotor * motor2;
PIDMotor * motor3;
Servo * servo;
DrivingChassis robotChassis;
float lsensorVal=0;
float rsensorVal=0;
long nextTime =0;
long startTime =0;
RobotStateMachine nextStatus = StartupRobot;
IRCamSimplePacketComsServer * IRCamera;
GetIMU * IMU;
public:
float liftHeight = 0;//In mm
bool robotParked = true; // make false if not starting in parked
/**
* Constructor for StudentsRobot
*
* attach the 4 actuators
*
* these are the 4 actuators you need to use for this lab
* all 4 must be attached at this time
* DO NOT reuse pins or fail to attach any of the objects
*
*/
StudentsRobot(PIDMotor * motor1,
PIDMotor * motor2, PIDMotor * motor3,
Servo * servo,IRCamSimplePacketComsServer * IRCam,GetIMU * imu);
/**
* Command status
*
* this is sent upstream to the Java GUI to notify it of current state
*/
ComStackStatusState myCommandsStatus = IDLE;
/**
* This is internal data representing the runtime status of the robot for use in its state machine
*/
RobotStateMachine status = StartupRobot;
RobotStateMachine lastStatus = StartupRobot;
// This is the status to run to after navigation. Initialize to Running
RobotStateMachine statusAfterNav = Running;
// State variables for the enumeration of different routines. Initialized to first case
ParkingStates parkingStatus = SETTING_PARKING_GOAL;
NavigatingStates navigationStatus = SETTING_NAV_GOAL;
BinDeliveryStates binDeliveryStatus = SETTING_DELIVERY_LOCATION;
BinReturnStates binReturnStatus = SETTING_RETURN_LOCATION;
HomingLiftStates homeLiftState = STARTING_HOME;
MovingLiftFromGUIStates moveLiftState = DONE_LIFTING;
// Objects for different routines robot is capable of
Navigation navigation;
Parking parking;
LiftControl Lift;
BinHandling binHandler;
// goal column and goal row for navigation from a UI command
int goalColumn = -2;
int goalRow = 2;
int goalShelf = 2;
/**
* pidLoop This functoion is called to let the StudentsRobot controll the running of the PID loop functions
*
* The loop function on all motors needs to be run when this function is called and return fast
*/
void pidLoop();
/**
* updateStateMachine use the stub state machine as a starting point.
*
* the students state machine can be updated with this function
*/
void updateStateMachine();
};
#endif /* STUDENTSROBOT_H_ */