-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (56 loc) · 1.71 KB
/
index.html
File metadata and controls
68 lines (56 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width,height=device-height,user-scalable=no" />
<title>Thermostat</title>
<script src="//code.jquery.com/jquery-2.1.0.min.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" type="text/css" href="handheld.css" media="handheld" />
</head>
<body>
<div class="advanced-features-prompt" title="Check this box to show advanced settings and diagnostics." >
<input type="checkbox" id="show-advanced-features" checked="checked" />
<label for="show-advanced-features">Advanced Settings</label>
</div>
<div class="thermostat-ui">
<div class="temperature-set">
<div class="temperature-set-wrapper">
<button class="temp-dn">-</button>
<span class="temp-readout">??℉</span>
<input type="number" class="ideal-temp" value="" min="40" max="90" step="1" />
<button class="temp-up">+</button>
</div>
</div>
<dfn class="current-temp">
<dt >Current Temperature</dt>
<dd >75</dd>
</dfn>
<dfn class="fan-status">
<dt>Fan</dt>
<dd>?</dd>
</dfn>
<dfn class="comp-status">
<dt>Cool</dt>
<dd>?</dd>
</dfn>
<dfn class="coil-temp advanced">
<dt>Coil Temp</dt>
<dd>?</dd>
</dfn>
<dfn title="If the A/C coil gets below this temperature, the compressor will turn off, to prevent freezing." class="coil-cutoff-temp advanced">
<dt>Min Coil Temp</dt>
<dd>?</dd>
</dfn>
<dfn class="heat-status">
<dt>Heat</dt>
<dd>?</dd>
</dfn>
<dfn class="latency advanced">
<dt>Latency</dt>
<dd>?</dd>
</dfn>
</div>
</body>
</html>