-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (25 loc) · 950 Bytes
/
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
<!DOCTYPE html>
<html lang='pt-br'>
<head>
<meta charset='UTF-8'>
<title>Taveira's House</title>
<!--<link rel='stylesheet' type='text/css' href='https://cdn.rawgit.com/denistaveira/ArduinoVentilador/25807fa5/styles.css'>-->
<link rel='stylesheet' type='text/css' href='styles.css'>
</head>
<body>
<H1 align='center'>Taveira's House</H1>
<div id='botao_lamp'></div>
<div id='estado_lamp' style='visibility: hidden;'>1</div>
<div id='botao_geral'></div>
<div id='estado_geral' style='visibility: hidden;'>1</div>
<div id='botao_vent'></div>
<div id='estado_vent' style='visibility: hidden;'>1</div>
<div id='botao_exaust'></div>
<div id='estado_exaust' style='visibility: hidden;'>1</div>
<h2 align='center'>Potência Ventilador</h2>
<div class='slidecontainer'>
<input type='range' min='0' max='255' value='0' class='slider' id='myRange' onchange='enviar()'>
</div>
<script src='controle.js' charset='utf-8'></script>
</body>
</html>