diff --git a/experiment/simulation/Simulation 1/ledsim.html b/experiment/simulation/Simulation 1/ledsim.html
new file mode 100644
index 0000000..a34ff30
--- /dev/null
+++ b/experiment/simulation/Simulation 1/ledsim.html
@@ -0,0 +1,140 @@
+
+
+
+ - needed to position the dropdown content */
+.dropdown {
+ position: relative;
+ display: inline-block;
+}
+
+/* Dropdown Content (Hidden by Default) */
+.dropdown-content {
+ display: none;
+ position: absolute;
+ background-color: #f1f1f1;
+ min-width: 100px;
+ box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
+ z-index: 1;
+}
+
+/* Links inside the dropdown */
+.dropdown-content a {
+ color: black;
+ padding: 12px 16px;
+ text-decoration: none;
+ display: block;
+}
+
+/* Change color of dropdown links on hover */
+.dropdown-content a:hover {background-color: #ddd;}
+
+/* Show the dropdown menu on hover */
+.dropdown:hover .dropdown-content {display: block;}
+
+/* Change the background color of the dropdown button when the dropdown content is shown */
+.dropdown:hover .dropbtn {background-color: #3e8e41;}
diff --git a/experiment/simulation/Simulation 1/src/images/led/led_dis.png b/experiment/simulation/Simulation 1/src/images/led/led_dis.png
new file mode 100644
index 0000000..030278a
Binary files /dev/null and b/experiment/simulation/Simulation 1/src/images/led/led_dis.png differ
diff --git a/experiment/simulation/Simulation 1/src/images/led/led_off.png b/experiment/simulation/Simulation 1/src/images/led/led_off.png
new file mode 100644
index 0000000..cd7eb18
Binary files /dev/null and b/experiment/simulation/Simulation 1/src/images/led/led_off.png differ
diff --git a/experiment/simulation/Simulation 1/src/images/led/led_on.png b/experiment/simulation/Simulation 1/src/images/led/led_on.png
new file mode 100644
index 0000000..e06676c
Binary files /dev/null and b/experiment/simulation/Simulation 1/src/images/led/led_on.png differ
diff --git a/experiment/simulation/Simulation 1/src/images/led/ms_dis.png b/experiment/simulation/Simulation 1/src/images/led/ms_dis.png
new file mode 100644
index 0000000..e7e23c9
Binary files /dev/null and b/experiment/simulation/Simulation 1/src/images/led/ms_dis.png differ
diff --git a/experiment/simulation/Simulation 1/src/images/led/ms_dis1.png b/experiment/simulation/Simulation 1/src/images/led/ms_dis1.png
new file mode 100644
index 0000000..952dceb
Binary files /dev/null and b/experiment/simulation/Simulation 1/src/images/led/ms_dis1.png differ
diff --git a/experiment/simulation/Simulation 1/src/images/led/ms_off.png b/experiment/simulation/Simulation 1/src/images/led/ms_off.png
new file mode 100644
index 0000000..f3f9f8b
Binary files /dev/null and b/experiment/simulation/Simulation 1/src/images/led/ms_off.png differ
diff --git a/experiment/simulation/Simulation 1/src/js/main.js b/experiment/simulation/Simulation 1/src/js/main.js
new file mode 100644
index 0000000..9c8ff80
--- /dev/null
+++ b/experiment/simulation/Simulation 1/src/js/main.js
@@ -0,0 +1,55 @@
+
+let image_tracker = "dis";
+
+
+function changePower() {
+ let image = document.getElementById("ifimg");
+ if (image_tracker == "dis") {
+ image.src = "./src/images/led/led_off.png";
+ document.getElementById("pushbuttonPower").innerHTML = "Stop Simulation";
+ document.getElementById("pushbuttonPower").style.backgroundColor = "red";
+ image_tracker = "off";
+ } else if (image_tracker == "off") {
+ image.src = "./src/images/led/led_dis.png";
+ document.getElementById("pushbuttonPower").innerHTML = "Start Simulation";
+ document.getElementById("pushbuttonPower").style.backgroundColor ="#009C4E";
+ image_tracker = "dis";
+ }
+}
+
+function changeImage() {
+ let image = document.getElementById("ifimg");
+ if (image_tracker == "off") {
+ image.src = "./src/images/led/led_on.png";
+ image_tracker = "red";
+ } else if (image_tracker == "red" || image_tracker == "green") {
+ image.src = "./src/images/led/led_off.png";
+ image_tracker = "off";
+ }
+}
+
+//function changeLedColor() {
+ // let image = document.getElementById("ifimg");
+ //if (image_tracker == "red") {
+ //image.src = "./src/images/led/led_green.png";
+ //image_tracker = "green";
+ //} else if (image_tracker == "green") {
+ //image.src = "./src/images/led/led_on.png";
+ // image_tracker = "red";
+ //}
+//}
+
+// if (image_tracker == "dis") {
+// document.getElementById("pushbuttonPower").addEventListener("click", () => {
+// if (int !== null) {
+// clearInterval(int);
+// }
+// int = setInterval(displayTimer, 10);
+// });
+// }
+
+// document.getElementById("pushbuttonPower").addEventListener("click", () => {
+// clearInterval(int);
+// [milliseconds, seconds, minutes, hours] = [0, 0, 0, 0];
+// document.getElementById("simTimer").innerHTML = "00 : 00 : 00 : 000 ";
+// });
diff --git a/experiment/simulation/css/README.md b/experiment/simulation/css/README.md
deleted file mode 100644
index 14b4fe3..0000000
--- a/experiment/simulation/css/README.md
+++ /dev/null
@@ -1 +0,0 @@
-### This folder contains all the css files used in the simulation.
\ No newline at end of file
diff --git a/experiment/simulation/css/main.css b/experiment/simulation/css/main.css
deleted file mode 100644
index 20bf42b..0000000
--- a/experiment/simulation/css/main.css
+++ /dev/null
@@ -1 +0,0 @@
-/* You CSS goes in here */
\ No newline at end of file
diff --git a/experiment/simulation/feedback.html b/experiment/simulation/feedback.html
new file mode 100644
index 0000000..5349206
--- /dev/null
+++ b/experiment/simulation/feedback.html
@@ -0,0 +1,119 @@
+
+
+
+
+
+
+
Virtual IoT Lab DEI
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
IoT Virtual Laboratory
+
+
+
+ Dear User,
+ Thanks for using Virtual Labs. Your opinion is valuable to us. To
+ help us improve, we'd like to ask you a few questions about your
+ experience. It will only take 3 minutes and your answers will help
+ us make Virtual Labs better for you and other users.
+
+
+
+ Share Your Experience
+
+
+
+ Thanks for your time !
+ The Virtual Labs Team
+
+
+
+
+
+
+
+
diff --git a/experiment/simulation/images/README.md b/experiment/simulation/images/README.md
deleted file mode 100644
index 9b47fb5..0000000
--- a/experiment/simulation/images/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-### This folder contains all the image files used in the simulation.
-### Create sub-directories, if needed. ex: gifs/
\ No newline at end of file
diff --git a/experiment/simulation/index.html b/experiment/simulation/index.html
index ee9be23..9e80cc6 100644
--- a/experiment/simulation/index.html
+++ b/experiment/simulation/index.html
@@ -1,13 +1,103 @@
-
-
-
-
-
-
+
+
+
+
+
+
Virtual IoT Lab DEI
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Aim
+
+
+
+ Simulation of establishing master slave model using Arduino and I2C Protocols.
+
+
+
+
+
+
+
diff --git a/experiment/simulation/js/README.md b/experiment/simulation/js/README.md
deleted file mode 100644
index b6e0cff..0000000
--- a/experiment/simulation/js/README.md
+++ /dev/null
@@ -1 +0,0 @@
-### This folder contains all the js files used in the simulation.
\ No newline at end of file
diff --git a/experiment/simulation/js/main.js b/experiment/simulation/js/main.js
deleted file mode 100644
index 4dbe1cf..0000000
--- a/experiment/simulation/js/main.js
+++ /dev/null
@@ -1 +0,0 @@
-//Your JavaScript goes in here
diff --git a/experiment/simulation/objective.html b/experiment/simulation/objective.html
new file mode 100644
index 0000000..5391c6a
--- /dev/null
+++ b/experiment/simulation/objective.html
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
Virtual IoT Lab DEI
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Objective
+
+
+
+ To interface:
+
+ Establish I2C Communication
+ Connect two Arduinos in Master-Slave model
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/experiment/simulation/posttest.html b/experiment/simulation/posttest.html
new file mode 100644
index 0000000..e29defc
--- /dev/null
+++ b/experiment/simulation/posttest.html
@@ -0,0 +1,165 @@
+
+
+
+
+
+
+
Virtual IoT Lab DEI
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Posttest
+
+
+
+ What will be the zeroes,poles and gain of : $${ \frac{5s +
+ 4}{3s^2 + 1s - 2} }$$
+
+
+
+ a.) z = 0.8; p = -1,-0.67; k = 1.33
+
+
+
+
+ b.)z = -0.8; p = -1,-0.67; k = 1.33
+
+
+
+
+ c.) z = 0.8; p = -1,-0.67; k = 1.67
+
+
+
+
+ d.) z = -0.8; p = -1,0.67; k = 1.67
+
+
+ What will be the transfer function with:
+ Zeroes = 1 + 2i, 1 - 2i; Poles = 3,2; Gain = 5
+
+
+
+ a.) $${ \frac{5s^2 - 10s + 25}{1s^2 - 5s + 6} }$$
+
+
+
+
+ b.) $${ \frac{1s^2 - 5s + 6}{5s^2 - 10s + 25}}$$
+
+
+
+
+ c.) $${ \frac{1s^2 + 5s + 6}{5s^2 - 10s + 25}}$$
+
+
+
+
+ d.) $${ \frac{5s^2 + 10s + 25}{1s^2 + 5s + 6}}$$
+
+
Submit
+
+
+
+
+
+
+
+
+
diff --git a/experiment/simulation/pretest.html b/experiment/simulation/pretest.html
new file mode 100644
index 0000000..1737c50
--- /dev/null
+++ b/experiment/simulation/pretest.html
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
Virtual IoT Lab DEI
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Pretest
+
+
+
+ How many types of Arduino do we have?
+
+
+
a.) 4
+
+
+
b.) 8
+
+
+
c.) 12
+
+
+
d.) 16
+
+ What language is a typical Arduino code based on?
+
+
+
a.) Assembly Code
+
+
+
b.) Python
+
+
+
c.) Java
+
+
+
d.) C/C++
+
Submit
+
+
+
+
+
+
+
+
+
diff --git a/experiment/simulation/procedure.html b/experiment/simulation/procedure.html
new file mode 100644
index 0000000..f0c172b
--- /dev/null
+++ b/experiment/simulation/procedure.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+
+
Virtual IoT Lab DEI
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Procedure
+
+
+
Procedure for the experiment is as follows:
+
+ Select the experiment you want to perform.
+ Analyze the interfacing of different components.
+ Analyze the code for Arduino Compiler.
+ Click on the component itself to start the simulation.
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/experiment/simulation/references.html b/experiment/simulation/references.html
new file mode 100644
index 0000000..58adfe7
--- /dev/null
+++ b/experiment/simulation/references.html
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
Virtual IoT Lab DEI
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Reference
+
+
+
+
+