-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.c
81 lines (63 loc) · 1.73 KB
/
template.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
#pragma config(Sensor, S2, sonar, sensorSONAR)
#pragma config(Sensor, S3, light, sensorLightActive)
#pragma config(Sensor, S4, touch, sensorTouch)
//*!!Code automatically generated by 'ROBOTC' configuration wizard !!*//
// 48 threshold
void pivot_turn(float degrees);
void swing_turn(float degrees);
void forward(float revolutions);
void forward_cm(float cm);
void set_motors(int b, int c, bool sync);
task main()
{
// wo
}
void pivot_turn(float degrees) {
nSyncedMotors = synchBC;
nSyncedTurnRatio = -100;
nMotorEncoder[motorB] = 0;
nMotorEncoderTarget[motorB] = 360 * (degrees/180);
motor[motorB] = (degrees >= 0) ? 30 : -30;
while(nMotorRunState[motorB] != runStateIdle) {}
nSyncedMotors = synchNone;
motor[motorB] = 0;
}
void swing_turn(float degrees) {
nSyncedMotors = synchNone;
if (degrees >= 0) {
nMotorEncoder[motorB] = 0;
nMotorEncoderTarget[motorB] = 2 * 360 * (degrees/180);
motor[motorB] = 30;
while(nMotorRunState[motorB] != runStateIdle) {}
motor[motorB] = 0;
}
else {
nMotorEncoder[motorC] = 0;
nMotorEncoderTarget[motorC] = 2 * 360 * (degrees/180);
motor[motorC] = 10;
while(nMotorRunState[motorC] != runStateIdle) {}
motor[motorC] = 0;
}
}
void forward(float revolutions) {
nSyncedMotors = synchBC;
nMotorEncoder[motorB] = 0;
nMotorEncoderTarget[motorB] = revolutions * 360;
nSyncedTurnRatio = 100;
motor[motorB] = (revolutions > 0) ? 50 : -50;
while(nMotorRunState[motorB] != runStateIdle) {}
}
void forward_cm(float cm) {
forward((5 * (cm / 90)) * 100/98);
}
void set_motors(int b, int c) {
if (b == c) {
nSyncedMotors = synchBC;
nSyncedTurnRatio = 100;
motor[motorB] = b;
}
else {
motor[motorB] = b;
motor[motorC] = c;
}
}