forked from theotherjimmy/Rasware2013
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Car Second Edition
195 lines (180 loc) · 5.62 KB
/
Car Second Edition
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
#include <RASLib/inc/common.h>
#include <RASLib/inc/gpio.h>
#include <RASLib/inc/time.h>
#include <RASLib/inc/motor.h>
#include "Switch.h"
#include <RASLib/inc/linesensor.h>
#include <RASLib/inc/adc.h>
#include <math.h>
// Blink the LED to show we're on
tBoolean blink_on = true;
tMotor *leftMotor;
tMotor *rightMotor;
float leftSpeed;
float rightSpeed;
void setLeftMoterSpeed(float speed){
SetMotor(leftMotor, speed);
leftSpeed = speed;
}
void setRightMoterSpeed(float speed){
SetMotor(rightMotor, speed);
rightSpeed = speed;
}
int main(void) {
//Continuous Servo Motor; true and false make motors
//turn into opposite directions.
leftMotor = InitializeServoMotor(PIN_E4, false); //forward with false
rightMotor = InitializeServoMotor(PIN_E5, true); // forward
//
// LineSensor
// tLineSensor *line = InitializeGPIOLineSensor(PIN_B0, PIN_B1, PIN_E4, PIN_E5, PIN_B4, PIN_A5, PIN_A6, PIN_A7);
// float value[8];
//
// Infrared Distance Sensor
// ADC is only supported on a limited number of pins in hardware
// The following pins are supported:
// PIN_B4 PIN_B5 PIN_D0 PIN_D1 PIN_D2 PIN_D3 PIN_E0
// PIN_E1 PIN_E2 PIN_E3 PIN_E4 PIN_E5
float errorL;
float errorR;
float percentErrorL;
float percentErrorR;
float desired = 0.40;
float kpL;
float kpR;
tADC *IRLeft = InitializeADC(PIN_D1);
tADC *IRRight = InitializeADC(PIN_D0);
float readIRLeft;
float readIRRight;
bool flag = false;
while (1) {
// //Continuous Servo Motor V(left, 0) = V(right0.258)
// // speed = changing k * speed(set)
setLeftMoterSpeed(0.8);
setRightMoterSpeed(0.8);
//
//
// readIRLeft = ADCRead(IRLeft);
// errorL = readIRLeft - desired;
// percentErrorL = errorL / desired - 0.5;
// kpL = 1 + fabs(0.4 * percentErrorL);
readIRRight = ADCRead(IRRight);
errorR = readIRRight - desired;
percentErrorR = errorR / desired - 0.5;
kpR = 1 + fabs(0.4 * percentErrorR);
// // Which IR sensor to use?
// if ((errorL - errorR < 0.1 || errorR - errorL < 0.1) && (errorL < 0.1 && errorR < 0.1)){
// setLeftMoterSpeed(0.8);
// setRightMoterSpeed(0.8);
// }
//
// //if L - R > 0.05 : use L
// if ((errorL - errorR < 0.1 || errorR - errorL < 0.1) && (errorL > 0.1 || errorR > 0.1)){
// //turn Left
// int flag = 0;
// while (flag < 6 ){
// setLeftMoterSpeed(- 0.2 * kpR);
// setRightMoterSpeed(0.5 * kpR);
// Wait(0.2);
// flag++;
// }
// }
//
// //if R - L > 0.05 : use R
//
//
// //Left IR Sensor
// if (errorL > 0.1){
// setLeftMoterSpeed(0.5 * kpL);
// setRightMoterSpeed(-0.2 * kpL);
// }
// else if (errorL < - 0.1){
// if (errorL < - 0.3){
// int flag = 0;
// while (flag < 6 ){
// setLeftMoterSpeed(0.8);
// setRightMoterSpeed(0.8);
// Wait(0.2);
// flag++;
// }
// }
// setLeftMoterSpeed(-0.2 * kpL);
// setRightMoterSpeed(0.5 * kpL);
// }
//Right IR sensor
if (errorR > 0.1){
setLeftMoterSpeed(-0.2 * kpR);
setRightMoterSpeed(0.5 * kpR);
}
else if (errorR < - 0.1){
if (errorR < - 0.3){
flag = true;
while (flag){
setLeftMoterSpeed(0.8);
setRightMoterSpeed(0.8);
Wait(0.6);
setLeftMoterSpeed(0.5 * kpR);
setRightMoterSpeed(-0.2 * kpR);
Wait(0.4); //
flag = false;
}
}
setLeftMoterSpeed(0.5 * kpR);
setRightMoterSpeed(-0.2 * kpR); //
}
// if (error < 0){
// Printf("The error is %f, too far.\n", error);
// }
// else {
// Printf("The error is %f, too close.\n", error);
// }
// Micro Servo Motor
// float a;
// for (a = 0.0; a < 1.0; a += 0.1){
// SetServo(servo, a);
// wait(0.5);
// }
// for (a = 1.0; a > 0.0; a _= 0.1){
// SetServo(servo, a);
// wait(0.5);
// }
// //LineSensor
// int max1 = 0;
// int max2 = 0;
// int index1, index2, sum;
// LineSensorReadArray(line, value);
// // find Max
// for (int i = 0; i <= 7; i++){
// if (value[i] >= max1) {
// max1 = value[i];
// index1 = i;
// }
// }
// // find second Max
// for (int i = 0; i <= 7; i++){
// if (value[i] >= max2 && value[i] < max1){
// max2 = value[i];
// index2 = i;
// }
// }
// for (int i = 0; i <= 7; i++){
// if (i == index1 || i == index2){
// value[i] = 1;
// }
// else{
// value[i] = 0;
// }
// }
// // reset value
// value[0] *= -4; value[1] *= -3; value[2] *= -2; value[3] *= -1;
// value[4] *= 1; value[5] *= 2; value[6] *= 3; value[7] *= 4;
// for (int i = 0; i <= 7; i++){
// sum += value[i];
// }
// setLeftMoterSpeed(0.8 + 0.04 * sum);
// setRightMoterSpeed(0.8 - 0.04 * sum);
//Printf("%f\t%f\t%f\t%f\t%f\t%f\t%f\t%f\t\n", value[0], value[1], value[2],
//value[3], value[4], value[5], value[6], value[7]);
Wait(0.01);
}
}