-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paths3.html
More file actions
71 lines (69 loc) · 2.82 KB
/
s3.html
File metadata and controls
71 lines (69 loc) · 2.82 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Line Follower Robot</title>
<link rel="stylesheet" type="text/css" href="s3.css">
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script type="text/javascript">
$(window).on('scroll', function(){
if ($(window).scrollTop()){
$('nav').addClass('black');
}
else
{
$('nav').removeClass('black');
}
})
</script>
</head>
<body>
<nav>
<div class="logo">
<img src="7.jpg">
</div>
<ul>
<li><a href="otd.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="service.html" class="active">Projects</a></li>
<li><a href="contact.html">FeedBack</a></li>
</ul>
</nav>
<section class="sec1">
</section>
<section class="sec2">
<h1>Line Follower Robot</h1>
<h2 style="margin-top: 35px;margin-bottom: 15px;">Why build a Line Follower robot project?</h2>
<p>
A Line Follower Robot, as the name suggests, is an automated guided vehicle, which follow a visual line embedded on the floor or ceiling. Usually, the visual line is the path in which the line follower robot goes and it will be a black line on a white surface but the other way (white line on a black surface) is also possible. Certain advanced Line Follower Robots use invisible magnetic field as their paths.
</p>
<h2 style="margin-top: 35px;margin-bottom: 15px;">What you'll learn in this course</h2>
<p>
Line follower Robot is one of the first robots that beginners and students would get their first robotic experience with. In this project, we have designed a simple Line Follower Robot using Arduino and some other components.
</p>
<h3 style="margin-top: 35px;margin-bottom: 15px;">Things You will need for this Project.</h3>
<p><br>
1Arduino UNO (or Arduino Nano) <br>
2.L293D Motor Driver IC <br>
3.Geared Motors x 2 <br>
4.Robot Chassis <br>
5.IR Sensor Module x 2 <br>
6.Black Tape (Electrical Insulation Tape)<br>
7.Connecting Wires <br>
8.Power supply <br>
9.Battery Connector<br>
10.Battery Holder<br>
</p>
<h3 style="margin-top: 35px;margin-bottom: 15px;">Circuit :-</h3>
<p><img src="s3.jpg" ></p>
</section>
<section class="sec3" align="center">
<h1 style="text-align: center;font-size: 3em;">CODE</h1>
<iframe src="s3_code.html" width="1060" height="560"></iframe>
</section>
<section class="sec3" align="center">
<h1 style="text-align: center;font-size: 3em;">VIDEO FOR REFERENCE</h1>
<iframe width="1060" height="500" src="https://www.youtube.com/embed/QYa02BYWD14" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen ></iframe>
</section>
</body>
</html>