-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRobotWheel.ino
316 lines (261 loc) · 6.62 KB
/
RobotWheel.ino
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
311
312
313
314
315
316
#include <Servo.h>
#define WHEEL_SPEED 180
#define LEFT_WHEEL_PIN 11
#define RIGHT_WHEEL_PIN 9
#define BUZZER_PIN 7
#define ULTRASONIC_SENSOR 8
//Line Follower
#define s0 A0
#define s1 A1
#define s2 A2
#define s3 A3
#define s4 A4
#define s5 A5
#define s6 4
#define s7 8
const int frequency = 31; //Range of frequeny is between 31 to 65535 on the arduino uno
const int duration = 5000;
int state;
int input;
String string;
bool boolState;
int intState;
long duration1;
long inches;
long cm;
bool isStop = false;
Servo wheelLeft;
Servo wheelRight;
void setup()
{
pinMode(BUZZER_PIN, OUTPUT);
//Line Follower
pinMode(s0, INPUT);
pinMode(s1, INPUT);
pinMode(s2, INPUT);
pinMode(s3, INPUT);
pinMode(s4, INPUT);
pinMode(s5, INPUT);
pinMode(s6, INPUT);
pinMode(s7, INPUT);
wheelLeft.attach(LEFT_WHEEL_PIN);
wheelRight.attach(RIGHT_WHEEL_PIN);
Serial.begin(9600);
}
void loop()
{
if(Serial.available()>0)
{
state = Serial.read();
//Move Forward
if(state == '1')
{
moveForward();
Serial.println("Move Forward");
state = 0;
}
//Reverse
if(state == '2')
{
moveReverse();
Serial.println("Reverse");
state = 0;
}
//Stop Moving
if(state == '3')
{
moveStop();
Serial.println("Stop Moving");
state = 0;
}
//Move to the Left
if(state == '4')
{
moveLeft();
Serial.println("Move to the Left");
state = 0;
}
//Move to the Right
if(state == '5')
{
moveRight();
Serial.println("Move to the Right");
state = 0;
}
//Line Follower Values
if(state == '6')
{
boolState = digitalRead(s0);
string = String(boolState);
Serial.println("s0: "+ string);
boolState = digitalRead(s1);
string = String(boolState);
Serial.println("s2: "+ string);
boolState = digitalRead(s2);
string = String(boolState);
Serial.println("s2: "+ string);
boolState = digitalRead(s3);
string = String(boolState);
Serial.println("s3: "+ string);
boolState = digitalRead(s4);
string = String(boolState);
Serial.println("s4: "+ string);
boolState = digitalRead(s5);
string = String(boolState);
Serial.println("s5: "+ string);
boolState = digitalRead(s6);
string = String(boolState);
Serial.println("s6: "+ string);
boolState = digitalRead(s7);
string = String(boolState);
Serial.println("s7: "+ string);
state = 0;
}
//Line Follower Forward
if(state == '7')
{
Serial.println("Line Follower Forward");
while(true)
{
if(digitalRead(s4)== HIGH && digitalRead(s5) == HIGH && digitalRead(s6) == HIGH && digitalRead(s7) == HIGH && digitalRead(s3)== HIGH && digitalRead(s2) == HIGH && digitalRead(s1) == HIGH && digitalRead(s0) == HIGH )
moveStop();
else if(digitalRead(s3)== HIGH && digitalRead(s4) == HIGH)
moveForward();
else if(digitalRead(s3)== HIGH || digitalRead(s2) == HIGH || digitalRead(s1) == HIGH || digitalRead(s0) == HIGH)
moveRight();
else if(digitalRead(s4)== HIGH || digitalRead(s5) == HIGH || digitalRead(s6) == HIGH || digitalRead(s7) == HIGH)
moveLeft();
else
{
moveStop();
// break;
}
}
state = 0;
}
//Line Follower Reverse
if(state == '8')
{
Serial.println("Line Follower Reverse");
while(true)
{
if(digitalRead(s4)== HIGH && digitalRead(s5) == HIGH && digitalRead(s6) == HIGH && digitalRead(s7) == HIGH && digitalRead(s3)== HIGH && digitalRead(s2) == HIGH && digitalRead(s1) == HIGH && digitalRead(s0) == HIGH )
moveStop();
else if(digitalRead(s3)== HIGH && digitalRead(s4) == HIGH)
moveReverse();
else if(digitalRead(s3)== HIGH || digitalRead(s2) == HIGH || digitalRead(s1) == HIGH || digitalRead(s0) == HIGH)
moveLeftReverse();
else if(digitalRead(s4)== HIGH || digitalRead(s5) == HIGH || digitalRead(s6) == HIGH || digitalRead(s7) == HIGH)
moveRightReverse();
else
{
moveStop();
// break;
}
}
state = 0;
}
if(state =='9')
{
while(true)
{
ultraSonicSetUp();
}
}
//Piezo Buzzer
if(state == '0')
{
tone(BUZZER_PIN, frequency, duration);
Serial.println("Piezo Buzzer");
state = 0;
}
}
}
void moveForward()
{
if(isStop)
attachWheel();
wheelLeft.write(WHEEL_SPEED);
wheelRight.write(-WHEEL_SPEED);
}
void moveReverse()
{
if(isStop)
attachWheel();
wheelLeft.write(-WHEEL_SPEED);
wheelRight.write(WHEEL_SPEED);
}
void moveStop()
{
wheelLeft.detach();
wheelRight.detach();
isStop = true;
}
void moveRight()
{
if(isStop)
attachWheel();
wheelLeft.write(WHEEL_SPEED);
wheelRight.write(WHEEL_SPEED);
}
void moveLeft()
{
if(isStop)
attachWheel();
wheelLeft.write(-WHEEL_SPEED);
wheelRight.write(-WHEEL_SPEED);
}
void moveRightReverse()
{
if(isStop)
attachWheel();
wheelLeft.write(-WHEEL_SPEED);
wheelRight.write(-WHEEL_SPEED);
}
void moveLeftReverse()
{
if(isStop)
attachWheel();
wheelLeft.write(WHEEL_SPEED);
wheelRight.write(WHEEL_SPEED);
}
void attachWheel()
{
wheelLeft.attach(LEFT_WHEEL_PIN);
wheelRight.attach(RIGHT_WHEEL_PIN);
}
void ultraSonicSetUp()
{
pinMode(ULTRASONIC_SENSOR, OUTPUT);
digitalWrite(ULTRASONIC_SENSOR, LOW);
delayMicroseconds(2);
digitalWrite(ULTRASONIC_SENSOR, HIGH);
delayMicroseconds(5);
digitalWrite(ULTRASONIC_SENSOR, LOW);
pinMode(ULTRASONIC_SENSOR, INPUT);
pinMode(ULTRASONIC_SENSOR, INPUT);
inches = microsecondsToInches(duration1);
cm = microsecondsToCentimeters(duration1);
Serial.print(inches);
Serial.print("in, ");
Serial.print(cm);
Serial.print("cm");
Serial.println();
delay(100);
}
long microsecondsToInches(long microseconds)
{
// According to Parallax's datasheet for the PING))), there are
// 73.746 microseconds per inch (i.e. sound travels at 1130 feet per
// second). This gives the distance travelled by the ping, outbound
// and return, so we divide by 2 to get the distance of the obstacle.
// See: http://www.parallax.com/dl/docs/prod/acc/28015-PING-v1.3.pdf
return microseconds / 74 / 2;
}
long microsecondsToCentimeters(long microseconds)
{
// The speed of sound is 340 m/s or 29 microseconds per centimeter.
// The ping travels out and back, so to find the distance of the
// object we take half of the distance travelled.
return microseconds / 29 / 2;
}