-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
172 lines (120 loc) · 3.33 KB
/
Copy pathmain.cpp
File metadata and controls
172 lines (120 loc) · 3.33 KB
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
#include "MeMCore.h"
MeUltrasonicSensor ultra(PORT_3);
MeLineFollower lineFinder(PORT2);
MeDCMotor left(M1);
MeDCMotor right(M2);
void setup() {
}
void loop() {
// Drive straight following the line
while(lineFinder.readSensor1()==0||lineFinder.readSensor2()==0){
if(lineFinder.readSensor1()==1){
left.run(-110);
right.run(50);
}
else if(lineFinder.readSensor2()==1){
left.run(-50);
right.run(110);
}
else{
left.run(-70);
right.run(70);
}
}
// Stop the robot at the end of the line
left.stop();
right.stop();
delay(1000);
while (lineFinder.readSensor1()==1){
// Rotates to the right
left.run(-80);
right.run(-80);
}
// Stop the robot
left.stop();
right.stop();
delay(1000);
// Drive straight following the line
while(lineFinder.readSensor1()==0||lineFinder.readSensor2()==0){
if(lineFinder.readSensor1()==1){
left.run(-110);
right.run(50);
}
else if(lineFinder.readSensor2()==1){
left.run(-50);
right.run(110);
}
else{
left.run(-70);
right.run(70);
}
}
// Stop the robot at the end of the line
left.stop();
right.stop();
delay(1000);
while (lineFinder.readSensor1()==1){
// Rotates to the right
left.run(-80);
right.run(-80);
}
// Stop the robot
left.stop();
right.stop();
delay(1000);
if (ultra.distanceCm() > 20.0) {
// If the space is EMPTY, the mBot parks in the space
left.run(-100);
right.run(100);
delay(500);
// Park here forever!
while(true){
left.stop();
right.stop();
}
}
else {
// If the space is NOT EMPTY, the mBot rotates left until it picks up the vertical line
// on the other side and stops
// First, rotate to the left to get over the middle line
left.run(80);
right.run(80);
delay(1000);
while (lineFinder.readSensor2()==1){
// Rotates to the left
left.run(80);
right.run(80);
}
}
// Stop the robot
left.stop();
right.stop();
delay(1000);
if (ultra.distanceCm() > 20.0) {
// If the space is EMPTY, the mBot parks in the space
left.run(-100);
right.run(100);
delay(500);
// Park here forever!
while(true){
left.stop();
right.stop();
}
}
else {
// If the space is NOT EMPTY, the mBot rotate to the right to get over the middle line
// and stops
// First, rotate to the right to get realigned with the middle line
left.run(-80);
right.run(-80);
delay(900); // you can try a more appropriate delay time to get the robot better aligned
}
// Stop the robot
left.stop();
right.stop();
// Park here forever!
while(true){
left.stop();
right.stop();
}
}