-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompetitionCodeV4.0
179 lines (155 loc) · 4.47 KB
/
CompetitionCodeV4.0
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
#pragma config(Motor, port1, claw2, tmotorVex393_HBridge, openLoop)
#pragma config(Motor, port2, rightMotor, tmotorServoContinuousRotation, openLoop, reversed)
#pragma config(Motor, port3, leftMotor, tmotorServoContinuousRotation, openLoop)
#pragma config(Motor, port4, leftLift1, tmotorServoContinuousRotation, openLoop, reversed)
#pragma config(Motor, port5, leftLift2, tmotorServoContinuousRotation, openLoop)
#pragma config(Motor, port6, leftLift3, tmotorServoContinuousRotation, openLoop, reversed)
#pragma config(Motor, port7, rightLift1, tmotorServoContinuousRotation, openLoop)
#pragma config(Motor, port8, rightLift2, tmotorServoContinuousRotation, openLoop, reversed)
#pragma config(Motor, port9, rightLift3, tmotorServoContinuousRotation, openLoop)
#pragma config(Motor, port10, claw, tmotorVex393_HBridge, openLoop, reversed)
//*!!Code automatically generated by 'ROBOTC' configuration wizard !!*//
// This code is for the VEX cortex platform
#pragma platform(VEX2)
// Select Download method as "competition"
#pragma competitionControl(Competition)
#pragma autonomousDuration(15)
#pragma userControlDuration(120)
//Main competition background code...do not modify!
#include "Vex_Competition_Includes.c"
//basic void methods
void grab(){
motor[claw] = 80;
motor[claw2] = 80;
}
void drop(){
motor[claw] = -50;
motor[claw2]= -50;
}
void forward() {//moves robot forward
motor[leftMotor] = -127;
motor[rightMotor] = -127;
}
void backward(){//moves robot backwards
motor[leftMotor] = 127;
motor[rightMotor] = 127;
}
void left(){//rotates the robot right
motor[leftMotor] = -127;
motor[rightMotor] = 127;
}
void right(){//rotates the robot left
motor[leftMotor] = 127;
motor[rightMotor] = -127;
}
void stopLifters(){ //stops lifters
motor[leftLift1] = 0;
motor[leftLift2] = 0;
motor[leftLift3] = 0;
motor[rightLift1] = 0;
motor[rightLift2] = 0;
motor[rightLift3] = 0;
}
void lift(){ //lifts lift (does not use buttons)
// while(SensorValue(highButton) == 0){
motor[leftLift1] = -127;
motor[leftLift2] = -127;
motor[leftLift3] = -127;
motor[rightLift1] = -127;
motor[rightLift2] = -127;
motor[rightLift3] = -127;
// }
}
void stopClaw(){
motor[claw2]=0;
motor[claw]=0;
}
void unLift(){ //unlifts
//while(SensorValue(lowButton) == 0){
motor[leftLift1] = 127;
motor[leftLift2] = 127;
motor[leftLift3] = 127;
motor[rightLift1] = 127;
motor[rightLift2] = 127;
motor[rightLift3] = 127;
}
void hang(){ //hangs over the thing
motor[leftLift1] = -80;
motor[leftLift2] = -80;
motor[leftLift3] = -80;
motor[rightLift1] = -80;
motor[rightLift2] = -80;
motor[rightLift3] = -80;
}
void stopMotors(){ //Stops all Motors
motor[leftMotor] = 0;
motor[rightMotor] = 0;
}
void pre_auton()
{
// Set bStopTasksBetweenModes to false if you want to keep user created tasks
// running between Autonomous and Driver controlled modes. You will need to
// manage all user created tasks if set to false.
bStopTasksBetweenModes = true;
stopMotors();
// Set bDisplayCompetitionStatusOnLcd to false if you don't want the LCD
// used by the competition include file, for example, you might want
// to display your team name on the LCD in this function.
// bDisplayCompetitionStatusOnLcd = false;
// All activities that occur before the competition starts
// Example: clearing encoders, setting servo positions, ...
}
task autonomous(){
//auton code here
}
task usercontrol(){
// User control code here, inside the loop
// Used timers to serve as a while loop to prevent the constant 'jerking' motion of the forklift that keeps checking if the button is pressed.
while (true){
while(vexRT[Btn7U] == 1){
forward();
}
while(vexRT[Btn7L] == 1){
left();
}
while(vexRT[Btn7R] == 1){
right();
}
while(vexRT[Btn7D] == 1){
backward();
}
if(vexRT[Btn8U] == 1){
clearTimer(T1);
while(time1[T1]<100){
unLift();
}
stopLifters();
}
if(vexRT[Btn8D] == 1){
clearTimer(T1);
while(time1[T1]<100){
lift();
}
stopLifters();
}
if(vexRT[Btn8L] == 1){
stopLifters();
}
if(vexRT[Btn6D] == 1){
clearTimer(T3);
while(time1[T3]<10){
drop();
}
stopClaw();
}
if(vexRT[Btn6U] == 1){
grab();
/*clearTimer(T3);
while(time1[T3]<10){
grab();
}
stopClaw();*/
}
stopMotors();
}
}