File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
TeamCode/src/main/java/org/firstinspires/ftc/teamcode Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class Diffy(val robot: Robot) : Subsystem() {
2626
2727 companion object {
2828 @JvmField
29- var transferPitch = 0.79
29+ var transferPitch = 0.69
3030
3131 @JvmField
3232 var transferRoll = 1.0
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class OuttakeArm(val robot: Robot) : Subsystem() {
3333
3434 companion object {
3535 @JvmField
36- var basePosition = 0.65
36+ var basePosition = 0.64
3737
3838 @JvmField
3939 var specimenPosition = 0.5
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class OuttakeWrist(val robot: Robot) : Subsystem() {
2727
2828 companion object {
2929 @JvmField
30- var basePosition = 0.8375
30+ var basePosition = 0.875
3131
3232 @JvmField
3333 var specimenPosition = 0.5
Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ class BasicTeleop : OpMode() {
5959 robot.intake.arm.state = IntakeArmPosition .BASE
6060 robot.intake.diffy.pitch = Diffy .transferPitch
6161 robot.intake.diffy.roll = Diffy .transferRoll
62+ robot.outtake.claw.isOpen = true
6263 }, robot.intake),
6364 WaitCommand (intakeDuration),
6465 InstantCommand ({
6566 robot.outtake.arm.state = OuttakeArmPosition .BASE
6667 robot.outtake.wrist.state = OuttakeWristPosition .BASE
67- robot.outtake.claw.isOpen = true
6868 }, robot.outtake),
6969 WaitCommand (transferDuration),
7070 InstantCommand ({
@@ -248,12 +248,12 @@ class BasicTeleop : OpMode() {
248248 var transferClawDelay: Long = 250
249249
250250 @JvmField
251- var transferDuration: Long = 1500
251+ var transferDuration: Long = 0
252252
253253 @JvmField
254254 var outtakePickupClawDelay: Long = 250
255255
256256 @JvmField
257- var intakeDuration: Long = 1500
257+ var intakeDuration: Long = 750
258258 }
259259}
You can’t perform that action at this time.
0 commit comments