forked from gonzaloconcep/ihc2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.html
284 lines (257 loc) · 14.7 KB
/
info.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Themify Icons -->
<link rel="stylesheet" href="css/themify-icons.css">
<!-- Main css -->
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<script type="text/javascript">
function showHideSideBar() {
var x = document.getElementById("sideBar");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src='https://weatherwidget.io/js/widget.min.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','weatherwidget-io-js');
</script>
<style>
div.left{float:left; width:45%;}
div.right{float:left; width:50%; margin-left: 2%}
</style>
</head>
<body>
<!-- Nav Menu -->
<div class="nav-menu" style="background-color: #f2f2f2" >
<button onclick="showHideSideBar()" style="border: none" class="btn btn-outline-light my-3 my-sm-0 ml-lg-3"><span class="ti-menu gradient-fill ti-3x mr-3"></span></button>
<button style="border: none; background-color: #f2f2f2" class="btn my-3 my-sm-0 ml-lg-3"><a href="index.html" class="ti-home gradient-fill ti-3x mr-3"></a></button>
<b id="date" value="getDate" style="color:white"></b>
<button style="float: right; border: none; background-color: #f2f2f2" class="btn my-3 my-sm-0 ml-lg-3"><a class="ti-settings gradient-fill ti-3x mr-3" href="settings.html"></a></button>
<button style="float: right; border: none; background-color: #f2f2f2" class="btn my-3 my-sm-0 ml-lg-3"><a class="ti-info gradient-fill ti-3x mr-3" href="info.html"></a></button>
</div>
<!-- Side Bar -->
<nav id="sideBar" class="navbar bg-light" style="width: 10%; position: absolute; display: none;">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="statistics.html"><span class="ti-stats-up"></span> Statistics</a>
</li>
<li class="nav-item">
<a class="nav-link" href="lights.html"><span class="ti-light-bulb"></span> Lights Control</a>
</li>
<li class="nav-item">
<a class="nav-link" href="climate.html"><i class="fa fa-thermometer-half gradient-fill"></i> Climate Control</a>
</li>
<li class="nav-item">
<a class="nav-link" href="garden.html"><i class="fa fa-leaf gradient-fill"></i> Garden</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cameras.html"><span class="ti-video-camera"></span> Security Cameras</a>
</li>
<li class="nav-item">
<a class="nav-link" href="doors.html"><span class="ti-lock"></span> Doors</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blinds.html"><span class="ti-layout-grid2-alt"></span> Blinds Control</a>
</li>
<li class="nav-item">
<a class="nav-link" href="shoplist.html"><span class="ti-notepad"></span> Shopping List</a>
</li>
<li class="nav-item">
<a class="nav-link" href="settings.html"><span class="ti-settings"></span> Settings</a>
</li>
<li class="nav-item">
<a class="nav-link" href="info.html"><span class="ti-info"></span> Informations</a>
</li>
</ul>
</nav>
<!-- Content -->
<div class="container" style="margin-top: 2%">
<h3 align="center">Informations</h3>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 d-flex align-items-center">
<ul class="list-unstyled ui-steps">
<li class="media">
<div class="circle-icon mr-4">1</div>
<div class="media-body">
<h5>Principal Dashboard</h5>
<div class="left">
<img src="resources/dashboard.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large">This is the main page. It is through her that we can <b>control the whole house</b>. Each item in the grid has a different functionality, directing the user to a specific page.</p>
<p style="font-size: large">Through the navbar, the user can <b>return to the home page</b> through the house icon. In addition, you can <b>access the information page</b> by clicking the info icon, or <b>access the settings page</b> through its icon.</p>
<p></p>
</div>
</div>
</li>
<li class="media my-4">
<div class="circle-icon mr-4">2</div>
<div class="media-body">
<h5>Settings Panel</h5>
<div class="left">
<img src="resources/settingsfirst.png" alt="iphone" class="img-fluid">
<img src="resources/settingsafter.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large">This page is not only for <b>programming certain features automatically</b>, but also for changing certain settings.</p>
<p style="font-size: large">The house alarm is only disabled by entering an unlock code: <b>PIN Code</b>. The PIN Code can be <b>changed by swipe</b> in the "Change PIN Code", and entering the current code and a new code.</p>
<p style="font-size: large">It is possible to <b>program a temperature by default</b>, and even <b>choose the hours to lock or unlock the doors</b> of the house.</p>
<p style="font-size: large">It is still possible to <b>program the irrigation system</b>, by days and indicating start and end times.</p>
<p style="font-size: large">
All programming fields are shown after the <b>"swipe" in the respective section</b> that you want to change / program.</p>
<p></p>
</div>
</div>
</li>
<li class="media">
<div class="circle-icon mr-4">3</div>
<div class="media-body">
<h5>Shopping List</h5>
<div class="left" align="center">
<img src="resources/addItem.png" alt="iphone" class="img-fluid">
<p> </p>
<img src="resources/quantity.png" alt="iphone" class="img-fluid">
<img src="resources/removeItem.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large"><b>To add a product to the shopping list</b>, simply enter the product name in the field, and click the "Add Item" button. </p>
<p style="font-size: large">After the click, the product is added to the list, being <b>possible to change its quantity</b>. The default quantity is always 1 item, and it can be changed in the "Quantity" field by changing the displayed value.</p>
<p style="font-size: large">We can also <b>remove the items added</b> by clicking the X in the "Remove" column. After this action, the previously inserted product is removed from the list.</p>
<p></p>
</div>
</div>
</li>
<li class="media">
<div class="circle-icon mr-4">4</div>
<div class="media-body">
<h5>Alarm</h5>
<div class="left">
<img src="resources/alarm.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large">To <b>activate the house alarm</b>, simply click on the "Turn On / Off" button on the main grid. When the alarm is activated, the panel is locked until the alarm is deactivated.</p>
<p style="font-size: large"><b>Disabling the alarm requires a PIN code</b> that must be dialed on the on-screen keyboard, and then clicking the button to validate the entered PIN. After this action, the dashboard is again unlocked and it is possible to control the whole house again.</p>
<p></p>
</div>
</div>
</li>
<li class="media">
<div class="circle-icon mr-4">5</div>
<div class="media-body">
<h5>Garden Panel</h5>
<div class="left">
<img src="resources/gardenControl.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large">Garden panel controls all the features related to the garden of the house. There are <b>3 sections</b> that represent the three existing functions: lights, watering and doors.</p>
<p style="font-size: large">In the <b>section of the lights we can control the exterior lights</b>, turning off or on all the lights, or even adjusting its intensity and changing its mode. The light mode changes the color of the light.</p>
<p style="font-size: large">In the <b>automatic irrigation section</b>, you can not only turn it on / off, but also program it automatically.</p>
<p style="font-size: large">Finally, the <b>door section allows you to control all doors from the outside</b> of the house by locking or unlocking them.</p>
<p></p>
</div>
</div>
</li>
<li class="media">
<div class="circle-icon mr-4">6</div>
<div class="media-body">
<h5>Lights Control Panel</h5>
<div class="left">
<img src="resources/lightsControl.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large">This panel allows you to <b>control all the lights in the house</b>, and you can <b>turn on/off all the lights</b>, or <b>control one by one</b> through the displayed list.</p>
<p style="font-size: large">It is possible to <b>increase or decrease the light intensity</b>, allowing to adapt to each moment and the desired environment, but also to <b>change its mode</b>. The light mode is characterized by the color of the light (yellow, white or normal).</p>
<p></p>
</div>
</div>
</li>
<li class="media">
<div class="circle-icon mr-4">7</div>
<div class="media-body">
<h5>Climate Control Panel</h5>
<div class="left">
<img src="resources/climateControl.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large"><b>Control of the central heating</b> is done by <b>increasing or decreasing</b> the set temperature.</p>
<p style="font-size: large">It is possible to set a temperature for <b>all the compartments of the house, or only for the desired ones</b> using the list of compartments presented.</p>
<p></p>
</div>
</div>
</li>
<li class="media">
<div class="circle-icon mr-4">8</div>
<div class="media-body">
<h5>Security Cameras Panel</h5>
<div class="left">
<img src="resources/camsControl.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large">This panel is an information panel that only <b>shows the images captured by the home video surveillance system.</b></p>
<p style="font-size: large">Depending on the camera selected in the displayed list, the image is switched to the respective camera.</p>
<p></p>
</div>
</div>
</li>
<li class="media">
<div class="circle-icon mr-4">9</div>
<div class="media-body">
<h5>Blinds</h5>
<div class="left">
<img src="resources/blindsControl.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large">It is possible to <b>control all the shutters</b> of the house, being able to <b>program the hour to which they open or close.</b></p>
<p style="font-size: large">It is also possible to control one by one through the left panel.</p>
<p></p>
</div>
</div>
</li>
<li class="media">
<div class="circle-icon mr-4">10</div>
<div class="media-body">
<h5>Doors Control Panel</h5>
<div class="left">
<img src="resources/doorsControl.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large">This is not only an information panel that <b>shows all doors</b> in the house with their <b>locking / unlocking information.</b></p>
<p style="font-size: large">It is possible to <b>select a door and lock/ unlock it</b> by clicking on the "Lock" or "Unlock" button on the table, or <b>lock/unlock all doors</b> in the house</p>
<p></p>
</div>
</div>
</li>
<li class="media">
<div class="circle-icon mr-4">11</div>
<div class="media-body">
<h5>Statistics Panel</h5>
<div class="left">
<img src="resources/statistics.png" alt="iphone" class="img-fluid">
</div>
<div class="right">
<p style="font-size: large">This page is an informative page about the <b>recorded consumption of water or light.</b></p>
<p style="font-size: large">You can see in <b>detail the daily consumption</b> by hovering the mouse on the chart line on the day you want.</p>
<p></p>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>