-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGrewn_Wheels.java
More file actions
106 lines (81 loc) · 1.79 KB
/
Grewn_Wheels.java
File metadata and controls
106 lines (81 loc) · 1.79 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
<<<<<<< HEAD
package org.firstinspires.ftc.teamcode.Code;
=======
//package org.firstinspires.ftc.teamcode;
import com.qualcomm.robotcore.eventloop.opmode.Disabled;
>>>>>>> 64de4dee387187d28d889be0f5e1e9a380040880
import com.qualcomm.robotcore.hardware.DcMotor;
import com.qualcomm.robotcore.eventloop.opmode.OpMode;
import com.qualcomm.robotcore.eventloop.opmode.TeleOp;
/**
* Created by plankton_J on 1/23/17.
*/
<<<<<<< HEAD
public class Grewn_Wheels extends OpMode {
=======
@Disabled
public class Grewn_Wheels extends OpMode {
>>>>>>> 64de4dee387187d28d889be0f5e1e9a380040880
DcMotor LF;
DcMotor RF;
DcMotor LB;
DcMotor RB;
double LeftF = 0;
double RightF = 0;
double LeftB = 0;
double RightB = 0;
double speed = .5;
<<<<<<< HEAD
double x = gamepad1.left_stick_x;
double y = gamepad1.left_stick_y;
//NE:
if( x> 0.3 && y >0){
x = speed;
y = speed;
// move
}
//SE
if(x>0.3 && y<0){
x= speed;
y = -speed;
}
//SW
if(x<-0.3 && y <0){
x=-speed;
y=-speed;
}
//NW
if(x<-0.3 && y>0){
x=-speed;
y= speed;
}
=======
public void init() {
}
public void loop() {
double x = gamepad1.left_stick_x;
double y = gamepad1.left_stick_y;
//NE:
if (x > 0.3 && y > 0) {
x = speed;
y = speed;
// move
}
//SE
if (x > 0.3 && y < 0) {
x = speed;
y = -speed;
}
//SW
if (x < -0.3 && y < 0) {
x = -speed;
y = -speed;
}
//NW
if (x < -0.3 && y > 0) {
x = -speed;
y = speed;
}
}
>>>>>>> 64de4dee387187d28d889be0f5e1e9a380040880
}