-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaginaweb.html
120 lines (88 loc) · 3.16 KB
/
paginaweb.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
<!DOCTYPE html>
<html>
<body>
<div id="Input de dados">
<h1>Monitor de capacidade</h1><BR><BR>
<h3>Tamanho da sala em m<sup>2</sup>: </h3>
<input type="text" placeholder="Exemplo: 15" id="tam">
<button type="button" onclick="SendValue('tam', 'TamSala')">Submeter</button><BR>
<h3>Pessoas por m<sup>2</sup>: </h3>
<input type="text" placeholder="Exemplo: 0.3" id="pm2_max">
<button type="button" onclick="SendValue('pm2_max', 'np');">Submeter</button><BR>
</div>
<div id="Tabela auxiliar">
Muito afastado: <0.05 m<sup>2</sup> <BR>
Afastado: (0.05 - 0.6 )m<sup>2</sup> <BR>
Próximo: (0.6 - 1) m<sup>2</sup> <BR>
Muito próximo: >1 m<sup>2</sup> <BR><BR><BR><BR>
</div>
<div id="incrementar n de pessoas">
<button onclick="buttonClick('sum')">Entra uma pessoa</button>
<button onclick="buttonClick('sub')">Sai uma pessoa</button><br>
</div>
<div id="Output de dados de entrada">
Lotação (atual):<output type="text" id="inc" value="0">0</output>
(<output type="text" id="perc" value="0">0</output>%)<br>
Tamanho da sala:<span id="tam_out">0</span> m<sup>2</sup> <br>
Pessoas por metro quadrado (max): <span id="pm2_max_out">0</span> m<sup>2</sup> <br>
Lotação (max): <output type="text" id="maxp" value="0">0</output> pessoas<br>
</div>
<script>
setInterval(refresh(), 2000);
</script>
<Script>
var n = 0;
var per = 0;
function buttonClick(tipo)
{
if(tipo == "sum")
{
var max = Number(document.getElementById('tam').value) * Number(document.getElementById('pm2_max').value);
document.getElementById('inc').value = ++n;
document.getElementById('perc').value = (n/max)*100;
}
if(tipo == "sub" && n > 0)
{
var max = Number(document.getElementById('tam').value) * Number(document.getElementById('pm2_max').value);
document.getElementById('inc').value = --n;
document.getElementById('perc').value = (n/max)*100;
}
}
</Script>
<br><br><a href="https://sigarra.up.pt/feup">sigarra.up.pt/feup</a>
</body>
</html>
<script>
function getValue(id)
{
var x = document.getElementById(id).value;
document.getElementById(id).innerHTML = x;
return x;
}
tam = getValue("tam");
pm2 = getValue("pm2_max");
function LoadData(cFunction, file)
{
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function()
{
if (this.readyState == 4 && this.status == 200)
cFunction(this);
}
xhttp.open("GET", file, true);
xhttp.send();
}
function SendValue(id, query)
{
document.getElementById(id + "_out").innerHTML = getValue(id);
console.log(document.getElementById('tam_out').value);
console.log(document.getElementById('pm2_max_out').value);
document.getElementById('maxp').value = Number(document.getElementById('tam').value) * Number(document.getElementById('pm2_max').value);
var filename = id +"?" + query + "=" + getValue(id);
LoadData(document.getElementById(id).innerHTML = this.responseText, filename); //envia dados para o ESP
}
function refresh()
{
LoadData(numb = xhttp.responseText, "numb"); //recebe dados do ESP
}
</script>