-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHardware.cpp
487 lines (406 loc) · 10.9 KB
/
Hardware.cpp
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
#include "WPILib.h"
#include "CANWrapper.h"
#include "CANJaguar.h"
#include "Hardware.h"
#include "RobotConfiguration.h"
#include "DebugUtil.h"
#include "LimitSwitch.h"
#include "Potentiometer.h"
CANJaguar * Hardware::m_left_jag1 = NULL;
CANJaguar * Hardware::m_right_jag1 = NULL;
CANJaguar * Hardware::m_left_jag2 = NULL;
CANJaguar * Hardware::m_right_jag2 = NULL;
Accelerometer * Hardware::accelX = NULL;
Accelerometer * Hardware::accelY = NULL;
Accelerometer * Hardware::accelZ = NULL;
LimitSwitch * Hardware::m_gripper_limit = NULL;
Encoder * Hardware::left_encoder = NULL;
Encoder * Hardware::right_encoder = NULL;
RAGearToothSensor * Hardware::m_shuttle_geartooth_encoder = NULL;
DigitalInput * Hardware::center_line_sensor;
DigitalInput * Hardware::right_line_sensor;
DigitalInput * Hardware::left_line_sensor;
Solenoid * Hardware::m_sol = NULL;
Gyro * Hardware::gyro = NULL;
GearTooth * Hardware::ShuttleTooth = NULL;
CANJaguar * Hardware::m_motors[12] = { NULL };
DigitalInput * Hardware::m_shuttle_home = NULL;
Potentiometer * Hardware::m_arm_pot = NULL;
DigitalOutput * Hardware::m_signal_do1 = NULL;
DigitalOutput * Hardware::m_signal_do2 = NULL;
DigitalOutput * Hardware::m_signal_do3 = NULL;
DigitalInput * Hardware::m_deployer_optical = NULL;
SonarSensor * Hardware::m_sonar = NULL;
//DeployerSolenoid * Hardware::m_deploy_solenoid = NULL;
Solenoid * Hardware::m_deploy_solenoids[4] = { NULL };
DigitalInput * Hardware::GetDeployerOpticalSensor()
{
if (m_deployer_optical == NULL) {
m_deployer_optical = new DigitalInput(6,1);
}
return m_deployer_optical;
}
DigitalOutput * Hardware::GetSignalDO1()
{
if (m_signal_do1 == NULL) {
m_signal_do1 = new DigitalOutput(6, 12);
}
return m_signal_do1;
}
DigitalOutput * Hardware::GetSignalDO2()
{
if (m_signal_do2 == NULL) {
m_signal_do2 = new DigitalOutput(6, 13);
}
return m_signal_do2;
}
DigitalOutput * Hardware::GetSignalDO3()
{
if (m_signal_do3 == NULL) {
m_signal_do3 = new DigitalOutput(6, 14);
}
return m_signal_do3;
}
Solenoid * Hardware::GetLineSensorPower()
{
if (m_sol == NULL) {
m_sol = new Solenoid(8,1);
}
return m_sol;
}
LimitSwitch * Hardware::GetGripperLimitSwitch()
{
if (m_gripper_limit == NULL) {
m_gripper_limit = new LimitSwitch(4, 7);
}
return m_gripper_limit;
}
void Hardware::ReConfigureDriveMotors()
{
ConfigureForSpeedControl(m_left_jag1);
ConfigureForSpeedControl(m_left_jag2);
ConfigureForSpeedControl(m_right_jag1);
ConfigureForSpeedControl(m_right_jag2);
}
CANJaguar * Hardware::AllocateDriveMotor(int number)
{
// Set up for simple percentage of voltage (-1 to 1,
// no closed loop)
return new CANJaguar(number, CANJaguar::kPercentVbus);
//return new CANJaguar(number, CANJaguar::kSpeed);
}
void Hardware::ConfigureForSpeedControl(CANJaguar * motor)
{
if (motor != NULL) {
/*
int num_inits = 10;
for (int counter = 0; counter < num_inits; ++counter) {
printf("Attempt %d of %d\n", counter, num_inits);
// Uncomment if you aren't using voltage mode on the motors
//motor->ChangeControlMode(CANJaguar::kSpeed);
motor->SetPID(RobotConfiguration::GetDriveTrainP(),
RobotConfiguration::GetDriveTrainI(),
RobotConfiguration::GetDriveTrainD());
DPRINTF("P: %2.2f\tI: %2.2f\tD: %2.2f\n", motor->GetP(), motor->GetI(), motor->GetD());
motor->ConfigEncoderCodesPerRev(100);
//motor->ConfigMaxOutputVoltage(9.0);
motor->ConfigNeutralMode(CANJaguar::kNeutralMode_Coast);
motor->SetSpeedReference(CANJaguar::kSpeedRef_QuadEncoder);
motor->EnableControl(0);
DPRINTF("Alive? %s\n", motor->IsAlive() ? "Yar" : "Nar");
if (motor->GetSpeedReference() == CANJaguar::kSpeedRef_QuadEncoder)
{
printf("Attempt %d succeeded.\n", counter);
break;
}
}
*/
}
}
CANJaguar * Hardware::GetLeftMotorJag()
{
if (m_left_jag1 == NULL)
{
m_left_jag1 = AllocateDriveMotor(3);
ConfigureForSpeedControl(m_left_jag1);
}
return m_left_jag1;
}
CANJaguar * Hardware::GetRightMotorJag()
{
if (m_right_jag1 == NULL)
{
m_right_jag1 = AllocateDriveMotor(5);
ConfigureForSpeedControl(m_right_jag1);
}
return m_right_jag1;
}
CANJaguar * Hardware::GetLeftMotorJag2()
{
if (m_left_jag2 == NULL)
{
m_left_jag2 = AllocateDriveMotor(4);
ConfigureForSpeedControl(m_left_jag2);
}
return m_left_jag2;
}
CANJaguar * Hardware::GetRightMotorJag2()
{
if (m_right_jag2 == NULL)
{
m_right_jag2 = AllocateDriveMotor(6);
ConfigureForSpeedControl(m_right_jag2);
}
return m_right_jag2;
}
DigitalInput * Hardware::GetLeftLineSensor()
{
if (left_line_sensor == NULL)
{
left_line_sensor = new DigitalInput(8);
}
return left_line_sensor;
}
DigitalInput * Hardware::GetCenterLineSensor()
{
if (center_line_sensor == NULL)
{
center_line_sensor = new DigitalInput(9);
}
return center_line_sensor;
}
DigitalInput * Hardware::GetRightLineSensor()
{
if (right_line_sensor == NULL)
{
right_line_sensor = new DigitalInput(10);
}
return right_line_sensor;
}
DigitalInput * Hardware::GetShuttleHomeSensor()
{
if (m_shuttle_home == NULL)
{
m_shuttle_home = new DigitalInput(6);
}
return m_shuttle_home;
}
CANJaguar * Hardware::GetUpperGrabberMotor()
{
CANJaguar * motor = GetMotor(7);
if (motor == NULL) {
motor = AllocateGrabberMotor(7);
}
return motor;
}
CANJaguar * Hardware::GetLowerGrabberMotor()
{
CANJaguar * motor = GetMotor(8);
if (motor == NULL) {
motor = AllocateGrabberMotor(8);
}
return motor;
}
CANJaguar * Hardware::GetArmMotor()
{
int number = 10;
//int number = 5;
CANJaguar * arm_motor = GetMotor(number);
if (arm_motor == NULL) {
//arm_motor = AllocatePositionMotor(number);
arm_motor = new CANJaguar(number, CANJaguar::kPercentVbus);
/*arm_motor->SetPositionReference(CANJaguar::kPosRef_Potentiometer);
arm_motor->ConfigPotentiometerTurns(3);
arm_motor->SetPID(1,.01,0);
arm_motor->EnableControl();
*/
m_motors[number-1] = arm_motor;
}
return arm_motor;
}
CANJaguar * Hardware::AllocateDeployerMotor(int number)
{
// Set up for simple percentage of voltage (-1 to 1,
// no closed loop)
CANJaguar * motor = new CANJaguar(number, CANJaguar::kPercentVbus);
m_motors[10] = motor;
return motor;
//return new CANJaguar(number, CANJaguar::kSpeed);
}
CANJaguar * Hardware::GetDeployerMotor()
{
/*
CANJaguar * motor = GetMotor(11);
if (motor == NULL) {
motor = AllocateDeployerMotor(11);
}
return motor; */
return NULL;
}
//TODO: This needs to work. And is a bookmark
Servo * Hardware::GetAlignmentReleaser()
{
return NULL;
}
CANJaguar * Hardware::GetMotor(int i) {
if (i < 3 || i > 11) {
return NULL;
} else {
return m_motors[i-1];
}
}
CANJaguar * Hardware::AllocateGrabberMotor(int number)
{
/*
if (m_motors[number-1] == NULL) {
m_motors[number-1] = new CANJaguar(number, CANJaguar::kSpeed);
}
if (m_motors[number-1] == NULL) {
CANJaguar * m = m_motors[number-1];
m->SetPID(1,.2,0);
}
*/
if (m_motors[number-1] == NULL) {
/*
m_motors[number-1] = new CANJaguar(number, CANJaguar::kSpeed);
m_motors[number-1]->SetPID(1,0,0);
m_motors[number-1]->SetSpeedReference(CANJaguar::kSpeedRef_QuadEncoder);
m_motors[number-1]->ConfigEncoderCodesPerRev(250);
m_motors[number-1]->EnableControl(0);
*/
m_motors[number-1] = new CANJaguar(number, CANJaguar::kPercentVbus);
}
return m_motors[number-1];
}
// TODO: There should probably be a better way to combine
// the above and below methods.
CANJaguar * Hardware::AllocatePositionMotor(int number)
{
if (m_motors[number-1] == NULL) {
m_motors[number-1] = new CANJaguar(number, CANJaguar::kPosition);
}
return m_motors[number-1];
}
Encoder * Hardware::GetLeftEncoder()
{
if(left_encoder == NULL){
left_encoder = new Encoder(1,2);
//left_encoder->SetDistancePerPulse(0.07540); // 250 Count Encoders
left_encoder->SetDistancePerPulse(0.1884); // 100 Count Encoders
left_encoder->Start();
}
return left_encoder;
}
Encoder * Hardware::GetRightEncoder()
{
if(right_encoder == NULL){
right_encoder = new Encoder(3,4);
// TODO: This might be a good candidate for the config file
// assumes 6-inch wheels
//right_encoder->SetDistancePerPulse(0.07540); // 250 Count Encoders
right_encoder->SetDistancePerPulse(0.1884); // 100 Count Encoders
right_encoder->Start();
}
return right_encoder;
}
RAGearToothSensor * Hardware::GetShuttleGearToothSensor()
{
if(m_shuttle_geartooth_encoder == NULL){
#warning "If you need to fix the direction for the gear tooth sensor, do so here."
// Changed to 40 teeth because of sprocket change (from 19)
m_shuttle_geartooth_encoder = new RAGearToothSensor(5,true,40, 0.5);
m_shuttle_geartooth_encoder->Start();
}
return m_shuttle_geartooth_encoder;
}
CANJaguar * Hardware::GetShuttleMotor()
{
CANJaguar * motor = GetMotor(9);
if (motor == NULL) {
//motor = AllocateDriveMotor(5);
//motor = AllocatePositifonMotor(5);
//motor->SetPID(120,.001,.01);
motor = new CANJaguar(9, CANJaguar::kPercentVbus);
motor->ConfigNeutralMode(CANJaguar::kNeutralMode_Brake);
m_motors[8] = motor;
//motor->SetSpeedReference(CANJaguar::kSpeedRef_Encoder);
//motor->SetPositionReference(CANJaguar::kPosRef_QuadEncoder);
//motor->ConfigEncoderCodesPerRev(250);
//motor->EnableControl(0);
}
return motor;
}
Potentiometer * Hardware::GetArmPotentiometer()
{
if (m_arm_pot == NULL) {
m_arm_pot = new Potentiometer(6, 3);
m_arm_pot->ConfigureVoltageLimits(2.18, 280);
}
return m_arm_pot;
}
Gyro * Hardware::GetGyro()
{
if(gyro==NULL){
gyro = new Gyro(1,1);
gyro->SetSensitivity(.0068);
gyro->Reset();
}
return gyro;
}
SonarSensor * Hardware::GetSonarSensor()
{
if (m_sonar == NULL) {
m_sonar = new SonarSensor(1,7);
}
return m_sonar;
}
Accelerometer * Hardware::GetAccelX()
{
if(accelX==NULL){
accelX = new Accelerometer(1,3);
InitAccel(accelX);
}
return accelX;
}
Accelerometer * Hardware::GetAccelY()
{
if(accelY==NULL){
accelY = new Accelerometer(1,4);
InitAccel(accelY);
}
return accelY;
}
Accelerometer * Hardware::GetAccelZ()
{
if(accelZ==NULL){
accelZ = new Accelerometer(1,5);
InitAccel(accelZ);
}
return accelZ;
}
void Hardware::InitAccel(Accelerometer * a)
{
//a->SetZero(2.5);
a->SetZero(1.5);
a->SetSensitivity(.36);
}
#if 0
DeployerSolenoid *Hardware::GetDeployerSolenoid()
{
if(m_deploy_solenoid==NULL)
{
m_deploy_solenoid = new DeployerSolenoid();
}
return m_deploy_solenoid;
}
#endif
Solenoid * Hardware::GetDeployerSolenoid(int num)
{
if (num < 0 || num >= 4) {
return NULL;
}
if (m_deploy_solenoids[num] == NULL) {
m_deploy_solenoids[num] = new Solenoid(8, 2 + num);
}
return m_deploy_solenoids[num];
}