-
Notifications
You must be signed in to change notification settings - Fork 2
/
objective.html
103 lines (99 loc) · 3.35 KB
/
objective.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="src/css/style.css" />
<link rel="stylesheet" href="./assets/css/bootstrap.min.css" />
<title>Virtual Labs Dei-Linear Control Systems</title>
<link
rel="icon"
href="https://www.vlab.co.in/images/logo.jpg"
type="image/x-icon"
/>
</head>
<body>
<header id="header">
<button class="menu-btn" id="head-btn" onclick="dispmenu()">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</button>
<div class="left-head-main">
<div class="left-head-logo">
<img src="https://www.vlab.co.in/images/logo.jpg" />
</div>
</div>
</header>
<section class="csection" id="csec">
<nav class="side-nav" id="navbar">
<div class="nav-element">
<a href="index.html ">Introduction</a>
</div>
<div class="nav-element">
<a href="objective.html"><span class="cp">Objective</span></a>
</div>
<div class="nav-element">
<a href="Experiments/index.html">List of Experiments</a>
</div>
<div class="nav-element">
<a href="target_audience.html">Target Audience</a>
</div>
<div class="nav-element">
<a href="course_alignment.html">Course Alignment</a>
</div>
<div class="nav-element">
<a href="feedback.html">Feedback</a>
</div>
</nav>
<main class="main-section" id="main-sec">
<div class="heading">
<h1>IoT Virtual Laboratory</h1>
</div>
<div class="des" id="des">
<p>
This lab has been setup to fulfil the following objectives : <br />
1. To make students understand and appreciate the applications of
IoT, AI, and robotics. <br />
2. To inculcate in students the practical understanding of Embedded
and Cloud Computing Principles by letting them through
simulation-based experiments. <br />
3. To generate simulation programs so that everyone can experience
the outcomes of various parameter changes on the virtual
experiments. <br />
4. To develop an understanding of embedded systems and how to
establish communication between two devices (Microcontroller Unit).
</p>
</div>
</main>
</section>
<footer>
<div class="footer">
<div class="foot1">
<div class="fheading">
<h4>Suggested :</h4>
</div>
<div class="fdes">
<a href="https://www.dei.ac.in/dei/"
>Dayalbagh Educational Institute</a
>
<a href="https://thenameispriyam.github.io/iot-club/"
>IoT Initiative</a
>
</div>
</div>
<div class="foot2">
<div class="fheading">
<h4>Contact Us :</h4>
</div>
<div class="fdes">
<p>Phone: General Information</p>
<p>0562-2801545, 0562-2801226</p>
<p>Email: [email protected]</p>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="src/js/main.js"></script>
</body>
</html>