-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathio.htm
More file actions
45 lines (38 loc) · 1.39 KB
/
Copy pathio.htm
File metadata and controls
45 lines (38 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<title>IO Slot Configuration</title>
</head>
<body>
<div class="container-box">
<div class="box-full">
<h1>Slot <span id="cfgSlot"></span> Configuration</h1>
<div class="box-12">
<table>
<tr>
<td>Class</td>
<td><p id="cfgCn"></p></td>
</tr>
<tr>
<td>Type</td>
<td><p id="cfgTn"></p></td>
</tr>
</table>
</div>
</div>
<div class="box-full" id="io-di" style="display:none;"> <!-- Digital inputs -->
</div>
<div class="box-full" id="io-do" style="display:none;"> <!-- Digital outputs -->
</div>
<div class="box-full" id="io-ai" style="display:none;"> <!-- Analog inputs -->
</div>
<div class="box-full" id="io-ao" style="display:none;"> <!-- Analog ouptuts -->
</div>
<div class="box-full" id="io-ri" style="display:none;"> <!-- RTD inputs -->
</div>
<div class="box-full">
<button class="button" id="cfgSave">Save</button>
</div>
</div>
</body>
</html>