-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmb.htm
More file actions
52 lines (46 loc) · 1.55 KB
/
Copy pathmb.htm
File metadata and controls
52 lines (46 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<title>LucidIoT Modbus/TCP Server</title>
</head>
<body>
<div class="container-box">
<div class="box-full">
<h1>Modbus/TCP Server</h1>
</div>
<div class="box-1">
<h2>Connection</h2>
<p><label for="mbPort">Port</label>
<input id="mbPort" type="number" maxlength="15" size="15" min=1 step=1 max=65535>
</p>
<p><label for="mbEn">Enable Modbus/TCP</label>
<input id="mbEn" type="checkbox">
</p>
<p><label for="mbIPv4">Enable IPv4</label>
<input id="mbIPv4" type="checkbox">
</p>
<p><label for="mbIPv6">Enable IPv6</label>
<input id="mbIPv6" type="checkbox">
</p>
</div>
<div class="box-1">
<h2>State</h2>
<table>
<tr>
<td>Service State</td>
<td><p id="mbStSvc"></td>
</tr>
<tr>
<td>Module State</td>
<td><p id="mbStMod"></td>
</tr>
<tr>
<td>Reset</td>
<td><p id="mbStRst"></td>
</tr>
</table>
</div>
</div>
<button class="button" id="mbBtCfg">Save</button>
</body>
</html>