forked from PDXostc/hvac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (125 loc) · 4.33 KB
/
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
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
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<!--
* Copyright (c) 2014, Intel Corporation, Jaguar Land Rover
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
-->
<html id="hvac-app">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>DNA_HVAC</title>
<meta name="viewport" content="width=1080, height=1920, user-scalable=no" />
<link rel="stylesheet" href="./DNA_common/css/style.css"/>
<link rel="stylesheet" href="./css/nouislider.HVAC.css"/>
<link rel="stylesheet" href="./css/HVAC.css"/>
<script type="text/javascript" src="./DNA_common/components/jQuery/jquery-1.8.2.js"></script>
<script type="text/javascript" src="./DNA_common/js/init.js"></script>
<script type="text/javascript">
//includeJs("./DNA_common/js/predefAppModel.js");
//includeJs("./DNA_common/js/installedApps.js");
//includeJs("./DNA_common/js/keyControl.js");
//includeJs("./DNA_common/js/actionCatcher.js");
includeJs("./js/hvacController.js");
includeJs("./js/main.js");
</script>
</head>
<body>
<div id="base">
<div id="topBar"></div>
<div id="app">
<!-- <div id="clockElement"></div> -->
<!-- BEGIN HTML ELEMENTS -->
<div class="flex-item">
<div class="static_parts_bg"></div>
<div id="hazard_btn" class="hazard_btn"></div>
<div class="climate_labels">
<h6 class="label_borders"><strong>L CLIMATE</strong></h6>
<h6 class="label_borders"><strong>R CLIMATE</strong></h6>
</div>
<div id="left_seat_btn" class="left_seat_btn">
<div class="left_heat_seat_off"></div>
<div id="left_seat_btn_stage" class="left_heat_seat_on stage1"></div>
</div>
<div id="right_seat_btn" class="right_seat_btn">
<div class="right_heat_seat_off"></div>
<div id="right_seat_btn_stage" class="right_heat_seat_on stage1"></div>
</div>
<div class="left_num_bg">
<div id="viewport" class="scrollable left">
<ul class="temperature">
<li>LO</li>
<li>16°</li>
<li>17°</li>
<li>18°</li>
<li>19°</li>
<li>20°</li>
<li>21°</li>
<li>22°</li>
<li>23°</li>
<li>24°</li>
<li>25°</li>
<li>26°</li>
<li>27°</li>
<li>28°</li>
<li>HI</li>
<li></li>
</ul>
</div>
</div>
<div class="left_num_cover"></div>
<div class="right_heat_seat"></div>
<div class="right_num_bg">
<div id="viewport" class="scrollable right">
<ul class="temperature">
<li>LO</li>
<li>16°</li>
<li>17°</li>
<li>18°</li>
<li>19°</li>
<li>20°</li>
<li>21°</li>
<li>22°</li>
<li>23°</li>
<li>24°</li>
<li>25°</li>
<li>26°</li>
<li>27°</li>
<li>28°</li>
<li>HI</li>
<li></li>
</ul>
</div>
</div>
<div class="right_num_cover"></div>
<div id="noUiSliderLeft" class="noUiSliderLeft"></div>
<div id="noUiSliderRight" class="noUiSliderRight"></div>
<div class="fanSpeedOn"></div>
<div id ="fanSpeedSlider" class="noUiSliderFan"></div>
<!-- buttons bottom-->
<div id="fan_dir_down_btn" class="fan_dir_down_btn"></div>
<div id="fan_dir_right_btn" class="fan_dir_right_btn"></div>
<div id="fan_dir_up_btn" class="fan_dir_up_btn"></div>
<div id="fan_control_ac" class="fan_control_ac"></div>
<div id="fan_control_auto" class="fan_control_auto"></div>
<div id="fan_control_circ" class="fan_control_circ"></div>
<div id="defrost_max_btn" class="defrost_max_btn"></div>
<div id="defrost_rear_btn" class="defrost_rear_btn"></div>
<div id="defrost_front_btn" class="defrost_front_btn"></div>
</div><!--end of wrapper -->
<!-- END HTML ELEMENTS -->
</div>
<div id="bottomBar"></div>
</div>
</body>
</html>