This repository was archived by the owner on Nov 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMiddle.java
More file actions
308 lines (289 loc) · 8.62 KB
/
Middle.java
File metadata and controls
308 lines (289 loc) · 8.62 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
package org.usfirst.frc.team5109.robot;
import com.ctre.phoenix.motorcontrol.*;
import com.ctre.phoenix.motorcontrol.can.TalonSRX;
import java.util.logging.Level;
import java.util.logging.Logger;
import edu.wpi.first.wpilibj.CameraServer;
import edu.wpi.first.wpilibj.Compressor;
import edu.wpi.first.wpilibj.IterativeRobot;
import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.Solenoid;
import edu.wpi.first.wpilibj.Spark;
import edu.wpi.first.wpilibj.Timer;
import edu.wpi.first.wpilibj.drive.DifferentialDrive;
import edu.wpi.first.networktables.*;
import edu.wpi.first.networktables.NetworkTable;
import edu.wpi.first.networktables.NetworkTableInstance;
import edu.wpi.first.wpilibj.Encoder;
import edu.wpi.first.wpilibj.DriverStation;
/**
* 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 {
TalonSRX leftMotor1 = new TalonSRX(6);
TalonSRX leftMotor2 = new TalonSRX(10);
TalonSRX rightMotor1 = new TalonSRX(5);//10
TalonSRX rightMotor2 = new TalonSRX(4);//10
TalonSRX rightElevatorMotor = new TalonSRX(2);
TalonSRX leftElevatorMotor = new TalonSRX(1);
TalonSRX intakeBags = new TalonSRX(8);
TalonSRX scalar = new TalonSRX(0);
Joystick leftJoy = new Joystick(0);
Joystick rightJoy = new Joystick(1);
Joystick operator = new Joystick(2);
// Solenoids for gear shifting
Solenoid Solenoid2 = new Solenoid(2);//1
Solenoid Solenoid1 = new Solenoid(1);
// Anand's Solenoids, 0 is used for clamping, 3 is used for extending
Solenoid Solenoid0 = new Solenoid(0);
boolean clamped = false;
Solenoid Solenoid3 = new Solenoid(3);
boolean extended = false;
Solenoid Solenoid5 = new Solenoid(5);
//Solenoids for gear shifting
Solenoid Solenoid4 = new Solenoid(4);//1
Compressor compressor;
boolean lowgear = false;
Encoder rightEncoder = new Encoder(0, 1, true);
Encoder leftEncoder = new Encoder(8, 9, false);
double leftspeed = 0;
double rightspeed = 0;
long idealright = 0;
long idealleft = 0;
int Counter = 0;
/**
* This function is run when the robot is first started up and should be
* used for any initialization code.
*/
@Override
public void robotInit() {
compressor = new Compressor(0);
CameraServer.getInstance().startAutomaticCapture();
leftEncoder.setDistancePerPulse(1);
rightEncoder.setDistancePerPulse(1);
}
/**
* This function is run once each time the robot enters autonomous mode.
*/
@Override
public void autonomousInit() {
String gameData;
leftEncoder.reset();
rightEncoder.reset();
idealright = rightEncoder.get();
idealleft = leftEncoder.get();
Counter = 0;
}
/**
* This function is called periodically during autonomous.
*/
public void autonomousPeriodic() {
long leftCount = leftEncoder.get();
long rightCount = rightEncoder.get();
String gameData = DriverStation.getInstance().getGameSpecificMessage ();
if(gameData.length() > 0) {
if(gameData.charAt(0) == 'R') {
if (Counter == 0) {
driveStraight();
}
else if(Counter == 1) {
Solenoid3.set(true);
Timer.delay(1);
Solenoid0.set(true);
Counter = 2;
}
}
System.out.println("left: " + leftCount);
System.out.println("right: " + rightCount);
System.out.println("leftspeed: " + leftspeed);
System.out.println("rightspeed: " + rightspeed);
else {
if(Counter == 0) {
driveStraight();
}
}
}
}
@Override
public void teleopInit() {
leftEncoder.reset();
rightEncoder.reset();
}
/**
* This function is called periodically during teleoperated mode.
*/
@Override
public void teleopPeriodic() {
//compressor = new Compressor(0);
leftMotor1.set(ControlMode.PercentOutput, leftJoy.getY());
leftMotor2.set(ControlMode.PercentOutput, leftJoy.getY());
rightMotor1.set(ControlMode.PercentOutput, -1 * rightJoy.getY());
rightMotor2.set(ControlMode.PercentOutput, -1 * rightJoy.getY());
leftElevatorMotor.set(ControlMode.PercentOutput, operator.getY());
int leftCount = leftEncoder.get();
int rightCount = rightEncoder.get();
System.out.println("right: " + rightCount);
System.out.println("left: " + leftCount);
//rightElevatorMotor.set(ControlMode.PercentOutput, -1*operator.getY());
//compressor.setClosedLoopControl(true);
//compressor.start();
double x = 0;
double y = 0;
//NetworkTableEntry xValue = NetworkTableEntry.setDouble(x);
//NetworkTableEntry yValue = NetworkTableEntry.setDouble(y);
//in and out for two cylinders using button 2
/*if(leftJoy.getRawButton(3)) {
Solenoid3.set(false);
} else {
Solenoid3.set(true);
}*/
/*if(leftJoy.getRawButton(4)) {
Solenoid4.set(false);
} else {
Solenoid4.set(true);
}*/
/*if(leftJoy.getRawButton(4)) {
Solenoid5.set(false);
} else {
Solenoid5.set(true);
}*/
if(operator.getRawButton(3) == true) {
scalar.set(ControlMode.PercentOutput, .5);
}
else {
scalar.set(ControlMode.PercentOutput, 0);
}
if(operator.getRawButton(7) == true) {
intakeBags.set(ControlMode.PercentOutput, -.7);
}
else {
if(operator.getRawButton(6) == true) {
intakeBags.set(ControlMode.PercentOutput, .7);
}
else {
intakeBags.set(ControlMode.PercentOutput, 0);
}
}
if (rightJoy.getRawButton(2)) {
if (lowgear == true) {
Solenoid2.set(true);
Solenoid1.set(true);
lowgear = false;
Timer.delay(1);
} else {
Solenoid2.set(false);
Solenoid1.set(false);
lowgear = true;
Timer.delay(1);
}
}
if (rightJoy.getRawButton(1)) {
if(clamped == false) {
Solenoid0.set(true);
clamped = true;
Timer.delay(1);
}
else {
Solenoid0.set(false);
clamped = false;
Timer.delay(1);
}
}
if (leftJoy.getRawButton(1)) {
if(extended == false) {
Solenoid3.set(true);
extended = true;
Timer.delay(1);
}
else {
Solenoid3.set(false);
extended = false;
Timer.delay(1);
}
}
//while(isOperatorControl() && isEnabled()) {
//}
}
public void leftTurn() {
long leftCount = leftEncoder.get();
long rightCount = rightEncoder.get();
if(leftCount <= 5500) {
leftMotor1.set(ControlMode.PercentOutput, -0.35);
leftMotor2.set(ControlMode.PercentOutput, -0.35);
rightMotor1.set(ControlMode.PercentOutput, 0);
rightMotor2.set(ControlMode.PercentOutput, 0);
}
else {
leftMotor1.set(ControlMode.PercentOutput, -0.2);
leftMotor2.set(ControlMode.PercentOutput, -0.2);
rightMotor1.set(ControlMode.PercentOutput, 0.2);
rightMotor2.set(ControlMode.PercentOutput, 0.2);
Timer.delay(.75);
leftMotor1.set(ControlMode.PercentOutput, 0);
leftMotor2.set(ControlMode.PercentOutput, 0);
rightMotor1.set(ControlMode.PercentOutput, 0);
rightMotor2.set(ControlMode.PercentOutput, 0);
Solenoid3.set(true);
Timer.delay(1);
Solenoid0.set(true);
Counter = 2;
}
}
public void driveStraight() {
double Acceleration = 0.01;
long leftCount = leftEncoder.get();
long rightCount = rightEncoder.get();
long leftChange = leftCount - idealleft;
long rightChange = rightCount - idealright;
idealleft = leftEncoder.get();
idealright = rightEncoder.get();
leftElevatorMotor.set(ControlMode.PercentOutput, operator.getY());
if(leftCount <= 13820 && rightCount < 13820) {
if (leftChange == 40) {
}
else if (leftChange >= 40) {
leftspeed = leftspeed - Acceleration;
}
else if (leftChange <= 40) {
leftspeed = leftspeed + Acceleration;
}
if (rightChange == 40) {
}
else if (rightChange >= 40) {
rightspeed = rightspeed - Acceleration;
}
else if (rightChange <= 40) {
rightspeed = rightspeed + Acceleration;
}
if (leftspeed >= 0.5) {
leftspeed = 0.5;
}
if (rightspeed >= 0.5) {
rightspeed = 0.5;
}
leftMotor1.set(ControlMode.PercentOutput, -leftspeed);
leftMotor2.set(ControlMode.PercentOutput, -leftspeed);
rightMotor1.set(ControlMode.PercentOutput, rightspeed);
rightMotor2.set(ControlMode.PercentOutput, rightspeed);
}
else {
leftMotor1.set(ControlMode.PercentOutput, 0);
leftMotor2.set(ControlMode.PercentOutput, 0);
rightMotor1.set(ControlMode.PercentOutput, 0);
rightMotor2.set(ControlMode.PercentOutput, 0);
Counter = 1;
leftEncoder.reset();
rightEncoder.reset();
}
}
@Override
/**
* This function is called periodically during test mode.
*/
public void testPeriodic() {
}
}