-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
164 lines (140 loc) · 9.75 KB
/
index.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css"></link>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.1/chart.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gauge.js/1.2.1/gauge.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script src="./script.js"></script>
<title>Solar Data Monitoring</title>
</head>
<body>
<!-- navbar -->
<header class="text-gray-600 body-font">
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
<a class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0">
<img src="./icon.jpg" alt="#" id="icon">
<span class="ml-3 text-xl">Solar Data Monitoring</span>
</a>
<nav class="md:ml-auto flex flex-wrap items-center text-base justify-center">
<a href="#info"class="mr-5 hover:text-blue-500">Project</a>
<a href="#data" class="mr-5 hover:text-blue-500">Data</a>
<a href="#about" class="mr-5 hover:text-blue-500">About</a>
</nav>
<input id="dt" type="date" class="mr-5 bg-green-100 border-0 py-1 px-3 focus:outline-none hover:bg-blue-200 rounded text-base mt-4 md:mt-0"></input>
<a id="down" onclick="downl()" href = "https://api.thingspeak.com/channels/1727245/feeds.csv?results=8000" class="mr-5 bg-green-100 border-0 py-1 px-3 focus:outline-none hover:bg-blue-200 rounded text-base mt-4 md:mt-0">Download Data</a>
</div>
</header>
<section id="info" class="text-gray-600 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-col text-center w-full mb-20">
<h2 class="text-xs text-yellow-500 tracking-widest font-medium title-font mb-1">Solar Data Monitor</h2>
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-4 text-lime-900">Rajabazar Science College</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">I am currently working on a project in which I have to collect voltage ,current and power data from solar panel and henceworth design a warning system and display the live data on a website. The set-up consists of: </p>
</div>
<div class="flex flex-wrap">
<div class="xl:w-1/4 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200 border-opacity-60">
<h2 class="text-lg sm:text-xl text-indigo-500 font-medium title-font mb-2">ESP8266NodeMCU</h2>
<p class="leading-relaxed text-base mb-4 text-white">NodeMCU is an open-source Lua based firmware and development board specially targeted for IoT based Applications. It includes firmware that runs on the ESP8266 Wi-Fi SoC from Espressif Systems, and hardware which is based on the ESP-12 module.</p>
</div>
<div class="xl:w-1/4 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200 border-opacity-60">
<h2 class="text-lg sm:text-xl text-indigo-500 font-medium title-font mb-2">Sensors</h2>
<p class="leading-relaxed text-base mb-4 text-white">The sensors used are Voltage sensor and DHT11 Sensor, which is a Temperature and humidity sensor</p>
</div>
<div class="xl:w-1/4 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200 border-opacity-60">
<h2 class="text-lg sm:text-xl text-indigo-500 font-medium title-font mb-2">Buzzer & LEDs</h2>
<p class="leading-relaxed text-base text-white mb-4">A buzzer is a small yet efficient component to add sound features to our project/system. LED, in full light-emitting diode is a semiconductor device that emits infrared or visible light when charged with an electric current.</p>
</div>
<div class="xl:w-1/4 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200 border-opacity-60">
<h2 class="text-lg sm:text-xl text-indigo-500 font-medium title-font mb-2">Solar Panel</h2>
<p class="leading-relaxed text-base text-white mb-4">A solar panel is actually a collection of solar (or photovoltaic) cells, which can be used to generate electricity through photovoltaic effect.</p>
</div>
</div>
</div>
</section>
<!-- Charts -->
<section id="data">
<div class="chart-container">
<div class="column">
<div class="tv">
<canvas class="line" id="field--1"></canvas>
<div class="current"><p>Temperature:</p><p class="val current--1">0.0</p></div>
</div>
<div class="tv">
<canvas class="line" id="field--2"></canvas>
<div class="current"><p>Humidity:</p><p class="val current--2">0.0</p></div>
</div>
<div class="tv">
<canvas class="line" id="field--3"></canvas>
<div class="current"><p>Voltage:</p><p class="val current--3">0.0</p></div>
</div>
<div class="tv">
<canvas class="line" id="field--4"></canvas>
<div class="current"><p>Current:</p><p class="val current--4">0.0</p></div>
</div>
<div class="tv">
<canvas class="line" id="field--5"></canvas>
<div class="current"><p>Power:</p><p class="val current--5">0.0</p></div>
</div>
</div>
<div class="column">
<div class="tv">
<canvas class="gauge" id="field--6"></canvas>
<div class="current"><p>Temperature:</p><p class="val current--1">0.0</p></div>
</div>
<div class="tv">
<canvas class="gauge" id="field--7"></canvas>
<div class="current"><p>Humidity:</p><p class="val current--2">0.0</p></div>
</div>
<div class="tv">
<canvas class="gauge" id="field--8"></canvas>
<div class="current"><p>Voltage:</p><p class="val current--3">0.0</p></div>
</div>
<div class="tv">
<canvas class="gauge" id="field--9"></canvas>
<div class="current"><p>Current:</p><p class="val current--4">0.0</p></div>
</div>
<div class="tv">
<canvas class="gauge" id="field--0"></canvas>
<div class="current"><p>Power:</p><p class="val current--5">0.0</p></div>
</div>
</div>
</div>
</section>
<!-- About -->
<section id="about" class="text-gray-600 body-font">
<div class="container mx-auto flex px-5 py-24 md:flex-row flex-col items-center">
<div class="lg:flex-grow md:w-1/2 lg:pr-24 md:pr-16 flex flex-col md:items-start md:text-left mb-16 md:mb-0 items-center text-center">
<h1 class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900" id="name">Abhijeet Basak
<br class="hidden lg:inline-block" id="roll">Class roll no-421
</h1>
<p class="mb-8 leading-relaxed" id="desc">Hey, my name is Abhijeet Basak. I am currently pursuing B.Tech in Electrical Engineering (4th Sem) from Rajabazar Science College. I am currently working on a project named Solar Data Monitoring. Earlier I have worked on a project of creating a personal assistant for my computer.
For any query feel free to mail me at:
<div class="flex justify-center">
<a class="inline-flex text-white bg-green-500 border-0 py-2 px-6 focus:outline-none hover:bg-blue-600 rounded-full text-lg" href="https://www.instagram.com/abhijeetbasak9/">Instagram</a>
</div>
</div>
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6" id = "img-container">
<img class="object-cover object-center rounded rounded-xl border-slate-800" alt="hero" src="./avatar.png">
</div>
</div>
<div class="container mx-auto flex px-5 py-24 md:flex-row flex-col items-center">
<div class="lg:flex-grow md:w-1/2 lg:pr-24 md:pr-16 flex flex-col md:items-start md:text-left mb-16 md:mb-0 items-center text-center">
<h1 class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900" id="name">Dr. Binoy Kumar Karmakar
<br class="hidden lg:inline-block" id="roll">PhD, M.Tech
</h1>
<p class="mb-8 leading-relaxed" id="desc">Dr. Binoy Kumar Karmakar is presently working as Assistant Professor in the Department of Applied Physics, University of Calcutta. He received his PhD and M. Tech. (power system) from Indian Institute of Technology Kharagpur, India. During a brief period following his M. Tech degree and coming back to academia, he worked in a startup, where he was involved in the development of power network simulator for studies on electrical power system.
Dr. Karmakar has published his work in various IEEE journals and conferences. He is also granted a patent on improving the efficiency of a PV system during partial shading. His current area of research is targeted at meeting the challenges in integration of solar energy with Smart Power Grid.
</p>
</div>
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6" id = "img-container">
<img class="object-cover object-center rounded rounded-xl border-slate-800" alt="hero" src="./avatar2.png">
</div>
</div>
</section>
</body>
</html>