-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainCode.ino
287 lines (229 loc) · 5.95 KB
/
MainCode.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
//Imported Libraries
#include <AFMotor.h>
#include <Servo.h>
#include <NewPing.h>
//Wheel Constants
#define SPEEDSIDE 240 //The speed with which the rover takes the turn
#define SPEEDFRONT 165 //The speed with which the rover moves
#define WAIT 300 //Delay for the rover to turn
#define SERVOWAIT 1000 //Time period for which the Servo stays at a particular position
#define WAITLEFT 490
#define WAITRIGHT 600
//Servo Constants
#define LEFT 180 //At this angle, the ultrasonic sensor looks left
#define RIGHT 0 //At this angle, the ultrasonic sensor looks right
#define AHEAD 90 //Default angle of the Servo motor. At this angle, the ultrasonic sensor looks ahead
//UltraSonic sensor constants
#define TRIGGER A0 //Analog pin 0 of arduino is connected to the "Trigger" of the Ultrasonic sensor
#define ECHO A1 //Analog pin 1 of arduino is connected to the "Echo" of the Ultrasonic sensor
#define THRESHOLD 20 //The distance of 20cm is taken as the threshold distance
//Pump variables
#define PUMPDELAY 800
#define PUMPSPEED 190
//Motor Variables
AF_DCMotor right(4, MOTOR34_64KHZ); //The wheels on the right side are connected to the M4 of the motor-shield
AF_DCMotor left(3, MOTOR34_64KHZ); //The wheels on the left side are connected to the M3 of the motor-shield
AF_DCMotor pump(1, MOTOR12_1KHZ); //The DC motor is connected to the M1 of the motor-shield
//Servo
Servo angle;
//UltraSonic Sensor
NewPing detect(TRIGGER, ECHO, 400); //default value -> 500cm
#define TIMEOUT 200
/*Direction Control
(Left -> -1 || Right -> 1)
Changes accordingly when an obstacle is detected*/
int controlVal = -1;
int controlNum = 0;
void setup()
{
//Speed Configuration
right.setSpeed(255);
left.setSpeed(255);
delay(500);
right.setSpeed(SPEEDFRONT);
left.setSpeed(SPEEDFRONT);
//Setting Servo
angle.attach(10);
angle.write(AHEAD);
//First Pump Push
pump.run(FORWARD);
pump.setSpeed(PUMPSPEED);
delay(3*PUMPDELAY);
pump.setSpeed(0);
//Debugging
Serial.begin(1200);
}
void loop()
{
if(obstacleAhead())
{
moveStop();
if(isControlPathBlocked())
{
Serial.println("Control Path is blocked");
controlNum += 1;
controlVal *= -1;
turnRover();
}
else
{
Serial.println("Way to go!!");
turnRover();
delay(300);
moveForward();
delay(1000);
moveStop();
turnRover();
controlVal *= -1;
}
if(controlNum >= 2)
{
left.setSpeed(0);
right.setSpeed(0);
exit(0);
}
pourWater();
moveForward();
}
else
moveForward();
}
//Moves Right
void moveRight()
{
Serial.println("Moving Right!");
moveStop();
delay(WAIT);
left.run(FORWARD);
right.run(BACKWARD);
speedUp(SPEEDSIDE);
delay(WAITRIGHT);
moveStop();
}
//Moves Left
void moveLeft()
{
Serial.println("Moving left!");
moveStop();
delay(WAIT);
left.run(BACKWARD);
right.run(FORWARD);
speedUp(SPEEDSIDE);
delay(WAITLEFT);
moveStop();
}
//Moves Front
void moveForward()
{
Serial.println("Going forward");
left.run(FORWARD);
right.run(FORWARD);
speedUp(SPEEDFRONT);
}
//Moves Back
void moveBackward()
{
Serial.println("Going Back");
left.run(BACKWARD);
right.run(BACKWARD);
speedUp(SPEEDFRONT);
}
void speedUp(int speed)
{
left.setSpeed(speed);
right.setSpeed(speed);
}
//Slows Down + Stops Moving
void moveStop()
{
Serial.println("...Stopped");
left.setSpeed(0);
right.setSpeed(0);
delay(WAIT);
}
//Obstacle detection
//Returns 1 if there is an obstacle is detected by the Ultrasonic sensor
int obstacleAhead()
{
int obstacleDistance = detect.ping_cm();
Serial.println(obstacleDistance);//Debugging
while(obstacleDistance == 0)
{
pinMode(ECHO,OUTPUT);
digitalWrite(ECHO,LOW);
delay(TIMEOUT);
pinMode(ECHO,INPUT);
obstacleDistance = detect.ping_cm();
Serial.println(obstacleDistance);//Debugging
}
if(obstacleDistance <= THRESHOLD )
{
Serial.println("Obstacle Ahead!!!");
return 1;
}
return 0;
}
int obstacleOnLeft()
{
angle.write(LEFT);
delay(SERVOWAIT);
int obstacleDistance = detect.ping_cm();
Serial.println(obstacleDistance);//Debugging
while(obstacleDistance == 0)
{
pinMode(ECHO,OUTPUT);
digitalWrite(ECHO,LOW);
delay(TIMEOUT);
pinMode(ECHO,INPUT);
obstacleDistance = detect.ping_cm();
Serial.println(obstacleDistance);//Debugging
}
angle.write(AHEAD);
if(obstacleDistance <= THRESHOLD)
return 1;
return 0;
}
int obstacleOnRight()
{
angle.write(RIGHT);
delay(SERVOWAIT);
int obstacleDistance = detect.ping_cm();
Serial.println(obstacleDistance);//Debugging
while(obstacleDistance == 0)
{
pinMode(ECHO,OUTPUT);
digitalWrite(ECHO,LOW);
delay(TIMEOUT);
pinMode(ECHO,INPUT);
obstacleDistance = detect.ping_cm();
Serial.println(obstacleDistance);//Debugging
}
angle.write(AHEAD);
if(obstacleDistance <= THRESHOLD)
return 1;
return 0;
}
//Checks if the Control Path is Blocked
int isControlPathBlocked()
{
if(controlVal == -1)
return obstacleOnLeft();
return obstacleOnRight();
}
//Turns the Rover in Control Path
void turnRover()
{
if(controlVal == -1)
moveLeft();
else
moveRight();
}
//Pumps Water
void pourWater()
{
//Starting Pump
pump.setSpeed(PUMPSPEED);
delay(PUMPDELAY);
//Stopping it
pump.setSpeed(0);
}