-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathelements.html
More file actions
117 lines (104 loc) · 3.47 KB
/
Copy pathelements.html
File metadata and controls
117 lines (104 loc) · 3.47 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
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
<!DOCTYPE HTML>
<!--
Solid State by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Air Module - Central Hub</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Header -->
<header id="header">
<h1><a href="index.html">Central Hub</a></h1>
<nav>
<a href="#menu">Menu</a>
</nav>
</header>
<!-- Menu -->
<nav id="menu">
<div class="inner">
<h2>Menu</h2>
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="generic.html">Generic</a></li>
<li><a href="elements.html">Elements</a></li>
<li><a href="#">Log In</a></li>
<li><a href="#">Sign Up</a></li>
</ul>
<a href="#" class="close">Close</a>
</div>
</nav>
<!-- Wrapper -->
<section id="wrapper">
<header>
<div class="inner">
<h2>Air Module</h2>
</div>
</header>
<!-- Content -->
<div class="wrapper">
<div class="inner">
<section>
<h3 class="major">CO2, Temperature, & Humidity Sensor (SCD30:)</h3>
<p><b>The SCD30 Sensor is a versatile sensor that can measure C02, termperature, and humidity...Embedded with Sensirion SCD30 for C02 observation with Sensirion humidity and temperature sensors, which are on the same sensor module.</b>
<p> </p>
<a href="#" class="image"><img src="images/pinout.jpg" width="400" height="250" alt="" /></a>
<p>Size: 58mm x 38mm x 19mm
</p>Interface: I2C
<p> </p>
<h2 class="major">Sensor Specifications:</h3>
<TABLE>
<TR>
<TD><b>Measurement</b></TD>
<TD><b>Range</b></TD>
<TD><b>Accuracy</b><TD>
</TR>
<TR>
<TD>C02</TD>
<TD>0 – 40’000 ppm</TD>
<TD>± (30 ppm + 3%MV)</TD>
</TR>
<TR>
<TD>Humidity</TD>
<TD>0 %RH – 100 %RH</TD>
<TD>± 3 %RH</TD>
</TR>
<TR>
<TD>Temperature</TD>
<TD>- 40°C – 70°C</TD>
<TD>± (0.4°C + 0.023 × (T [°C] – 25°C))</TD>
</TR>
</TABLE>
<h4>Preformatted</h4>
<pre><code>i = 0;
while (!deck.isInOrder()) {
print 'Iteration ' + i;
deck.shuffle();
i++;
}
print 'It took ' + i + ' iterations to sort the deck.';</code></pre>
</section>
</ul>
<ul class="copyright">
<li>© Untitled Inc. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</section>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>