-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAthenaAutoRed
More file actions
580 lines (474 loc) · 16 KB
/
AthenaAutoRed
File metadata and controls
580 lines (474 loc) · 16 KB
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
package com.qualcomm.ftcrobotcontroller.opmodes;
import com.qualcomm.ftccommon.DbgLog;
import com.qualcomm.robotcore.eventloop.opmode.OpMode;
import com.qualcomm.robotcore.hardware.DcMotor;
import com.qualcomm.robotcore.hardware.DcMotorController;
import com.qualcomm.robotcore.hardware.Servo;
import com.qualcomm.robotcore.util.Range;
import com.qualcomm.robotcore.util.ElapsedTime;
//------------------------------------------------------------------------------
//
// PushBotHardware
//
/**
* Provides a single hardware access point between custom op-modes and the
* OpMode class for the Push Bot.
*
* This class prevents the custom op-mode from throwing an exception at runtime.
* If any hardware fails to map, a warning will be shown via telemetry data,
* calls to methods will fail, but will not cause the application to crash.
*
* @author SSI Robotics
* @version 2015-08-13-20-04
*
* Modified by Labanya Mukhopadhyay
* Athena FTC team, EVHS, San Jose
*/
//public class AthenaBotManual extends OpMode
public class AthenaBotAuto_Red_2 extends AthenaBotManual_1
{
//--------------------------------------------------------------------------
//
// PushBotHardware
//
final static int ENCODER_CPR = 1440; //encoder counts per revolution
final static double GEAR_RATIO = 2.0; //gear ratio
final static double WHEEL_DIAMETER = 4.0; //diameter of wheel in inches
final static double WHEEL_SEPARATION = 17.75; // Distance between two front(or back) wheels
final static double CIRCUMFERENCE = Math.PI * WHEEL_DIAMETER;
final static double D1 = 59.0; // Goes forward
//final static double R1_ANGLE = 92.0; // right turn
final static double L1_ANGLE = 92.0; // left turn
final static double D2 = 56.0; // goes forward
final static double D3 = 12.0; // goes back
final static double L2_ANGLE = 90.0; // left turn
final static double D4 = 18.0; // goes forward to park
static double distance; //distance to drive in inches
static double rotations; // = DISTANCE/CIRCUMFERENCE;
static double counts; // = ENCODER_CPR*ROTATIONS*GEAR_RATIO;
public double get_encoder_counts_dist(double dist)
{
distance = dist;
rotations = distance / CIRCUMFERENCE;
counts = ENCODER_CPR * rotations * GEAR_RATIO;
return counts;
}
public boolean drive_straight_forward(double dist)
{
boolean l_state = false;
// Run with encoders when both right and left motors have encoders, else run without encoders.
run_without_drive_encoders();
//
// Start the drive wheel motors at full power.
// GO FORWARD
set_drive_power (1.0f, 1.0f);
//
// Have the motor shafts turned the required amount?
//
if (have_drive_encoders_reached (get_encoder_counts_dist(dist), get_encoder_counts_dist(dist))) {
//
// Reset the encoders to ensure they are at a known good value.
//
reset_drive_encoders();
//
// Stop the motors.
//
set_drive_power(0.0f, 0.0f);
l_state = true;
}
return l_state;
}
public boolean drive_straight_backward(double dist)
{
boolean l_state = false;
// Run with encoders when both right and left motors have encoders, else run without encoders.
run_without_drive_encoders();
//
// Start the drive wheel motors at full power.
// GO FORWARD
set_drive_power (-1.0f, -1.0f);
//
// Have the motor shafts turned the required amount?
//
if (have_drive_encoders_reached (get_encoder_counts_dist(dist), get_encoder_counts_dist(dist))) {
//
// Reset the encoders to ensure they are at a known good value.
//
reset_drive_encoders();
//
// Stop the motors.
//
set_drive_power(0.0f, 0.0f);
l_state = true;
}
return l_state;
}
public boolean turn_right(double degrees)
{
boolean l_state = false;
// Run with encoders when both right and left motors have encoders, else run without encoders.
run_without_drive_encoders();
//
// Start the drive wheel motors at full power.
// GO FORWARD
set_drive_power (1.0f, -1.0f);
// Calculate distance for the required degree turn
double turn_dist = (degrees * Math.PI * WHEEL_SEPARATION)/360.0;
//
// Have the motor shafts turned the required amount?
//
if (have_drive_encoders_reached (get_encoder_counts_dist(turn_dist), get_encoder_counts_dist(turn_dist))) {
//
// Reset the encoders to ensure they are at a known good value.
//
reset_drive_encoders();
//
// Stop the motors.
//
set_drive_power(0.0f, 0.0f);
l_state = true;
}
return l_state;
}
public boolean turn_left(double degrees)
{
boolean l_state = false;
// Run with encoders when both right and left motors have encoders, else run without encoders.
run_without_drive_encoders();
//
// Start the drive wheel motors at full power.
// GO FORWARD
set_drive_power (-1.0f, 1.0f);
// Calculate distance for the required degree turn
double turn_dist = (degrees * Math.PI * WHEEL_SEPARATION)/360.0;
//
// Have the motor shafts turned the required amount?
//
if (have_drive_encoders_reached (get_encoder_counts_dist(turn_dist), get_encoder_counts_dist(turn_dist))) {
//
// Reset the encoders to ensure they are at a known good value.
//
reset_drive_encoders();
//
// Stop the motors.
//
set_drive_power(0.0f, 0.0f);
l_state = true;
}
return l_state;
}
public void drop_climbers()
{
//this.resetStartTime();
mStateTime.reset();
for(double position=1.0;position>=0.0; position-=0.1) {
v_servo_right_fling.setPosition (position);
//if (this.getRuntime() > 0.1) { //this will wait 0.1 second;
if (mStateTime.time() >= 0.1) { //this will wait 0.1 second;
//code to run once wait is complete
//this.resetStartTime();
mStateTime.reset();
}
}
// Wait for 1.0 sec after climbers drop
if (mStateTime.time() >= 1.0) { //this will wait 1.0 second;
//code to run once wait is complete
mStateTime.reset();
}
}
public void lift_right_fling()
{
//this.resetStartTime();
mStateTime.reset();
for(double position=0.0;position>=1.0; position+=0.1) {
v_servo_right_fling.setPosition (position);
//if (this.getRuntime() > 0.1) { //this will wait 0.1 second;
if (mStateTime.time() >= 0.1) { //this will wait 0.1 second;
//code to run once wait is complete
//this.resetStartTime();
mStateTime.reset();
}
}
}
/**
* Construct the class.
*
* The system calls this member when the class is instantiated.
*/
public AthenaBotAuto_Red_2()
{
//
// Initialize base classes.
//
// All via self-construction.
//
// Initialize class members.
//
// All via self-construction.
} // PushBotHardware
//--------------------------------------------------------------------------
//
// init
//
/**
* Perform any actions that are necessary when the OpMode is enabled.
*
* The system calls this member once when the OpMode is enabled.
*/
@Override public void init ()
{
super.init();
// Initialize the arm elbow servo
init_arm();
//this.resetStartTime();
} // init
//--------------------------------------------------------------------------
//
// start
//
/**
* Perform any actions that are necessary when the OpMode is enabled.
*
* The system calls this member once when the OpMode is enabled.
*/
@Override public void start ()
{
//
// Only actions that are common to all Op-Modes (i.e. both automatic and
// manual) should be implemented here.
//
// This method is designed to be overridden.
//
//
// Call the PushBotHardware (super/base class) start method.
//
super.start ();
//
// Reset the motor encoders on the drive wheels.
//
reset_drive_encoders ();
} // start
//--------------------------------------------------------------------------
//
// loop
/**
* Implement a state machine that controls the robot during auto-operation.
* The state machine uses a class member and encoder input to transition
* between states.
*
* The system calls this member repeatedly while the OpMode is running.
*/
@Override public void loop ()
{
//----------------------------------------------------------------------
//
// State: Initialize (i.e. state_0).
//
switch (v_state)
{
//
// Synchronize the state machine and hardware.
// SETUP
case 0:
//
// Reset the encoders to ensure they are at a known good value.
//
reset_drive_encoders ();
//
// Transition to the next state when this method is called again.
//
v_state++;
break;
//
// Drive forward until the encoders exceed the specified values.
// DRIVE FORWARD
case 1:
//
// Tell the system that motor encoders will be used. This call MUST
// be in this state and NOT the previous or the encoders will not
// work. It doesn't need to be in subsequent states.
//
// run_using_encoders ();
// Raise the arm elbow, so it won't hit the beacon while dropping climbers
//raise_arm();
if(drive_straight_forward(D1))
{
//
// Transition to the next state when this method is called
// again.
//
v_state++;
}
break;
//
// Wait...
//
case 2:
if (have_drive_encoders_reset ())
{
v_state++;
}
break;
//
// Turn left until the encoders exceed the specified values.
//
case 3:
// run_using_encoders ();
// TURN RIGHT
//run_without_drive_encoders();
//set_drive_power (1.0f, -1.0f);
//int d_2 = 800;
if (turn_left (L1_ANGLE))
{
v_state++;
}
break;
//
// Wait...
//
case 4:
if (have_drive_encoders_reset ())
{
v_state++;
}
break;
//
// Turn right until the encoders exceed the specified values.
//
case 5:
// run_using_encoders ();
//run_without_drive_encoders();
//int d_3 = 6000;
//set_drive_power (1.0f, 1.0f);
if (drive_straight_forward (D2))
{
//reset_drive_encoders ();
//set_drive_power (0.0f, 0.0f);
v_state++;
}
break;
/* boolean has_reached_white_line = false;
if (has_reached_white_line) {
v_state++;
} */
//
// Wait...
//
case 6:
if (have_drive_encoders_reset ())
{
v_state++;
}
break;
case 7:
//v_servo_right_fling.setPosition (0.0);
drop_climbers();
v_state++;
//
// Perform no action - stay in this case until the OpMode is stopped.
// This method will still be called regardless of the state machine.
//
case 8:
//v_servo_right_fling.setPosition (1.0);
lift_right_fling();
v_state++;
case 9:
if (drive_straight_backward(D3))
{
//reset_drive_encoders ();
//set_drive_power (0.0f, 0.0f);
v_state++;
}
break;
case 10:
if (have_drive_encoders_reset ())
{
v_state++;
}
break;
case 11:
if (turn_left (L2_ANGLE))
{
v_state++;
}
break;
//
// Wait...
//
case 12:
if (have_drive_encoders_reset ())
{
v_state++;
}
break;
//
// Turn right until the encoders exceed the specified values.
//
case 13:
// run_using_encoders ();
//run_without_drive_encoders();
// Park the robot
//set_drive_power (1.0f, 1.0f);
if (drive_straight_forward (D4))
{
//reset_drive_encoders ();
//set_drive_power (0.0f, 0.0f);
v_state++;
}
break;
/* boolean has_reached_white_line = false;
if (has_reached_white_line) {
v_state++;
} */
//
// Wait...
//
case 14:
if (have_drive_encoders_reset ())
{
v_state++;
}
break;
default:
//
// The autonomous actions have been accomplished (i.e. the state has
// transitioned into its final state.
//
break;
}
//
// Send telemetry data to the driver station.
//
update_telemetry (); // Update common telemetry
telemetry.addData("23", "State: " + v_state);
//update_gamepad_telemetry ();
} // loop
//--------------------------------------------------------------------------
//
// stop
//
/**
* Perform any actions that are necessary when the OpMode is disabled.
*
* The system calls this member once when the OpMode is disabled.
*/
@Override public void stop ()
{
//
// Nothing needs to be done for this method.
//
} // stop
//--------------------------------------------------------------------------
//
// v_state
//
/**
* This class member remembers which state is currently active. When the
* start method is called, the state will be initialized (0). When the loop
* starts, the state will change from initialize to state_1. When state_1
* actions are complete, the state will change to state_2. This implements
* a state machine for the loop method.
*/
private int v_state = 0;
private ElapsedTime mStateTime = new ElapsedTime();
} // AthenaBotAuto