-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 2.05 KB
/
Copy pathindex.html
File metadata and controls
49 lines (49 loc) · 2.05 KB
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
<!DOCTYPE html>
<html>
<head>
<title> Notman Netatmo Dashboard </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style/notman.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.0.2/ui-bootstrap-tpls.min.js"></script>
<script type="text/javascript" src="js/dashboard.js"></script>
</head>
<body ng-app="dashboard">
<!----- BEGIN CONTENT SECTION ----------------------------------------->
<div ng-controller="DashCtrl" class="container-fluid">
<div class="row">
<div class="col-md-3" id="m3">
<h1> 3 </h1>
{{floors[3].Temperature}} C <br>
{{floors[3].CO2}} ppm CO<sub>2</sub> <br>
{{floors[3].Humidity}} % humidity
</div>
<div class="col-md-3" id="m2">
<h1> 2 </h1>
{{floors[2].Temperature}} C <br>
{{floors[2].CO2}} ppm CO<sub>2</sub> <br>
{{floors[2].Humidity}} % humidity <br>
{{floors[2].Noise}} dB noise <br>
{{floors[2].Pressure}} mb pressure
</div>
<div class="col-md-3" id="m1">
<h1> 1 </h1>
{{floors[1].Temperature}} C <br>
{{floors[1].CO2}} ppm CO<sub>2</sub> <br>
{{floors[1].Humidity}} % humidity
</div>
<div class="col-md-3" id="m0">
<h1> 0 </h1>
{{floors[0].Temperature}} C <br>
{{floors[0].CO2}} ppm CO<sub>2</sub> <br>
{{floors[0].Humidity}} % humidity
</div>
</div>
</div>
<!----- END CONTENT SECTION ----------------------------------------->
<footer class="footer">
<a href="https://github.com/maison-notman-house/notman-netatmo-dashboard" target="_blank"> notman-netatmo-dashboard </a>
</footer>
</body>
</html>