-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutonomous.c
310 lines (252 loc) · 9.19 KB
/
Autonomous.c
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
#pragma config(Motor, port2, frontRight, tmotorVex393_MC29, openLoop, reversed, driveRight)
#pragma config(Motor, port3, frontLeft, tmotorVex393_MC29, openLoop, driveLeft)
#pragma config(Motor, port4, backRight, tmotorVex393_MC29, openLoop, reversed, driveRight)
#pragma config(Motor, port5, backLeft, tmotorVex393_MC29, openLoop, driveLeft)
task main()
{
string motors[] = {"frontRight", "frontLeft", "backRight", "backLeft"};
// 5.125 makes us innacurate, how about 5.25? (Check this later down the road)
float distanceRight, distanceLeft, rotationsRight, rotationsLeft, degreesRight, degreesLeft, ratio, diameter = 5.125, circumference = PI * diameter;
int encoderCountsRight = 0, encoderCountsLeft = 0;
void ForwardForDistance(int speed, float targetDistance) //The arguments are sorted alphabetically. Make speed negative to reverse and change the wait to abs to make sure it works
{
//float rotations = targetDistance / circumference; On torque mode (stock), there are 627 counts to a revolution, high speed there is 392, and turbo speed has 261
//float degrees = rotations * 360;
//float encoderCounts = degrees * 4; // 24 / 18.375 is 1.30612244898
//Auto-correction
//while(nMotorEncoder[frontRight] < encoderCounts && nMotorEncoder[frontLeft] < encoderCounts)
//{
// if (nMotorEncoder[frontRight] > nMotorEncoder[frontLeft])
// {
// motor[frontRight] = speed / 2;
// motor[backRight] = speed / 2;
// }
// else if(nMotorEncoder[frontRight] < nMotorEncoder[frontLeft])
// {
// motor[frontLeft] = speed / 2; // These are negative because we are still turning
// motor[backLeft] = speed / 2;
// }
// else if (nMotorEncoder[frontRight] == nMotorEncoder[frontLeft])
// {
// motor[frontRight] = speed;
// motor[frontLeft] = speed;
// motor[backRight] = speed;
// motor[backLeft] = speed;
// }
//}
float motorEncoderRight = targetDistance, motorEncoderLeft = targetDistance; //600 = 1 foot
while (nMotorEncoder(frontRight) < motorEncoderRight && nMotorEncoder(frontLeft) < motorEncoderLeft)
{
motor[frontRight] = speed;
motor[frontLeft] = speed;
motor[backRight] = speed;
motor[backLeft] = speed;
}
//Could this work???
while (nMotorEncoder(frontRight) < motorEncoderRight && nMotorEncoder(frontLeft) < motorEncoderLeft)
{
for (int i = 0; i <= sizeof(motors); i++)
motor[motors[i]] = speed;
}
}
//Could this work as well???
void Turn(float degreesToTurn, int speed)
{
ratio = 180 / degreesToTurn;
distanceRight = 29.85 / ratio;
rotationsRight = distanceRight / circumference;
degreesRight = rotationsRight * 360;
encoderCountsRight = degreesRight * 4;
encoderCountsLeft = encoderCountsRight * -1;
if (degreesToTurn < 0)
{
motor[frontRight] = speed;
motor[frontLeft] = speed * -1;
motor[backRight] = speed;
motor[backLeft] = speed * -1;
while (nMotorEncoder[frontRight] < encoderCountsRight && nMotorEncoder[frontLeft] < encoderCountsLeft)
{
if (abs(nMotorEncoder[frontRight]) > abs(nMotorEncoder[frontLeft]))
{
motor[frontRight] = speed / 2;
motor[backRight] = speed / 2;
}
else if (abs(nMotorEncoder[frontRight]) < abs(nMotorEncoder[frontLeft]))
{
motor[frontLeft] = speed / -2;
motor[backLeft] = speed / -2;
}
else if (nMotorEncoder[frontRight] == nMotorEncoder[frontLeft])
{
motor[frontRight] = speed;
motor[frontLeft] = speed;
motor[backRight] = speed;
motor[backLeft] = speed;
}
}
}
else if (degreesToTurn > 0)
{
motor[frontRight] = speed * -1;
motor[frontLeft] = speed;
motor[backRight] = speed * -1;
motor[backLeft] = speed;
while (nMotorEncoder[frontRight] < encoderCountsRight && nMotorEncoder[frontLeft] < encoderCountsLeft)
{
if (abs(nMotorEncoder[frontRight]) > abs(nMotorEncoder[frontLeft]))
{
//Since one value is negative and one is positive, abs(absolute value) makes it so that we can make sure the robot turns evenly
motor[frontRight] = speed / -2;
motor[backRight] = speed / -2;
}
else if (abs(nMotorEncoder[frontRight]) < abs(nMotorEncoder[frontLeft]))
{
motor[frontLeft] = speed / 2; // These are negative because we are still turning
motor[backLeft] = speed / 2;
}
else if (nMotorEncoder[frontRight] == nMotorEncoder[frontLeft])
{
motor[frontRight] = speed;
motor[frontLeft] = speed;
motor[backRight] = speed;
motor[backLeft] = speed;
}
}
}
}
/*void TurnLeft(float degreesToTurn, int speed)
{
//float rotationsRight = distanceRight / circumference; On torque mode (stock), there are 627 counts to a revolution, high speed there is 392, and
// turbo speed has 261
//float degreesRight = rotationsRight * 627.2;
//float encoderCountsRight = degreesRight * 4; // 24 / 18.375 is 1.30612244898
////float rotationsLeft = distanceLeft / circumference;
//float rotationsLeft = rotationsRight * -1; // This is the same as calculating the rotations directly
//float degreesLeft = rotationsLeft * 627.2;
//float encoderCountsLeft = degreesLeft * 4;
ratio = 180 / degreesToTurn; // We find the ratio of degrees to turn to doing a 180 turn
distanceLeft = 29.85 //ratio; This then compares the distance to turn of a 180 to the ratio made above to make the distance the robot has to turn
rotationsLeft = distanceLeft / circumference;
degreesLeft = rotationsLeft * 360;
encoderCountsLeft = degreesLeft * 4; // The encoder counts in quarter degrees.
encoderCountsRight = encoderCountsLeft * -1; // This is the same as calculating the counts directly, but saves time :)
motor[frontRight] = speed * -1;
motor[frontLeft] = speed;
motor[backRight] = speed * -1;
motor[backLeft] = speed;
while(nMotorEncoder[frontRight] < encoderCountsRight && nMotorEncoder[frontLeft] < encoderCountsLeft)
{
if (abs(nMotorEncoder[frontRight]) > abs(nMotorEncoder[frontLeft]))
{ Since one value is negative and one is positive, abs (absolute value) makes it so that we can make sure the robot
turns evenly
motor[frontRight] = speed / -2;
motor[backRight] = speed / -2;
}
else if(abs(nMotorEncoder[frontRight]) < abs(nMotorEncoder[frontLeft]))
{
motor[frontLeft] = speed / 2; // These are negative because we are still turning
motor[backLeft] = speed / 2;
}
else if (nMotorEncoder[frontRight] == nMotorEncoder[frontLeft])
{
motor[frontRight] = speed;
motor[frontLeft] = speed;
motor[backRight] = speed;
motor[backLeft] = speed;
}
}
}
void TurnRight(float degreesToTurn, int speed)
{
ratio = 180 / degreesToTurn;
distanceRight = 29.85 / ratio;
rotationsRight = distanceRight / circumference;
degreesRight = rotationsRight * 360;
encoderCountsRight = degreesRight * 4;
encoderCountsLeft = encoderCountsRight * -1;
resetMotorEncoder(frontRight);
resetMotorEncoder(frontLeft);
motor[frontRight] = speed;
motor[frontLeft] = speed * -1;
motor[backRight] = speed;
motor[backLeft] = speed * -1;
while(nMotorEncoder[frontRight] < encoderCountsRight && nMotorEncoder[frontLeft] < encoderCountsLeft)
{
if (abs(nMotorEncoder[frontRight]) > abs(nMotorEncoder[frontLeft]))
{
motor[frontRight] = speed / 2;
motor[backRight] = speed / 2;
}
else if(abs(nMotorEncoder[frontRight]) < abs(nMotorEncoder[frontLeft]))
{
motor[frontLeft] = speed / -2;
motor[backLeft] = speed / -2;
}
else if (nMotorEncoder[frontRight] == nMotorEncoder[frontLeft])
{
motor[frontRight] = speed;
motor[frontLeft] = speed;
motor[backRight] = speed;
motor[backLeft] = speed;
}
}
}*/
void Wait(float timeToWait)
{
wait1Msec(timeToWait * 1000);
}
void Stop()
{
motor[frontRight] = 0;
motor[frontLeft] = 0;
motor[backRight] = 0;
motor[backLeft] = 0;
}
// These 'if' statements check to see if there is a jumper in the selected port. If there is a jumper in that port, the sensor returns a false value that portion of code will be ran.
//float rotationsRight = distanceRight / circumference; // On torque mode (stock), there are 627 counts to a revolution, high speed there is 392, and
// turbo speed has 261
//float degreesRight = rotationsRight * 627.2;
//float encoderCountsRight = degreesRight * 4; // 24 / 18.375 is 1.30612244898
//float rotationsLeft = distanceLeft / circumference;
//float degreesLeft = rotationsLeft * 627.2;
//float encoderCountsLeft = degreesLeft * 4;
if (!SensorBoolean[blueSide1])
{
}
else if (!SensorBoolean[blueSide2])
{
}
else if (!SensorBoolean[blueSide3])
{
}
else if (!SensorBoolean[blueBack1])
{
}
else if (!SensorBoolean[blueBack2])
{
}
else if (!SensorBoolean[blueBack3])
{
}
else if (!SensorBoolean[redSide1])
{
}
else if (!SensorBoolean[redSide2])
{
}
else if (!SensorBoolean[redSide3])
{
}
else if (!SensorBoolean[redBack1])
{
}
else if (!SensorBoolean[redBack2])
{
}
else if (!SensorBoolean[redBack3])
{
}
else
{
}
}