forked from MRsagi/cockpit-temperature-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemperature12core.html
56 lines (49 loc) · 2.19 KB
/
temperature12core.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
<!DOCTYPE HTML>
<html>
<head>
<title>Temperature</title>
<meta charset="utf-8">
<link href="../base1/cockpit.css" type="text/css" rel="stylesheet">
<script src="../base1/jquery.js"></script>
<script src="../base1/cockpit.js"></script>
<link href="smoothie.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="smoothie.js"></script>
<script type="text/javascript" src="cpus2x6.js"></script>
<style>
body {
background-color: #4f5255
}
tr {
font-size: 16pt
}
</style>
</head>
<body onresize="resize_canvas()">
<div align=center>
<table id=table style="width:100%;font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif">
<tr>
<th style="font-size:24pt; color:#ffffff; text-align:center">Temperatures [°C]</th>
</tr>
<tr>
<td style="white-space:nowrap; text-align:right;">
CPU 0,0: <div id="cpu0_0_temp" style="display:inline-block; color:#ff0000;">?</div> |
CPU 0,1: <div id="cpu0_1_temp" style="display:inline-block; color:#00ffff;">?</div> |
CPU 0,2: <div id="cpu0_2_temp" style="display:inline-block; color:#ffff00;">?</div> |
CPU 0,3: <div id="cpu0_8_temp" style="display:inline-block; color:#ff9900;">?</div> |
CPU 0,4: <div id="cpu0_9_temp" style="display:inline-block; color:#00ff00;">?</div> |
CPU 0,5: <div id="cpu0_10_temp" style="display:inline-block; color:#f000f0;">?</div> |
CPU 1,0: <div id="cpu1_0_temp" style="display:inline-block; color:#ff0000;">?</div> |
CPU 1,1: <div id="cpu1_1_temp" style="display:inline-block; color:#00ffff;">?</div> |
CPU 1,2: <div id="cpu1_2_temp" style="display:inline-block; color:#ffff00;">?</div> |
CPU 1,3: <div id="cpu1_8_temp" style="display:inline-block; color:#ff9900;">?</div> |
CPU 1,4: <div id="cpu1_9_temp" style="display:inline-block; color:#00ff00;">?</div> |
CPU 1,5: <div id="cpu1_10_temp" style="display:inline-block; color:#f000f0;">?</div>
</td>
</tr>
<tr>
<td style="text-align:center;width:100%"><canvas id="temps" height="300"></canvas></td>
</tr>
</table>
</div>
</body>
</html>