-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlueRelic.java0
52 lines (39 loc) · 1.44 KB
/
BlueRelic.java0
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
package org.firstinspires.ftc.teamcode;
import com.qualcomm.robotcore.eventloop.opmode.Autonomous;
import com.qualcomm.robotcore.hardware.DcMotor;
import com.qualcomm.robotcore.hardware.DistanceSensor;
import com.qualcomm.robotcore.util.Range;
import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode;
import android.graphics.Color;
import com.qualcomm.robotcore.hardware.ColorSensor;
//import android.speech.tts.TextToSpeech;
@Autonomous(name = "BlueRelic", group = "finals")
public class BlueRelic extends LinearOpMode {
private Botbot robot = new Botbot();
@Override
public void runOpMode() throws InterruptedException {
robot.init(hardwareMap);
telemetry.addData("robot", "ready");
updateTelemetry(telemetry);
waitForStart();
telemetry.addData("red", robot.knockJewel(false));
updateTelemetry(telemetry);
wait(1000);
double speed = 0.5;
robot.driveTime(-speed, -speed, 700);
robot.driveTime(-speed, speed, 1000);
robot.driveTime(-speed, -speed, 500);
robot.intakeLeft.setPower(-1);
robot.intakeRight.setPower(-1);
robot.wait(1000);
robot.driveTime(0.2, 0.2, 1000);
}
void wait(int time) {
try {
Thread.sleep(time);
}
catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
}
}