-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObstacle Avoiding Robot.html
108 lines (80 loc) · 3.17 KB
/
Obstacle Avoiding Robot.html
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
<!DOCTYPE html>
<html>
<head>
<title>Obstacle Avoiding Robot</title>
<link rel="shortcut icon" type="image/x-icon" href=".\images\website_Logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1" />
<link href="https://fonts.googleapis.com/css2?family=Russo+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="default.css">
<style type="text/css">
.img-container{
max-width: 600px;
}
img{
width: 100%
}
</style>
</head>
<body>
<div class="nav-wrapper">
<!-- Link around dots-wrapper added after tutorial video -->
<a href="index.html">
<div class="dots-wrapper">
<div id="dot-1" class="browser-dot"></div>
<div id="dot-2" class="browser-dot"></div>
<div id="dot-3" class="browser-dot"></div>
</div>
</a>
<ul id="navigation">
<li><a href="index.html#contact">Back</a></li>
</ul>
</div>
<div class="main-container">
<br>
<div class="img-container">
<img src=".\images\OAR(1).gif">
</div>
<h3>Obstacle Avoiding Robot</h3>
<h4>Situation</h4>
<p>
As I delved into Arduino's realm, I unearthed the seamless integration between the development board and its dedicated shield. A YouTube tutorial featuring an "Obstacle Avoiding Robot" project caught my eye and kindled a desire to create one for both my collection and experiential growth.</p>
<h4>Task</h4>
<p>First, I figured out the three main Problem for making of this Project</p>
<ul>
<p><li><b>1.Sensor Calibration:</b> Precise calibration of Arduino shield and Ultrasonic sensor. Ensuring accurate distance measurement for obstacle detection.</li></p>
<p><li><b>2.Alignment Setting:</b> Configuring the robot's alignment to achieve specific turning degrees. Calibrating the motor control to ensure consistent and accurate turns.</li></p>
<p><li><b>3.Solving Battery Issue:</b> Implementing a suitable voltage regulation or power distribution system.</li></p>
</ul>
<br>
<h4>Result</h4>
<p>I successfully created an Obstacle Avoiding Robot that functions impeccably. The most significant challenge during this project was achieving precise calibration, aligning components effectively, and resolving the battery dilemma. This was due to the disparity between Arduino's operational voltage of 5.0v and the 12.0v required by the DC motors.</p>
<br>
<h5>Technologies:</h5>
<ul>
<li>- Microcontroller Programming</li>
<li>- Circuit Design and Assembly</li>
<li>- Problem Solving</li>
<li>- Logic Implementation</li>
<li>- Sensor Integration </li>
</ul>
<div class="img-container">
<h4>Two ways To control DC Motor with Arduino</h4>
<img src=".\images\OAR.2.png">
</div>
<div class="img-container">
<h4>using L298N</h4>
<img src=".\images\thoumbnail_OAR.jpg">
</div>
<div class="img-container">
<h4>using Arduino shield</h4>
<img src=".\images\OAR.3.jpg">
</div>
</div>
<div class="greeting-wrapper">
<h4><ul id="navigation">
<li><a href="contact.html">Contact</a></li>
</ul></h4>
</div>
</body>
</html>