-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQbertAutoBasicRight.java
184 lines (160 loc) · 5.74 KB
/
QbertAutoBasicRight.java
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
package org.firstinspires.ftc.teamcode;
import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode;
import com.qualcomm.robotcore.eventloop.opmode.Autonomous;
import com.qualcomm.robotcore.eventloop.opmode.TeleOp;
import com.qualcomm.robotcore.eventloop.opmode.Disabled;
import com.qualcomm.robotcore.hardware.DcMotor;
import com.qualcomm.robotcore.util.ElapsedTime;
import com.qualcomm.robotcore.util.Range;
@Autonomous(name="Basic Right", group="Basic")
public class QbertAutoBasicRight extends LinearOpMode {
private Qbert robot = new Qbert();
@Override
public void runOpMode() {
robot.init(hardwareMap);
robot.lift.setMode(DcMotor.RunMode.RUN_TO_POSITION);
waitForStart();
// run until the end of the match (driver presses STOP)
robot.lift.setTargetPosition(robot.lift.getCurrentPosition() - 16500);
robot.lift.setPower(100);
while(robot.lift.isBusy()){}
//robot.lift.setPower(0);
robot.latch.setPower(-1);
pause(2000);
robot.latch.setPower(0);
//robot.lift.setTargetPosition(robot.lift.getCurrentPosition() + 16500);
driveBackward(0.7, 17); // away from lander
pause(200);
driveRight(0.7, 18); // to side of field
pause(200);
/*driveBackward(0.7, 5); // knock off cube/whatever
pause(200);*/
driveBackward(0.7, 10);
pause(200);
turnCounter(0.5, 210);
pause(200);
driveRight(0.7, 20);
/*driveRight(0.7, 18); // to side of field
pause(200);
turnCounter(0.5, 48); // to facing floor goal
pause(200);
driveRight(0.7, 55); // to floor goal */
pause(200);
/*robot.mark.setPower(-1); // drop marker
pause(2000);
robot.mark.setPower(0);*/
driveLeft(0.7, 65);
while(robot.lift.isBusy()) {} }
private void pause(long time) {
try {
Thread.sleep(time);
} catch(Exception e) {
}
}
private void driveForward(double speed, double distance){
robot.one.setPower(speed);
robot.two.setPower(speed);
robot.three.setPower(-speed);
robot.four.setPower(-speed);
int initial = robot.one.getCurrentPosition();
while(robot.one.getCurrentPosition() < initial + distance*1075.2/3.1415/5) {
telemetry.addData("one", robot.one.getCurrentPosition());
telemetry.update();
}
stopWheels();
}
private void driveBackward(double speed, double distance){
robot.one.setPower(-speed);
robot.two.setPower(-speed);
robot.three.setPower(speed);
robot.four.setPower(speed);
int initial = robot.one.getCurrentPosition();
while(robot.one.getCurrentPosition() > initial - distance*1075.2/3.1415/5) {
telemetry.addData("one", robot.one.getCurrentPosition());
telemetry.update();
}
stopWheels();
}
private void driveLeft(double speed, double distance){
robot.one.setPower(speed);
robot.two.setPower(-speed);
robot.three.setPower(-speed);
robot.four.setPower(speed);
int initial = robot.one.getCurrentPosition();
while(robot.one.getCurrentPosition() < initial + distance*1075.2/3.1415/5) {}
stopWheels();
}
private void driveRight(double speed, double distance){
robot.one.setPower(-speed);
robot.two.setPower(speed);
robot.three.setPower(speed);
robot.four.setPower(-speed);
int initial = robot.one.getCurrentPosition();
while(robot.one.getCurrentPosition() > initial - distance*1075.2/3.1415/5) {}
stopWheels();
}
private void turnCounter(double speed, double angle) {
robot.one.setPower(speed);
robot.two.setPower(speed);
robot.three.setPower(speed);
robot.four.setPower(speed);
robot.updateGyro(5);
//angle -= 5;
double leeway = 40;
double current = robot.angles.thirdAngle;
double lesser = current + angle;
double greater = current + angle + leeway;
if(greater < 180) {
while(current < lesser) {
robot.updateGyro(5);
current = robot.angles.thirdAngle;
}
}
else if(greater > 180 && lesser < 180) {
greater = wrap(greater);
while(!(current > lesser || current < greater)) {
robot.updateGyro(5);
current = robot.angles.thirdAngle;
}
}
else if(lesser > 180) {
greater = wrap(greater);
lesser = wrap(lesser);
while(!(current > lesser && current < greater)) {
robot.updateGyro(5);
current = robot.angles.thirdAngle;
}
}
else {
telemetry.addData("","wat");
telemetry.update();
pause(30000);
}
/*if(orig < -90) {
while(wrap(current)) {}
}
while(wrap(robot.angles.thirdAngle) > wrap(robot.angles.thirdAngle - angle)) {
robot.updateGyro(5);
telemetry.addData("angle", robot.angles.thirdAngle);
telemetry.update();
}*/
stopWheels();
}
private void stopWheels() {
robot.one.setPower(0);
robot.two.setPower(0);
robot.three.setPower(0);
robot.four.setPower(0);
}
private double wrap(double input) {
while(Math.abs(input) > 180) {
if(input < -180) {
input += 360;
}
else {
input -= 360;
}
}
return input;
}
}