This repository was archived by the owner on Aug 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontrol.h
122 lines (96 loc) · 2.21 KB
/
control.h
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
void setDrive(int a, int b) {
a *= DRIVE_SPEED;
b *= DRIVE_SPEED;
if (INV_DRV_A) {
a *= -1;
b *= -1;
}
int left = (INV_DRV_B) ? (b + a) : (a + b);
int right = (INV_DRV_B) ? (b - a) : (a - b);
motor[drvTopRight] = right;
motor[drvBottomRight] = right;
motor[drvTopLeft] = left;
motor[drvBottomLeft] = left;
}
void driveControl() {
int x = (abs(vexRT[Ch4]) > DEADZONE) ? (vexRT[Ch4]) : (0);
int y = (abs(vexRT[Ch3]) > DEADZONE) ? (vexRT[Ch3]) : (0);
setDrive(x, y);
}
void setMGLift(int speed) {
motor[leftMGLift] = speed;
motor[rightMGLift] = speed;
}
void mgLiftControl() {
if (vexRT[Btn6U] || vexRT[Btn8L]) {
setMGLift(MG_LIFT_SPEED);
} else if (vexRT[Btn6D] || vexRT[Btn8R]) {
setMGLift(-1 * MG_LIFT_SPEED);
} else {
setMGLift(MOTOR_OFF);
}
}
void setConeLift(int speed) {
motor[leftCLift] = speed;
motor[rightCLift] = speed;
}
void coneLiftControl() {
if (vexRT[Btn5U]) {
setConeLift(CONE_LIFT_R_SPEED);
} else if (vexRT[Btn5D]) {
setConeLift(-1 * CONE_LIFT_L_SPEED);
} else {
setConeLift(CONE_LIFT_HOLD);
}
}
void setClaw(int speed) {
motor[claw] = speed;
}
void clawControl() {
if (vexRT[Btn7L]) {
setClaw(CLAW_SPEED);
} else if (vexRT[Btn7R]) {
setClaw(-1 * CLAW_SPEED);
} else {
setClaw(MOTOR_OFF);
}
}
void resetQuads() {
SensorValue[quadLeft] = 0;
SensorValue[quadRight] = 0;
}
void encoderControl() {
if (vexRT[Btn7L]) {
resetQuads();
}
}
void setLEDs(int red = -1, int yellow = -1, int green = -1) {
if (red > -1 && red < 2) SensorValue[LEDred] = red;
if (yellow > -1 && yellow < 2) SensorValue[LEDyellow] = yellow;
if (green > -1 && green < 2) SensorValue[LEDgreen] = green;
}
void halt() {
setDrive(MOTOR_OFF, MOTOR_OFF);
setMGLift(MOTOR_OFF);
setConeLift(MOTOR_OFF);
setClaw(MOTOR_OFF);
}
void lockdown() {
bool locked = true;
while(locked) {
halt();
if (nPgmTime % 1000 == 0) setLEDs(1, 0, 0);
else if (nPgmTime % 500 == 0) setLEDs(0,0,0);
}
}
bool killSwitch() {
if (vexRT[Btn7D] == 1 && vexRT[Btn8D] == 1) {
killSwitchState = true;
halt();
} else if (vexRT[Btn7U] == 1 && vexRT[Btn8U] == 1) {
killSwitchState = false;
}
if (killSwitchState) setLEDs(1);
else setLEDs(0);
return killSwitchState;
}