generated from virtual-labs/ph3-exp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from virtual-labs/main
update_index_name
- Loading branch information
Showing
25 changed files
with
2,566 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>Virtual IoT Lab DEI</title> | ||
<link | ||
rel="icon" | ||
href="https://www.vlab.co.in/images/logo.jpg" | ||
type="image/x-icon" | ||
/> | ||
<link rel="stylesheet" type="text/css" href="./src/css/expSelector.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="exp-changer"> | ||
<div class="exp-changer-heading"> | ||
<p class="p-head">IOT Virtual Lab</p> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<div class="navbar"> | ||
<div class="navbar1"> | ||
<a href="../../index.html">Home</a> | ||
</div> | ||
<div class="navbar2"> | ||
<a href="./index.html">Go Back</a> | ||
</div> | ||
</div> | ||
|
||
<div class="nofled"> | ||
<div class="nofledHead"> | ||
<p class="p-head uppercase">Experiments using multiple motors</p> | ||
</div> | ||
<div class="nofledBoxContainer"> | ||
<a class="leds" href="./simulation_1/ledsim.html" | ||
><p class="p-head">Interfacing DC Motor with Arduino</p></a | ||
> | ||
<a class="leds" href="./simulation_2/singleLed.html" | ||
><p class="p-head">Interfacing Servo Motor with Arduino</p></a | ||
> | ||
<!-- <a class="leds" href="" | ||
><p class="p-head litehead"> | ||
Interfacing Photo Resistor with Arduino | ||
</p></a | ||
> --> | ||
<a class="leds" href="./simulation_4/ledsim.html" | ||
><p class="p-head">Interfacing Stepper Motor with Arduino</p></a | ||
> | ||
</div> | ||
</div> | ||
<script type="text/javascript" src="src/js/main.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>Virtual IoT Lab DEI</title> | ||
<link | ||
rel="icon" | ||
href="https://www.vlab.co.in/images/logo.jpg" | ||
type="image/x-icon" | ||
/> | ||
<link rel="stylesheet" type="text/css" href="src/css/style.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="exp-changer"> | ||
<div class="exp-changer-heading"> | ||
<p class="p-head">IOT Virtual Lab</p> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<div class="navbar"> | ||
<div class="navbar1"> | ||
<a href="../../index.html">Home</a> | ||
</div> | ||
<div class="navbar2"> | ||
<a href="../expSelector.html">Go Back</a> | ||
</div> | ||
</div> | ||
|
||
<div class="nofled"> | ||
<div class="nofledHead"> | ||
<p class="p-head">Interfacing of Arduino with push button using</p> | ||
</div> | ||
<div class="nofledBoxContainer"> | ||
<a class="leds" href="./ledsim.html"><p class="p-head">LED</p></a> | ||
<a class="leds" href="./buzzersim.html"><p class="p-head">Buzzer</p></a> | ||
</div> | ||
</div> | ||
<script type="text/javascript" src="src/js/main.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>Virtual IoT Lab DEI</title> | ||
<link | ||
rel="icon" | ||
href="https://www.vlab.co.in/images/logo.jpg" | ||
type="image/x-icon" | ||
/> | ||
<link rel="stylesheet" type="text/css" href="src/css/style.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="exp-changer"> | ||
<div class="exp-changer-heading"> | ||
<p class="p-head">IOT Virtual Lab</p> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<div class="navbar"> | ||
<div class="navbar1"> | ||
<a href="../../index.html">Home</a> | ||
</div> | ||
<div class="navbar-heading">Simulation Window</div> | ||
<div class="navbar2"> | ||
<a href="../expSelector.html">Go Back</a> | ||
</div> | ||
</div> | ||
|
||
<div class="container"> | ||
<div class="if-vid"> | ||
<p class="p-head">Interfacing of Arduino with DC Motor :</p> | ||
<div class="interfacing"> | ||
<img id="ifimg" src="./src/images/dc_off.png" alt="interfacing" /> | ||
<button id="pushbutton" onclick="changeImage();"></button> | ||
</div> | ||
</div> | ||
<div class="separator"></div> | ||
<div class="code"> | ||
<div class="code-head"><p class="p-head">ARDUINO CODE</p></div> | ||
<div> | ||
<form action="" method="POST"> | ||
<textarea id="arduinoCode" readonly> | ||
void setup() | ||
{ | ||
pinMode(11, OUTPUT); | ||
} | ||
|
||
void loop() | ||
{ | ||
analogWrite(11,20); | ||
} | ||
</textarea> | ||
</form> | ||
</div> | ||
<div class="code-head startStop"> | ||
<h2 id="pushbuttonPower" onclick="changePower();"> | ||
Start Simulation | ||
</h2> | ||
</div> | ||
</div> | ||
</div> | ||
<script type="text/javascript" src="src/js/main.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.