-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRobot.java_03_24_17
446 lines (364 loc) · 12.3 KB
/
Robot.java_03_24_17
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
package org.usfirst.frc.team6418.robot;
import java.util.*;
import edu.wpi.first.wpilibj.IterativeRobot;
import edu.wpi.first.wpilibj.command.Command;
import edu.wpi.first.wpilibj.command.Scheduler;
import edu.wpi.first.wpilibj.livewindow.LiveWindow;
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.JoystickBase;
import edu.wpi.first.wpilibj.RobotDrive;
import edu.wpi.first.wpilibj.Spark;
import edu.wpi.first.wpilibj.SpeedController;
import edu.wpi.first.wpilibj.buttons.JoystickButton;
import edu.wpi.cscore.CvSink;
import edu.wpi.cscore.CvSource;
import org.opencv.imgproc.Imgproc;
import edu.wpi.cscore.UsbCamera;
import edu.wpi.cscore.VideoSink;
//import org.usfirst.frc.team6418.robot.commands.ExampleCommand;
import edu.wpi.first.wpilibj.CameraServer;
import edu.wpi.first.wpilibj.Encoder;
import edu.wpi.first.wpilibj.Timer;
import edu.wpi.first.wpilibj.ADXRS450_Gyro;
import org.usfirst.frc.team6418.robot.subsystems.*;
import org.opencv.core.*;
import org.usfirst.frc.team6418.robot.commands.*;
/**
* The VM is configured to automatically run this class, and to call the
* functions corresponding to each mode, as described in the IterativeRobot
* documentation. If you change the name of this class or the package after
* creating this project, you must also update the manifest file in the resource
* directory.]
*/
public class Robot extends IterativeRobot {
public static final int WINCHMOTOR = 2;
//public static OI oi;
public static RobotDrive driveTrain;
public static Winch winch;
Command autonomousCommand;
SendableChooser<Command> chooser = new SendableChooser<>();
public static Joystick stick = new Joystick(0);
public static Joystick stick2 = new Joystick(1);
public static JoystickButton TriggerButton = new JoystickButton(stick,1);
public static JoystickButton SideButton = new JoystickButton(stick,2);
public static JoystickButton HighButton = new JoystickButton(stick,5);
public static JoystickButton LowButton = new JoystickButton(stick, 3);
public static JoystickButton RightButton = new JoystickButton(stick,4);
public static FrontCam fCam = new FrontCam();
public static BackCamSubsystem bCam = new BackCamSubsystem();
public static String driveMode;
public static String cameraMode;
public static String state;
public static Timer myTimer = new Timer();
public static ADXRS450_Gyro gyro = new ADXRS450_Gyro();
public static UltraSonic s1;
public static Encoder leftEncoder;
public static Encoder rightEncoder;
public static SpeedController left;
public static SpeedController right;
//drivesides
public static Spark leftSpark;
public static Spark rightSpark;
public UsbCamera cam0, cam1;
public VideoSink server;
public boolean prevTrigger = false;
public boolean cameraButton;
@Override
public void robotInit() {
//oi = new OI();
chooser.addDefault("Default Auto", new ExampleCommand());
// chooser.addObject("My Auto", new MyAutoCommand());
SmartDashboard.putData("Auto mode", chooser);
cam0 = CameraServer.getInstance().startAutomaticCapture(0);
cam1 = CameraServer.getInstance().startAutomaticCapture(1);
server = CameraServer.getInstance().getServer();
// cam0 = CameraServer.getInstance().startAutomaticCapture(0);
//how to call: public void tankDrive(double x, double y)
winch = new Winch(WINCHMOTOR, 9);
leftSpark = new Spark(0);
rightSpark = new Spark(1);
leftEncoder = new Encoder(1, 2, true, Encoder.EncodingType.k4X);
rightEncoder = new Encoder(3, 4, true, Encoder.EncodingType.k4X);
driveMode ="TANK";
cameraMode="BACK";
//togglewhenpressed
TriggerButton.whenPressed(new SetTankDrive());
SideButton.whenPressed(new SetArcadeDrive());
RightButton.whenPressed(new SetTankDriveBack());
}
/**
* This function is called once each time the robot enters Disabled mode.
* You can use it to reset any subsystem information you want to clear when
* the robot is disabled.
*/
@Override
public void disabledInit() {
this.left.disable();
this.right.disable();
}
@Override
public void disabledPeriodic() {
Scheduler.getInstance().run();
}
/**
* This autonomous (along with the chooser code above) shows how to select
* between different autonomous modes using the dashboard. The sendable
* chooser code works with the Java SmartDashboard. If you prefer the
* LabVIEW Dashboard, remove all of the chooser code and uncomment the
* getString code to get the auto name from the text box below the Gyro
*
* You can add additional auto modes by adding additional commands to the
* chooser code above (like the commented example) or additional comparisons
* to the switch structure below with additional strings & commands.
*/
@Override
public void autonomousInit() {
autonomousCommand = chooser.getSelected();
System.out.println("Autonomous!");
System.out.println("StartTime: " + myTimer.get());
System.out.println();
System.out.println();
state = "rightforward1";
double KpR=9/72.0;
double KpL=9/72.0;
double Ki = 0.01/72.0;
double Kd= 1/72.0;
double Kf = 1.0;
leftEncoder.reset();
rightEncoder.reset();
this.right = new Good_DriveSide(KpR, Ki, Kd, Kf, rightEncoder, rightSpark);
right.setInverted(true);
this.left = new Good_DriveSide(KpL, Ki, Kd, Kf, leftEncoder, leftSpark);
driveTrain = new RobotDrive(left,right);
/*
* String autoSelected = SmartDashboard.getString("Auto Selector",
* "Default"); switch(autoSelected) { case "My Auto": autonomousCommand
* = new MyAutoCommand(); break; case "Default Auto": default:
* autonomousCommand = new ExampleCommand(); break; }
*/
//autonomousCommand = new MoveForward();
// schedule the autonomous command (example)
if (autonomousCommand != null)
autonomousCommand.start();
myTimer.reset();
myTimer.start();
gyro.calibrate();
//System.out.println("gyro calibration: " + gyro.getAngle());
}
/**
* This function is called periodically during autonomous
*/
@Override
public void autonomousPeriodic() {
Scheduler.getInstance().run();
// System.out.println("encoder count: "+ ((Good_DriveSide) left).getEncoderCount());
//QUESTION: if i made my own method inside good_driveside, which implements speedController
//do I have to cast left as a goodDriveside instead of speedcontroller?
/*
* type in the number of feet you want to go, it'll go until it reaches that distance*/
/* THIS CODE IS TO TEST THE ENCODERS!!
if (leftEncoder.getDistance() < feetToEncUnits(5) && rightEncoder.getDistance() < feetToEncUnits(5)) {
//rotations: X * 2400 / 360
//feet:
left.set(.3);
right.set
\\System.out.println(" ! ");
}
else {
System.out.println(" it went 5 feet ");
left.set(0);
right.set(0);
} */
//10.83 feet = 129.96 inches
//9.5167 feet = 114.3 inches
//have to calculate again with the length of the robot and the distance from the center
//from left and right positions not the middle
//middle lane
System.out.println(state);
if (state.equals("middleforward1")) {//midlane
// moveForward(9.00);
moveForward(9.0, 0.6, left, leftEncoder);
moveForward(9.0, 0.6, right, rightEncoder);
moveForward(0.5, 0.1, left, leftEncoder);
moveForward(0.5, 0.1, right, rightEncoder);
if (finishedMoving(9.5))
state = "stop";
}
//right lane
else if (state.equals("rightforward1")) {
moveForward(9.0, 0.6, left, leftEncoder);
moveForward(9.0, 0.6, right, rightEncoder);
moveForward(0.5, 0.1, left, leftEncoder);
moveForward(0.5, 0.1, right, rightEncoder);
if (finishedMoving(9.5))
state = "rightturn1";
}
else if (state.equals("rightturn1")) {
//this is a right turn
changeAngle(10);
if (finishedTurning(10))
state = "rightforward2";
}
else if (state.equals("rightforward2")) {
moveForward(0.5, 0.1, left, leftEncoder);
moveForward(0.5, 0.1, right, rightEncoder);
if (finishedMoving(.5))
state = "stop";
}
//leftlane
else if (state.equals("leftforward1")) {
moveForward(9.0, 0.6, left, leftEncoder);
moveForward(9.0, 0.6, right, rightEncoder);
moveForward(0.5, 0.1, left, leftEncoder);
moveForward(0.5, 0.1, right, rightEncoder);
if (finishedMoving(9.5))
state = "leftturn1";
}
else if (state.equals("leftturn1")){//c'est une tournee gauche
changeAngle(-120);
if (finishedTurning(-120))
state = "leftforward2";
}
else if (state.equals("leftforward2")) {
moveForward(0.5, 0.1, left, leftEncoder);
moveForward(0.5, 0.1, right, rightEncoder);
if (finishedMoving(.5));
state = "stop";
}
else if (state.equals("stop")){
left.set(0);
right.set(0);
}
else {
left.set(0);
right.set(0);
}
}
@Override
public void teleopInit() {
// This makes sure that the autonomous stops running when
// teleop starts running. If you want the autonomous to
// continue until interrupted by another command, remove
// this line or comment it out.
if (autonomousCommand != null)
autonomousCommand.cancel();
left.disable();
right.disable();
driveTrain = new RobotDrive(leftSpark, rightSpark);
}
/**
* This function is called periodically during operator control
*/
@Override
public void teleopPeriodic() {
//needs a String/boolean parameter
Scheduler.getInstance().run();
/* System.out.println("LEFT\tgetDistance: \t\t" + leftEncoder.getDistance() + "\t\tleftRate: \t\t" + leftEncoder.getRate());
System.out.println("LEFT JOYSTICK" + -1*stick2.getY());
System.out.println("RIGHT\tgetDistance: \t\t" + rightEncoder.getDistance() + "\t\trightRate: \t\t" + rightEncoder.getRate());
System.out.println("RIGHT JOYSTICK" + -1*stick.getY());
System.out.println(); */
if (stick2.getTrigger() && !prevTrigger) {
System.out.println("Setting camera 1\n");
server.setSource(cam1);
}
else if (!stick2.getTrigger() && prevTrigger) {
System.out.println("Setting camera 0\n");
server.setSource(cam0);
}
prevTrigger = stick2.getTrigger();
if (driveMode.equalsIgnoreCase("TANK")) {
//driveTrain.tankDrive(-1*stick.getY(),-1*stick.getRawAxis(5));
driveTrain.tankDrive(-1*stick2.getY(),-1*stick.getY());
}
else if(driveMode.equalsIgnoreCase("BACK TANK")){
driveTrain.tankDrive(stick.getY(),stick2.getY());
}
else if(driveMode.equalsIgnoreCase("ARCADE")){
//arcade drive
driveTrain.arcadeDrive(-stick.getY(),-stick.getX());
}
//winch control - Halie
winch.tankDrive(stick.getRawAxis(3), 0);
}
/**
* This function is called periodically during test mode
*/
@Override
public void testPeriodic() {
LiveWindow.run();
}
public double feetToEncUnits(double feet) {
return feet*12/(6*Math.PI)*360/2400;
}
public void moveForward(double feet, double speed, SpeedController side, Encoder enc) {
if (enc.getDistance() < feetToEncUnits(feet)) {
//rotations: X * 2400 / 360
//feet:
side.set(speed);
}
else {
side.set(0);
}
}
public boolean finishedMoving(double feet) {
if (leftEncoder.getDistance() < feetToEncUnits(feet) && rightEncoder.getDistance() < feetToEncUnits(feet)) {
return false;
}
else
leftEncoder.reset();
rightEncoder.reset();
return true;
}
public void changeAngle(double degrees) {
//want to turn until getAngle > degrees
//won't have to be exact
System.out.println(gyro.getAngle());
if (degrees >= 0) {
//degrees is positive, turn to the left, wait until getAngle is more than degrees, so it's finished turning
if (gyro.getAngle() > degrees) {
left.set(0);
right.set(0);
}
else {
right.set(.05);
left.set(-.05);
}
}
else if (degrees <= 0) {
//degrees is negative, turn right
if (gyro.getAngle() < degrees) {
left.set(0);
right.set(0);
}
else {
right.set(-.05);
left.set(.05);
}
}
}
public boolean finishedTurning(double degrees) {
if (degrees >= 0) {
//postitive
if (gyro.getAngle() > degrees) {
System.out.println("FINISHED TURNING" );
return true;
}
else {
return false;
}
}
else if (degrees < 0) {
//degrees is negative, turn right
if (gyro.getAngle() < degrees) {
return true;
}
else {
return false;
}
}
return false;
}
}