Skip to content

Commit

Permalink
Merge pull request #3 from virtual-labs/main
Browse files Browse the repository at this point in the history
update_changes
  • Loading branch information
Amarjeetschauhan authored Nov 16, 2023
2 parents 827d663 + f5ed3b7 commit e7cb22c
Show file tree
Hide file tree
Showing 5 changed files with 119 additions and 5 deletions.
2 changes: 1 addition & 1 deletion experiment/aim.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
### Aim of the experiment
To simulate interfacing of multiple motors (DC Motor, Servo Motor, and Stepper Motor) with Arduino.
2 changes: 1 addition & 1 deletion experiment/experiment-name.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
## Experiment name
To simulate interfacing of multiple motors (DC Motor, Servo Motor and Stepper Motor) with Arduino.
7 changes: 6 additions & 1 deletion experiment/procedure.md
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
### Procedure
Procedure for the experiment is as follows:

1. Select the experiment you want to perform.
2. Analyze the interfacing of different components.
3. Analyze the code for Arduino Compiler.
4. Click on the component itself to start the simulation.
107 changes: 106 additions & 1 deletion experiment/references.md
Original file line number Diff line number Diff line change
@@ -1 +1,106 @@
### Link your references in here
<!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">
<title>Virtual IoT Lab DEI</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>
<div class="navigation-bar">
<a href="../../index.html">Home</a>
</div>
<section class="csection" id="csec">
<nav class="side-nav" id="navbar">
<div class="nav-element">
<a href="index.html" >Aim</a>
</div>
<div class="nav-element">
<a href="theory.html" >Theory</a>
</div>
<div class="nav-element">
<a href="objective.html" >Objective</a>
</div>
<div class="nav-element">
<a href="pretest.html" >Pretest</a>
</div>
<div class="nav-element">
<a href="procedure.html" >Procedure</a>
</div>
<div class="nav-element">
<a href="./expSelector.html">Simulation</a>
</div>
<!-- <div class="nav-element">
<a href="posttest.html" >Posttest</a>
</div> -->
<div class="nav-element">
<a href="references.html" ><span class="cp">References</span></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>Reference</h1>
</div>
<div class="des" id="des">
<p>
Follow these articles for reference :
<ol>
<li><a href="https://binaryupdates.com/led-and-switch-with-arduino-uno/">for interfacing of Pushbutton with Arduino</a></li>
<li><a href="https://www.javatpoint.com/arduino-potentiometer">for interfacing of Potentiometer with Arduino</a></li>
<li><a href="https://create.arduino.cc/projecthub/ejshea/interface-a-photoresistor-ffb1b2">for interfacing Photoresistor with Arduino</a></li>
<li><a href="https://www.instructables.com/Slide-Switch-With-Arduino-Uno-R3/">for interfacing Slider switch with Arduino</a></li>
</ol>

</p>
</div>
</main></section>
</div>
<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>
6 changes: 5 additions & 1 deletion experiment/theory.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
### Link your theory in here
Theory :

Arduino senses the environment by receiving inputs from add-on devices such as sensors, and can control the world around it by adjusting lights, motors, and other actuators. In this class you will learn how and when to use the different types of sensors and how to connect them to the Arduino.

We all know switch is an input device and used; to make or break an electrical connection. Now let’s learn Interfacing of Switch and Arduino, Here we will use switch to take input signal to the microcontroller so that we will be able to interface more input devices to the microcontroller, like sensors output as input to microcontroller.

0 comments on commit e7cb22c

Please sign in to comment.