Newer
Older
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<head>
<title>AIS NFC READERS HTML EXAMPLE </title>
<meta charset = "UTF-8">
<style>
#tbl-td {
border-style:none;
}
table,td {
border:1px solid black;
border-collapse:collapse;
}
th {
background-color:#80c1ff;
}
#tr01 {
background-color:#d6d6c2
border:1pc solid black;
font-familly:verdana,arial;
font-weight:bold;
}
.info_font {
font-weight:bold;
font-style:italic;
font-size:small;
color:#ffcc66;
}
</style>
</head>
<body>
<form method='post' action="http://localhost:8080/" autocomplete="on">
<table style="width:70%">
<th colspan="6">AIS NFC READERS HTML EXAMPLE  <a href= " http://www.d-logic.net/nfc-rfid-reader-sdk/"> http://www.d-logic.net/nfc-rfid-reader-sdk/</th>
<tr>
<td>q</td>
<td>List devices</td>
<td>o</td>
<td>Open devices</td>
<td>c</td>
<td>Close device</td>
</tr>
<tr>
<td>d</td>
<td>Get devices count</td>
<td>t</td>
<td>Get Time</td>
<td>T</td>
<td>Set Time</td>
</tr>
<tr>
<td>E</td>
<td>Real Time Events <input type="text" name="rte" size="3" value="10"/></td>
<td>P</td>
<td>Set application password <input type="text" name="default_app_pass" size="5" width="4"/></td>
<td>p</td>
<td>Change device password <input type="text" name="new_pass" size="5"/></td>
</tr>
<tr>
<td>l</td>
<td>Get log</td>
<td>n</td>
<td>Get log by Index : S<input type="text" name="start_index" size="3"/>
E<input type="text" name="end_index" size="3"/>
</td>
<td>N</td>
<td>Get log by Time: S<input type="text" name="start_time" size="15"/>
E<input type="text" name="end_time" size="15"/>
</td>
</tr>
<tr>
<td>u</td>
<td>Get unread log  <select name="unread_log">
<option value="1">Count</value>
<option value="2">Get</value>
<option value="3">Ack</value>
</select>
</td>
<td>w</td>
<td>White-list Read</td>
<td>W</td>
<td>White-list Write <input type="text" name="white_list_write" size="15"/></td></td>
</tr>
<tr>
<td>b</td>
<td>Black-list Read</td>
<td>B</td>
<td>Black-list Write <input type="text" name="black_list_write" size="15"/></td>
<td>L</td>
<td><input type="radio" name='lights' value='red_master' style="cursor:pointer;" checked="checked">Red Master
<input type="radio" name='lights' value='green_master' style="cursor:pointer;">Green Master
<input type="radio" name='lights' value='red_slave' style="cursor:pointer;" >Red Slave
<input type="radio" name='lights' value='green_slave' style="cursor:pointer;">Green Slave
</td>
</tr>
<tr>
<td>g</td>
<td>Get IO state</td>
<td>G</td>
<td>Open gate/lock</td>
<td>y</td>
<td>Relay toggle state</td>
</tr>
<tr>
<td>v</td>
<td>Get Library version</td>
<td>f</td>
<td>Get Firmware version</td>
<td>i</td>
<td>Devices Information</td>
</tr>
<tr>
<td rowspan=3>Q</td>
<td rowspan=3>Edit device list for checking </td>
<td colspan=4" style="text-align:center";>  <input type = "radio" name="edit_list" value=1 style="cursor:pointer;" checked="checked">Known device types
  <input type = "radio" name="edit_list" value=2 style="cursor:pointer;">Actual list
  <input type = "radio" name="edit_list" value=3 style="cursor:pointer;" >Clear list
</td>
</tr>
<td colspan=2>
  <input type = "radio" name="edit_list" value=4 style="cursor:pointer;"/>Add device for check
</td>
<td rowspan=2 colspan=2 style="text-align:center";>
    Enter device type:<input type="text" name="device_type" size="5"/>
    Enter device ID:<input type="text" name="device_id" size="5"/>
</td>
<tr>
<td colspan=2>
  <input type = "radio" name="edit_list" value=5 style="cursor:pointer;"/>Erase device from list
</td>
</tr>
</table>
<br/>
Enter device:<input type="text" maxlength="2" name="device" size="3" value="1"/>
<input type="text" width="1px" name="get_function" size="3"/>
<input type="submit" value="GET FUNCTION "/>
</form>
</body>
</html>