Wiki source code of 13 HMI Internal Registers
Last modified by Jett on 2025/03/06 11:24
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | = **Introduction** = | ||
2 | |||
3 | HMI provide four types of HMI address for user. You can use them as temporary variables of the program. The use is consistent with the way access to the PLC register. You could also reference through the address, PIStudio provides three types of such memory. | ||
4 | |||
5 | *HSW, HDW, HUW, HAW are word address, HSX, HDX, HUX, HAX are bit address. | ||
6 | |||
7 | * **System data area (HSW): **A special register defined by the system. | ||
8 | * **Data storage area (HDW/HDX): **Users store user data. | ||
9 | * **System data area (HUW): **A special register defined by the system. | ||
10 | * **System Data (HAW)**: System register used for power-off save. | ||
11 | * **Recipe index area (RPW): **System register used for recipe index. | ||
12 | |||
13 | HMI internal registers are divided into bit address and word address, which can be accessed in two ways (take HDW as an example). | ||
14 | |||
15 | * Access as word with the prefix "HDW". | ||
16 | ** HDW0 means the 1st word of system data area. HDW1 means the 2nd word of system data area. | ||
17 | * Access as bit with the prefix "HDX". The number before "." i". The number before Access in bit with the prefix "HD". The number before Access in bit with the prefix "HDX". The number before "." indicates the number of the word. The number after "." indicates the bit number of the word. | ||
18 | ** HDX1020.12 means to access the system data area in bit mode, the specific location is the 13th bit of the 1020 word. | ||
19 | |||
20 | (% class="box infomessage" %) | ||
21 | ((( | ||
22 | **✎Note:** | ||
23 | |||
24 | * Addresses in HDX are the bits from words in HDW, so be careful when using addresses. For example, HDX1020.12 is the 13th bit to access the 1020 word. The value of this bit is the same as that of the word accessed through HDW001020. The 13th bit of this word is actually the same bit as HDX1020.12. | ||
25 | * The address of the bit address HDX is with a decimal point while word addresses are integers. | ||
26 | ))) | ||
27 | |||
28 | = Address ranges table = | ||
29 | |||
30 | (% style="text-align:center" %) | ||
31 | [[image:6.png]] | ||
32 | |||
33 | = **Data storage area (HDW/HDX)** = | ||
34 | |||
35 | It is used to save the temporary data of project. | ||
36 | |||
37 | 1. Access as word, and serial number range is from HDW0 to HDW299999. | ||
38 | 1. Access as bit, and serial number range is from HDX0.0 to HDX299999.15. | ||
39 | |||
40 | = **Power-down save area (HAW/HAX)** = | ||
41 | |||
42 | It is system registers used for power-off save. | ||
43 | |||
44 | 1. Access as word, and serial number range is from HAW0 to HAW199999. | ||
45 | 1. Access as bit, and serial number range is from HAX0.0 to HAX199999.15. | ||
46 | |||
47 | (% class="box infomessage" %) | ||
48 | ((( | ||
49 | **✎Note:** | ||
50 | |||
51 | * HAW/HAX is power-down retention. The register of this type is able to save the data before the power-down. | ||
52 | * To avoid possible device failure, do not immediately power off and reboot when configuring the power-down save addre | ||
53 | ))) | ||
54 | |||
55 | = **Recipe index area (RPW)** = | ||
56 | |||
57 | It is system recipe data power-off save register. The range is from RPW000000 to RPW990450. | ||
58 | |||
59 | (% class="box infomessage" %) | ||
60 | ((( | ||
61 | **✎Note:** | ||
62 | |||
63 | * RPW is power-down retention. The register of this type is able to save the data before the power-down. | ||
64 | * To avoid possible device failure, do not immediately power off and reboot when configuring the power-down save addre | ||
65 | ))) | ||
66 | |||
67 | = **Single user data area (HUW/HUX)** = | ||
68 | |||
69 | It is used for system special registers (reserved by system). | ||
70 | |||
71 | 1. Access as word, and serial number range is from HUW0 to HUW1599. | ||
72 | 1. Access as bit, and serial number range is from HUX0.0 to HUX1599.15. | ||
73 | |||
74 | (% class="box infomessage" %) | ||
75 | ((( | ||
76 | **✎Note:** | ||
77 | |||
78 | * HUW/HUX is a system special register, so please check the system special register list during use. Please use the address specified in the table and do not use the address which is not mentioned in the table. | ||
79 | ))) | ||
80 | |||
81 | (% class="table-bordered" %) | ||
82 | |=**Special register address**|=**Description**|=**Function** | ||
83 | |=HUW0|Screen switch|A single terminal controls the screen switching, and all terminals do not affect each other. | ||
84 | |=HUW110~~HUW119|(% rowspan="26" %)Addresses of the built-in keyboard|The T9 input method stores the selected seria number length | ||
85 | |=HUW120~~HUW129|The T9 input method stores the selected Chinese Pinyin length | ||
86 | |=HUW135|Input method: first input | ||
87 | |=HUW136|Button: T9 Chinese Pinyin page | ||
88 | |=HUW137|Button: T9 Chinese characters page | ||
89 | |=HUW138|Button: symbol | ||
90 | |=HUW139|Button: switch | ||
91 | |=HUW140|Button: Chinese characters 1 | ||
92 | |=HUW142|Button: Chinese characters 2 | ||
93 | |=HUW144|Button: Chinese characters 3 | ||
94 | |=HUW146|Button: Chinese characters 4 | ||
95 | |=HUW148|Button: Chinese characters 5 | ||
96 | |=HUW150|Button: Chinese characters 6 | ||
97 | |=HUW152|Button: Chinese characters 7 | ||
98 | |=HUW154|Button: Chinese characters 8 | ||
99 | |=HUW156|Button: Chinese characters 9 | ||
100 | |=HUW158|Button: Chinese characters 10 | ||
101 | |=HUW160~~HUW169|Button: Chinese Pinyin 1 | ||
102 | |=HUW170~~HUW179|Button: Chinese Pinyin 2 | ||
103 | |=HUW180~~HUW189|Button: Chinese Pinyin 3 | ||
104 | |=HUW190~~HUW199|Button: Chinese Pinyin 4 | ||
105 | |=HUW200~~HUW699|Input method cache length | ||
106 | |=HUW700~~HUW749|Minimum value of the input method | ||
107 | |=HUW750~~HUW799|Maximum value of the input method | ||
108 | |=HUW800|Case switching of the input method | ||
109 | |=HUW801~~HUW900|Input method format cache length | ||
110 | |=HUW1000|(% rowspan="12" %)Addresses of user permission|OK (Sign in) | ||
111 | |=HUW1001|Result of operation | ||
112 | |=HUW1002~~1005|Old password | ||
113 | |=HUW1006~~1009|New password | ||
114 | |=HUW1010~~1013|Confirm password | ||
115 | |=HUW1014~~1029|New user name | ||
116 | |=HUW1030~~1157|States information of user permission | ||
117 | |=HUW1158~~1335|User name (Only or drop-down list object) | ||
118 | |=HUW1336~~1345|User name description or note | ||
119 | |=HUW1347|Hidden function configurations | ||
120 | |=HUW1348|Permission settings | ||
121 | |=HUW1349|Current user name | ||
122 | |=HUW1382|User sign in way|((( | ||
123 | * 0: Select the user name from drop-down list object for signing in | ||
124 | * 1: Enter the user name in Character Input/Display object for signing in (HUW1014) | ||
125 | ))) | ||
126 | |=HUW1400|Time interval from last operation|((( | ||
127 | Shows how long the touch screen has not been clicked, in seconds. 32-bit unsigned integer | ||
128 | |||
129 | **✎Note:** Clicking by different users will only clear the corresponding register of the currently operating terminal, and the registers on other terminals (such as mobile phones, computers) will not be cleared. | ||
130 | ))) | ||
131 | |=HUW1402|Keyboard note|It saves the text information of the keyboard notes when clicking object(HUW1402-HUW1433) | ||
132 | |=HUW1436|Current object level|Indicate current object security level | ||
133 | |||
134 | = **Special data area (HSW/HSX)** = | ||
135 | |||
136 | It is used for system special registers (reserved by system). | ||
137 | |||
138 | 1. Access as word, and serial number range is from HSW0 to HSW49999. (HSW10000 to HSW19999 are the power-off storage areas) | ||
139 | 1. Access as bit, and serial number range is from HSX0.0 to HSX49999.15. | ||
140 | |||
141 | (% class="box infomessage" %) | ||
142 | ((( | ||
143 | **✎Note:** | ||
144 | |||
145 | * HSW / HSX are a system special register, so please check the system special register list during use. Please use the address specified in the table and do not use the address which is not mentioned in the table. | ||
146 | * To avoid possible device failure, do not immediately power off and reboot when configuring the power-down save address. | ||
147 | ))) | ||
148 | |||
149 | (% class="table-bordered" style="width:1024px" %) | ||
150 | |=(% scope="row" style="width: 160px;" %)**Address**|=(% style="width: 282px;" %)**Function**|=(% style="width: 452px;" %)**Description** | ||
151 | |=(% style="width: 160px;" %)HSW0|(% style="width:282px" %)Language switch|(% style="width:452px" %)Multiple language could be set in the project, HMI support maximum 8 languages. (Power-down save supported) | ||
152 | |=(% style="width: 160px;" %)HSW1|(% style="width:282px" %)Beep frequency (Only valid in HMI V1.0 System)|(% style="width:452px" %)Frequency range: 0~~4000 | ||
153 | |=(% style="width: 160px;" %)HSW2|(% style="width:282px" %)Beep volume (Only valid in HMI V1.0 System)|(% style="width:452px" %)Volume range: 0~~80 | ||
154 | |=(% style="width: 160px;" %)HSW3|(% style="width:282px" %)Beep time|(% style="width:452px" %)Unit: ms | ||
155 | |=(% style="width: 160px;" %)HSW4|(% style="width:282px" %)Beep whether enable or not|(% style="width:452px" %)((( | ||
156 | * =0: Enable. | ||
157 | * =1: Disable. | ||
158 | ))) | ||
159 | |=(% style="width: 160px;" %)HSW5|(% style="width:282px" %)((( | ||
160 | Alarm indicator | ||
161 | )))|(% style="width:452px" %)((( | ||
162 | * =0: Currently no alarm or all alarms have been off. | ||
163 | * =1: Currently alarm(s) still keep in on. | ||
164 | ))) | ||
165 | |=(% style="width: 160px;" %)HSW6~~HSW7|(% style="width:282px" %)Number of alarms|(% style="width:452px" %)The number of alarm (it also includes the records of alarm confirmed) | ||
166 | |=(% style="width: 160px;" %)HSW8|(% style="width:282px" %)Number of unconfirmed history alarm|(% style="width:452px" %)The number of unconfirmed history alarm | ||
167 | |=(% style="width: 160px;" %)HSW9|(% style="width:282px" %)Time out prompt|(% style="width:452px" %)((( | ||
168 | * =0: Enable | ||
169 | * =1: Disable | ||
170 | ))) | ||
171 | |=(% style="width: 160px;" %)HSW12|(% style="width:282px" %)Screen swicth|(% style="width:452px" %)((( | ||
172 | * = 0: Only HSW control the screen switch, and the sreens of all users will switch. | ||
173 | * = 1: Only HUW control the screen switch, and all users do not affect each other. | ||
174 | ))) | ||
175 | |=(% style="width: 160px;" %)HSW13|(% style="width:282px" %)Screen switch register|(% style="width:452px" %)Equal to different values, the screen jumps to the corresponding screen number of the screen. | ||
176 | |=(% style="width: 160px;" %)HSW24|(% style="width:282px" %)Reboot HMI|=(% style="width: 452px;" %)1: Reboot | ||
177 | |=(% style="width: 160px;" %)HSW28|(% style="width:282px" %)Local time: year|(% style="width:452px" %)Range: 0~~9999 (system reserved) | ||
178 | |=(% style="width: 160px;" %)HSW29|(% style="width:282px" %)Local time: month|(% style="width:452px" %)Range: 01~~12 (system reserved) | ||
179 | |=(% style="width: 160px;" %)HSW30|(% style="width:282px" %)Local time: day|(% style="width:452px" %)Range: 01~~31 (system reserved) | ||
180 | |=(% style="width: 160px;" %)HSW31|(% style="width:282px" %)Local time: hour|(% style="width:452px" %)Range: 0~~23 (system reserved) | ||
181 | |=(% style="width: 160px;" %)HSW32|(% style="width:282px" %)Local time: minute|(% style="width:452px" %)Range: 0~~59 (system reserved) | ||
182 | |=(% style="width: 160px;" %)HSW33|(% style="width:282px" %)Local time: second|(% style="width:452px" %)Range: 0~~59 (system reserved) | ||
183 | |=(% style="width: 160px;" %)HSW34|(% style="width:282px" %)Local time: week|(% style="width:452px" %)((( | ||
184 | * =0: Sunday. | ||
185 | * =1: Monday. | ||
186 | * =2: Tuesday. | ||
187 | * =3: Wednesday. | ||
188 | * =4: Thursday. | ||
189 | * =5: Friday. | ||
190 | * =6: Saturday. | ||
191 | ))) | ||
192 | |=(% style="width: 160px;" %)HSW39|(% style="width:282px" %)Beep type(Only valid in HMI V2.0 System)|(% style="width:452px" %)Type range: 1-5, Default is 1. | ||
193 | |=(% style="width: 160px;" %)HSW134|(% style="width:282px" %)((( | ||
194 | Whether the Script is read through | ||
195 | |||
196 | |||
197 | )))|(% style="width:452px" %)((( | ||
198 | (% class="box infomessage" %) | ||
199 | ((( | ||
200 | **✎Note:** If want to read-only or write-only, please enable this settings. | ||
201 | ))) | ||
202 | |||
203 | * =0: Read from HMI cache(Default) | ||
204 | * =1: Read from PLC directly | ||
205 | ))) | ||
206 | |=(% style="width: 160px;" %)HSW135|(% style="width:282px" %)Confirm installment password|(% style="width:452px" %)Confirm button for installment password | ||
207 | |=(% style="width: 160px;" %)HSW151|(% style="width:282px" %)Installment due|(% style="width:452px" %)Number of days to installment due | ||
208 | |=(% style="width: 160px;" %)HSW185~~200|(% style="width:282px" %)Installment password|(% style="width:452px" %)Enter installment password | ||
209 | |=(% style="width: 160px;" %)HSW242|(% style="width:282px" %)((( | ||
210 | Prompt result of recipe operation | ||
211 | |||
212 | * Upload: Data is written from address to file | ||
213 | * Download: Data is written from a file to an address | ||
214 | )))|(% style="width:452px" %)((( | ||
215 | * =1: Download recipe, start | ||
216 | * =2: Download recipe, execution error | ||
217 | * =3: Download recipe, files don't exist | ||
218 | * =4: Download recipe, members don't exist | ||
219 | * =5: Download recipe, groups don't exist | ||
220 | * =6: Download recipe, success | ||
221 | * =7: Upload recipe, start | ||
222 | * =8: Upload recipe, execution error | ||
223 | * =9: Upload recipe, files don't exist | ||
224 | * =10: Upload recipe, members don't exist | ||
225 | * =11: Upload recipe, groups don't exist | ||
226 | * =12: Upload recipe, success | ||
227 | * =13: Insert recipe, start | ||
228 | * =14: Insert recipe, execution error | ||
229 | * =15: Insert recipe, files don't exist | ||
230 | * =16: Insert recipe, members don't exist | ||
231 | * =17: Insert recipe, groups don't exist | ||
232 | * =18: Insert recipe, success | ||
233 | * =19: Delete recipe, start | ||
234 | * =20: Delete recipe, execution error | ||
235 | * =21: Delete recipe, files don't exist | ||
236 | * =22: Delete recipe, members don't exist | ||
237 | * =23: Delete recipe, groups don't exist | ||
238 | * =24: Delete recipe, success | ||
239 | * =25: Delete and sort recipe, start | ||
240 | * =26: Delete recipe and sort, execution error | ||
241 | * =27: Delete recipe and sort, files don't exist | ||
242 | * =28: Delete recipe and sort, members don't exist | ||
243 | * =29: Delete recipe and sort, groups don't exist | ||
244 | * =30: Delete recipe and sort, success | ||
245 | * =37: CSV recipe files import successfully | ||
246 | * =38: CSV recipe files import failed. | ||
247 | ))) | ||
248 | |=(% style="width: 160px;" %)HSW243|(% style="width:282px" %)Prompt result of recipe index|(% style="width:452px" %)((( | ||
249 | * =31: Recipe index, start | ||
250 | * =32: Recipe index, execution error | ||
251 | * =33: Recipe index, files don't exist | ||
252 | * =34: Recipe index, members don't exist | ||
253 | * =35: Recipe index, groups don't exist | ||
254 | * =36: Recipe index, success | ||
255 | ))) | ||
256 | |=(% style="width: 160px;" %)HSW521|(% style="width:282px" %)Delete graph and alarm record|(% style="width:452px" %)((( | ||
257 | * =0: No operation | ||
258 | * =1: HSX521.0=1, delete all records. | ||
259 | * =2: HSX521.1=1, delete all trend graph. | ||
260 | * =4: HSX521.2=1, delete all alarms. | ||
261 | * =16: HSX521.4=1, delete history XY plot. | ||
262 | * =32: HSX521.5=1, delete data records in SD card or USB flash disk;(Please make a setting which is saved to USB flash disk or SD card in project setting). | ||
263 | * =64: HSX521.6=1, delete alarms records in SD card or USB flash disk; (Please make a setting which is saved to USB flash disk or SD card in project setting). | ||
264 | ))) | ||
265 | |=(% style="width: 160px;" %)HSW522|(% style="width:282px" %)Copy and paste the alarm/data files in flash to the USB flash disk|(% style="width:452px" %)((( | ||
266 | * =0: No operation | ||
267 | * =1: HSX522.0=1, copy all record | ||
268 | * =2: HSX522.2=1, copy history XY trend graph | ||
269 | * =8: HSX522.3=1, copy alarm record | ||
270 | * =32: HSX522.5=1, copy recipe | ||
271 | ))) | ||
272 | |=(% style="width: 160px;" %)HSW523|(% style="width:282px" %)Copy and paste the alarm/data files in flash to the SD card|(% style="width:452px" %)((( | ||
273 | * =0: No operation | ||
274 | * =1: HSX523.0=1, copy all record | ||
275 | * =4: HSX523.2=1, copy history XY trend graph | ||
276 | * =8: HSX523.3=1, copy alarm record | ||
277 | ))) | ||
278 | |=(% style="width: 160px;" %)HSW524|(% style="width:282px" %)Copy and paste the alarm/data files in SD card to the USB flash disk|(% style="width:452px" %)((( | ||
279 | * =0: no operation | ||
280 | * =4: HSX524.2=1, copy history XY trend graph | ||
281 | * =8: HSX524.3=1, copy alarm record | ||
282 | * =16: HSX524.4=1, copy history alarm record | ||
283 | * =32: HSX524.5=1, copy data record | ||
284 | ))) | ||
285 | |=(% style="width: 160px;" %)HSW525|(% style="width:282px" %)Copy and paste the alarm/data files in USB flash disk to SD card|(% style="width:452px" %)((( | ||
286 | * =0: no operation | ||
287 | * =4: HSX525.2=1, copy history XY trend graph | ||
288 | * =8: HSX525.3=1, copy alarm record | ||
289 | * =16: HSX525.4=1, copy history alarm record | ||
290 | * =32: HSX525.5= 1, copy data record | ||
291 | ))) | ||
292 | |=(% style="width: 160px;" %)HSW526|(% style="width:282px" %)Delete file list|(% style="width:452px" %)((( | ||
293 | * =0: no operation | ||
294 | * =1: HSX526.0=1, delete designated file | ||
295 | * =2: HSX526.1=1, delete all files | ||
296 | ))) | ||
297 | |=(% style="width: 160px;" %)HSW527|(% style="width:282px" %)Eject USB flash disk/SD card|(% style="width:452px" %)((( | ||
298 | * =0: No operation | ||
299 | * =1: Eject USB flash disk | ||
300 | * =2: Eject SD card | ||
301 | ))) | ||
302 | |=(% style="width: 160px;" %)HSW528|(% style="width:282px" %)The state of USB flash disk|(% style="width:452px" %)((( | ||
303 | * =1: USB flash disk is detected | ||
304 | * =2: Ejecting USB flash disk, please waiting… | ||
305 | * =3: USB flash disk ejected | ||
306 | ))) | ||
307 | |=(% style="width: 160px;" %)HSW529|(% style="width:282px" %)The state of SD card|(% style="width:452px" %)((( | ||
308 | * =1: SD card is detected | ||
309 | * =2: Ejecting SD card, please waiting… | ||
310 | * =3: SD card ejected | ||
311 | ))) | ||
312 | |=(% style="width: 160px;" %)HSW550~~849|(% style="width:282px" %)Communication control|(% style="width:452px" %)For communication control and communication lamp (please refer to "[[Communication control>>https://docs.we-con.com.cn/bin/view/PIStudio/13.HMI%20internal%20registers/#HCommunicationcontrol]]" sector for detailed) | ||
313 | |=(% style="width: 160px;" %)HSW850|(% style="width:282px" %)((( | ||
314 | Network state | ||
315 | |||
316 | (4G, WIFI and Ethernet) | ||
317 | )))|(% style="width:452px" %)((( | ||
318 | In HMI V1.0 | ||
319 | |||
320 | * =0: Network is disconnected. | ||
321 | * =1: only LAN connected, and APP can't access HMI. | ||
322 | * =2: WECON Cloud connected , APP and web could access HMI. | ||
323 | |||
324 | In HMI V2.0 | ||
325 | |||
326 | * =0: Network is disconnected. | ||
327 | * =1: Network is connected. | ||
328 | ))) | ||
329 | |=(% style="width: 160px;" %)HSW855|(% style="width:282px" %)Backlight Control|(% style="width:452px" %)((( | ||
330 | * HSX855.0=1: turn on the backlight and reset automatically after being triggered. | ||
331 | * HSX855.1=1: turn off the backlight and reset automatically after being triggered. | ||
332 | ))) | ||
333 | |=(% style="width: 160px;" %)HSW856|(% style="width:282px" %)Whether to close the indirect screen when the current screen is switched to the other screen)|(% style="width:452px" %)((( | ||
334 | * =0: close the sub-screen, including the indirect screen; | ||
335 | * =1: not to close. | ||
336 | ))) | ||
337 | |=(% style="width: 160px;" %)HSW857|(% style="width:282px" %)Permission in remote access (web page, mobile APP, cloud platform, etc.)|(% style="width:452px" %)((( | ||
338 | * =0: users could switch the screen, control the switch and update data in remote access. | ||
339 | * =1: users could only control function switch (only switch the screen), view data and switch state, but could not operate or update them. | ||
340 | * =2: users could neither operate the screen switch, nor switch operation and data modification, only view. (The ig series and 8000/9000 series with -R after system upgrade) | ||
341 | ))) | ||
342 | |=(% style="width: 160px;" %)HSW860~~861|(% style="width:282px" %)Data partition remaining space|(% style="width:452px" %)Display the data partition remaining space, updated every minute, unit(**kB**) | ||
343 | |=(% style="width: 160px;" %)HSW880|(% style="width:282px" %)Enable data partition remaining space|(% style="width:452px" %)((( | ||
344 | ~=1, able to view the data partition remaining space from HSW860~~861. | ||
345 | |||
346 | ~=Other value except 1, disable the viewing function. | ||
347 | ))) | ||
348 | |=(% style="width: 160px;" %)HSW881|(% style="width:282px" %)Storage of Record files|(% style="width:452px" %)((( | ||
349 | It is used for controlling saving alarm/data record files to U disk / SD card. | ||
350 | |||
351 | * = 0: Save to storage. | ||
352 | * = 1: Don't save to storage. | ||
353 | ))) | ||
354 | |=(% style="width: 160px;" %)HSW882|(% style="width:282px" %)Storage device status|(% style="width:452px" %)((( | ||
355 | * HDX882.0=0 USB flash doesn't execute storage or storage finished. | ||
356 | * HDX882.0=1 USB flash is reading data, don't remove USB flash. | ||
357 | * HDX882.1=0 SD card doesn't execute storage or storage finished. | ||
358 | * HDX882.1=1 SD card is reading data, don't remove SD card. | ||
359 | ))) | ||
360 | |=(% style="width: 160px;" %)HSW884|(% style="width:282px" %)Enter the system network configuration interface|(% style="width:452px" %)((( | ||
361 | * = 0: Do not enter the network configuration interface | ||
362 | * = 1: Enter the system network configuration interface. | ||
363 | ** ig series HMI only supports to enter the system interface | ||
364 | |||
365 | ))) | ||
366 | |=(% style="width: 160px;" %)HSW885|(% style="width:282px" %)When the control object hides the address is read failed (communication failure), set the display mode of the object|(% style="width:452px" %)((( | ||
367 | * = 0: displayed by object setting. | ||
368 | * = 1: control address read failure, the address control of all objects is hidden, not displayed. | ||
369 | * = 2: control address read failure, the address control of all objects is displayed, not hidden. | ||
370 | ))) | ||
371 | |=(% style="width: 160px;" %)HSW893|(% style="width:282px" %)((( | ||
372 | User Permission Control Address, same as HUW1000 feature, please refer to chapter "[[User Permission>>http://13.229.109.52:8080/wiki/pistudio/view/Helps/08.Basic%20Function/#HUserPermission]]" | ||
373 | |||
374 | **✎Note: **This address can only take effect when it is operated in the real HMI, and the operation is invalid on Web/App side. | ||
375 | )))|(% style="width:452px" %)((( | ||
376 | * =1: User Log in | ||
377 | * =2: Change User password | ||
378 | * =3: User Log out | ||
379 | * =4: New user | ||
380 | * =5: Delete user | ||
381 | * =6: Add user rights | ||
382 | * =8: Add Hide features | ||
383 | * =9: Delete Profile | ||
384 | * =10: Export Profile | ||
385 | * =11: Import profile | ||
386 | * =12: Export log file | ||
387 | * =13: Delete log file | ||
388 | ))) | ||
389 | |=(% style="width: 160px;" %)HSW900|(% style="width:282px" %)Quick update frequency settings for objects|(% style="width:452px" %)((( | ||
390 | Valid when the object is enabled for "quick update". Default: 5. | ||
391 | |||
392 | Range: 1 (fastest) - 50 (slowest) | ||
393 | ))) | ||
394 | |=(% style="width: 160px;" %)HSW920|(% style="width:282px" %)Static mode Maximum periods|(% style="width:452px" %)Numeric Input/ Display (range: 0-12) | ||
395 | |=(% style="width: 160px;" %)HSW921 ~~ 924|(% style="width:282px" %)Static mode Admin key|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
396 | |=(% style="width: 160px;" %)HSW925 ~~ 928|(% style="width:282px" %)1^^st^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
397 | |=(% style="width: 160px;" %)HSW929 ~~ 933|(% style="width:282px" %)1^^st^^ expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
398 | |=(% style="width: 160px;" %)HSW935 ~~ 938|(% style="width:282px" %)2^^nd^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
399 | |=(% style="width: 160px;" %)HSW939 ~~ 943|(% style="width:282px" %)2^^nd ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
400 | |=(% style="width: 160px;" %)HSW945 ~~ 948|(% style="width:282px" %)3^^rd^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
401 | |=(% style="width: 160px;" %)HSW949 ~~ 953|(% style="width:282px" %)3^^rd ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
402 | |=(% style="width: 160px;" %)HSW955 ~~ 958|(% style="width:282px" %)4^^th^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
403 | |=(% style="width: 160px;" %)HSW959 ~~ 963|(% style="width:282px" %)4^^th ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
404 | |=(% style="width: 160px;" %)HSW965 ~~ 968|(% style="width:282px" %)5^^th^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
405 | |=(% style="width: 160px;" %)HSW969 ~~ 973|(% style="width:282px" %)5^^th ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
406 | |=(% style="width: 160px;" %)HSW975 ~~ 978|(% style="width:282px" %)6^^th^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
407 | |=(% style="width: 160px;" %)HSW979 ~~ 983|(% style="width:282px" %)6^^th ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
408 | |=(% style="width: 160px;" %)HSW985 ~~ 988|(% style="width:282px" %)7^^th^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
409 | |=(% style="width: 160px;" %)HSW989 ~~ 993|(% style="width:282px" %)7^^th ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
410 | |=(% style="width: 160px;" %)HSW995 ~~ 998|(% style="width:282px" %)8^^th^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
411 | |=(% style="width: 160px;" %)HSW999 ~~ 1003|(% style="width:282px" %)8^^th ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
412 | |=(% style="width: 160px;" %)HSW1005 ~~1008|(% style="width:282px" %)9^^th^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
413 | |=(% style="width: 160px;" %)HSW1009 ~~ 1013|(% style="width:282px" %)9^^th ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
414 | |=(% style="width: 160px;" %)HSW1015 ~~1018|(% style="width:282px" %)10^^th^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
415 | |=(% style="width: 160px;" %)HSW1019 ~~ 1023|(% style="width:282px" %)10^^th ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
416 | |=(% style="width: 160px;" %)HSW1025 ~~1028|(% style="width:282px" %)11^^th^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
417 | |=(% style="width: 160px;" %)HSW1029 ~~ 1033|(% style="width:282px" %)11^^th ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
418 | |=(% style="width: 160px;" %)HSW1035 ~~1038|(% style="width:282px" %)12^^th^^ period key (Static mode)|(% style="width:452px" %)Character Input/ Display (length: 8) | ||
419 | |=(% style="width: 160px;" %)HSW1039 ~~ 1043|(% style="width:282px" %)12^^th ^^expiry time (Static mode)|(% style="width:452px" %)Numeric Input/ Display (YYYYMMDDHHMM) | ||
420 | |=(% style="width: 160px;" %)HSW1046|(% style="width:282px" %)Current period (Static mode)|(% style="width:452px" %)Current period (Range 1-13) | ||
421 | |=(% style="width: 160px;" %)HSW1047|(% style="width:282px" %)Save settings (Static mode)|(% style="width:452px" %)((( | ||
422 | * HSX1047.0=1: Save static installment information | ||
423 | * HSX1047.1=1: Write installment information to registers | ||
424 | ))) | ||
425 | |=(% style="width: 160px;" %)HSW1050~~HSW1065|(% style="width:282px" %)The recipe name that can input csv format|(% style="width:452px" %)Input CSV format recipe file name through "Character Input/ Display".(This function should be used in combination with the recipefunction) | ||
426 | |=(% style="width: 160px;" %)HSW1066|(% style="width:282px" %)Configure the type of the CSV file imported|(% style="width:452px" %)((( | ||
427 | The CSV file type imported (This function should be used in combination with the recipe function) | ||
428 | |||
429 | * =0: Import customed CSV file. The data in the file is valid. | ||
430 | * =1: Import ordinary recipe files of regular series HMI. The 1st row of the file is invalid. | ||
431 | * =2: Import special recipe files of regular series HMI. The 1st and 3nd rows and the 1st colume of the file is invalid. | ||
432 | ))) | ||
433 | |=(% style="width: 160px;" %)HSW1067|(% style="width:282px" %)Location where the CSV file is saved|(% style="width:452px" %)((( | ||
434 | Set the path of CSV file (This function should be used in combination with the recipe function) | ||
435 | |||
436 | * =0: In the CsvFile directory of the USB stick | ||
437 | * =1: In the CsvFile directory of the SD card | ||
438 | ))) | ||
439 | |=(% style="width: 160px;" %)HSW1070|(% style="width:282px" %)The time interval (seconds) since the last time the screen was clicked|(% style="width:452px" %)((( | ||
440 | Shows how long the current screen has not been clicked, using a decimal unsigned double word (Numeric Input/ Display). | ||
441 | |||
442 | (% class="box infomessage" %) | ||
443 | ((( | ||
444 | **✎Note: **This register is cleared to zero regardless of which user clicks on the screen. | ||
445 | ))) | ||
446 | ))) | ||
447 | |=(% style="width: 160px;" %)HSW1073|(% style="width:282px" %)Corresponding key value from keyboard|(% style="width:452px" %)Display the key value of the currently pressed key, the key value is shown in Table 1 (not updated when the character input display is being input) | ||
448 | |=(% style="width: 160px;" %)HSW1074|(% style="width:282px" %)Keyboard key status|(% style="width:452px" %)Display the current button status (not updated when the numeric input display is being input)((( | ||
449 | * =0: key release | ||
450 | * =1: key press | ||
451 | * =2: Long press the button | ||
452 | ))) | ||
453 | |=(% style="width: 160px;" %)HSW1075|(% style="width:282px" %)Cursor speed|(% style="width:452px" %)Control the cursor movement speed, the range is 0~100, the default is 20 | ||
454 | |=(% style="width: 160px;" %)HSW1076|(% style="width:282px" %)Cursor x coordinate value|(% style="width:452px" %)Record the x value at the current position of the cursor, range: 0 to screen width -1 | ||
455 | |=(% style="width: 160px;" %)HSW1077|(% style="width:282px" %)Cursor y coordinate value|(% style="width:452px" %)Record the y value at the current position of the cursor, range: 0 to screen height-1 | ||
456 | |=(% style="width: 160px;" %)HSW1078|(% style="width:282px" %)Corresponding ASCII code for keyboard keys|(% style="width:452px" %)Only the ASCII value of letters, numbers, and symbols are displayed, and the ASCII value of the function button is not displayed. | ||
457 | |=(% style="width: 160px;" %)HSW1079|(% style="width:282px" %)Trigger to set the cursor position and set the Enter key mode|(% style="width:452px" %)((( | ||
458 | * HSX1079.0=1: Set the cursor position according to the cursor xy register value; | ||
459 | * HSX1079.1=0: When the numeric/character input display is being input, press Enter to end the input, no value/text part is being input, Enter is a normal click; | ||
460 | * HSX1079.1=1 Regardless of whether the numeric/character component is inputting the Enter key, only normal click is performed, and the keyboard end input is not performed. | ||
461 | ))) | ||
462 | |=(% style="width: 160px;" %)HSW1083|(% style="width:282px" %)Naming method for printing object screenshots|(% style="width:452px" %)((( | ||
463 | Example: The time is 2019-01-04 14:29:10 (523 milliseconds), the screen number is 0, and the object ID is 2. | ||
464 | |||
465 | * =0: Use year, month, day, hour, minute, second, millisecond, screen number, part number to name, such as: 2019010414291052302.bmp. | ||
466 | * =1: Name using year, month, day, hour, minute, and second. | ||
467 | |||
468 | For example: 20190104142910.bmp. | ||
469 | ))) | ||
470 | |=(% style="width: 160px;" %)HSW1086|(% style="width:282px" %)Control address mapping polling cycle, unit: ms|(% style="width:452px" %)((( | ||
471 | Address mapping polling cycle, effective range: 40~~1000ms, default: 300ms. | ||
472 | |||
473 | * When the set value is greater than 1000, the value is 1000. | ||
474 | * When the set value is lower than 40, it changes to the default value 300 | ||
475 | ))) | ||
476 | |=(% style="width: 160px;" %)HSW1087|(% style="width:282px" %)Control write interval in address mapping|(% style="width:452px" %)((( | ||
477 | After reading data to the device for N times, Perform an address mapping write operation. N is the interval value. The effective range: 0~~5, and default is 2. | ||
478 | |||
479 | When N more than 5, it is 5. | ||
480 | |||
481 | 0 is the fastest and 5 is the slowest. | ||
482 | ))) | ||
483 | |=(% style="width: 160px;" %)HSW1088|(% style="width:282px" %)Control the write interval of script|(% style="width:452px" %)((( | ||
484 | After reading data to the device for N times, Perform a script write operation. N is the interval value. The effective range: 0~~5, and default is 2. | ||
485 | |||
486 | When N more than 5, it is 5. | ||
487 | |||
488 | 0 is the fastest and 5 is the slowest. | ||
489 | ))) | ||
490 | |=(% style="width: 160px;" %)HSW1089|(% style="width:282px" %)Control interval of read through|(% style="width:452px" %)((( | ||
491 | After reading data to the device for N times, Perform a read through operation. N is the interval value. The effective range: 0~~5, and default is 2. | ||
492 | |||
493 | When N more than 5, it is 5. | ||
494 | |||
495 | 0 is the fastest and 5 is the slowest. | ||
496 | ))) | ||
497 | |=(% style="width: 160px;" %)HSW1100|(% colspan="1" rowspan="4" style="width:282px" %)Set the Master IP for Multi-link|(% style="width:452px" %)High word 1 for Master IP address of multi-link | ||
498 | |=(% style="width: 160px;" %)HSW1101|(% style="width:452px" %)High word 2 for Master IP address of multi-link | ||
499 | |=(% style="width: 160px;" %)HSW1102|(% style="width:452px" %)High word 3 for Master IP address of multi-link | ||
500 | |=(% style="width: 160px;" %)HSW1103|(% style="width:452px" %)High word 4 for Master IP address of multi-link | ||
501 | |=(% style="width: 160px;" %)HSW1104|(% style="width:282px" %)Control connection to Master or not for Multi-link slave device|(% style="width:452px" %)((( | ||
502 | * =1: Connect to the Master | ||
503 | * =0: Do not connect to Master | ||
504 | ))) | ||
505 | |=(% style="width: 160px;" %)HSW1141|(% style="width:282px" %)Release alarm|(% style="width:452px" %)((( | ||
506 | * =0, Default value | ||
507 | * =1, Release the alarm generated before the last power-down when starting up | ||
508 | ))) | ||
509 | |=(% style="width: 160px;" %)HSW1200|(% colspan="1" rowspan="2" style="width:282px" %)TSAP settings for HMI in the Siemens LOGO! 8 protocol(ig series or HMI V2.0)|(% style="width:452px" %)HMI local TSAP, which corresponds to the remote TSAP of PLC | ||
510 | |=(% style="width: 160px;" %)HSW1201|(% style="width:452px" %)HMI remote TSAP, which corresponds to the local TSAP of PLC | ||
511 | |=(% style="width: 160px;" %)HSW1450|(% style="width:282px" %)Enable objects level password function|(% style="width:452px" %)((( | ||
512 | * =0, Disable | ||
513 | * =1, Enable | ||
514 | ))) | ||
515 | |=(% style="width: 160px;" %)HSW1451|(% style="width:282px" %)Whether the object level passwords are independent of each other|(% style="width:452px" %)((( | ||
516 | * =0, No, high-level passwords can unlock low-level | ||
517 | * = 1, Yes, high-level passwords cannot unlock low-level | ||
518 | ))) | ||
519 | |=(% style="width: 160px;" %)HSW1452|(% style="width:282px" %)Initialization level|(% style="width:452px" %)Initialization level while HMI running | ||
520 | |=(% style="width: 160px;" %)HSW1454~~1457|(% style="width:282px" %)Password for Level 1|(% style="width:452px" %)((( | ||
521 | Display password for level 1, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
522 | ))) | ||
523 | |=(% style="width: 160px;" %)HSW1458~~1461|(% style="width:282px" %)Password for Level 2|(% style="width:452px" %)Display password for level 2, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
524 | |=(% style="width: 160px;" %)HSW1462~~1465|(% style="width:282px" %)Password for Level 3|(% style="width:452px" %)Display password for level 3, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
525 | |=(% style="width: 160px;" %)HSW1466~~1469|(% style="width:282px" %)Password for Level 4|(% style="width:452px" %)Display password for level 4, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
526 | |=(% style="width: 160px;" %)HSW1470~~1473|(% style="width:282px" %)Password for Level 5|(% style="width:452px" %)Display password for level 5, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
527 | |=(% style="width: 160px;" %)HSW1474~~1477|(% style="width:282px" %)Password for Level 6|(% style="width:452px" %)Display password for level 6, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
528 | |=(% style="width: 160px;" %)HSW1478~~1481|(% style="width:282px" %)Password for Level 7|(% style="width:452px" %)Display password for level 7, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
529 | |=(% style="width: 160px;" %)HSW1482~~1485|(% style="width:282px" %)Password for Level 8|(% style="width:452px" %)Display password for level 8, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
530 | |=(% style="width: 160px;" %)HSW1486~~1489|(% style="width:282px" %)Password for Level 9|(% style="width:452px" %)Display password for level 9, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
531 | |=(% style="width: 160px;" %)HSW1490~~1493|(% style="width:282px" %)Password for Level 10|(% style="width:452px" %)Display password for level 10, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
532 | |=(% style="width: 160px;" %)HSW1494~~1497|(% style="width:282px" %)Password for Level 11|(% style="width:452px" %)Display password for level 11, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
533 | |=(% style="width: 160px;" %)HSW1498~~1501|(% style="width:282px" %)Password for Level 12|(% style="width:452px" %)Display password for level 12, using character input object, up to 8 characters (numbers, letters (case sensitive)) | ||
534 | |=(% style="width: 160px;" %)HSW1502|(% style="width:282px" %)Modify password for object level|(% style="width:452px" %)((( | ||
535 | * HSX1502.0=1: Modification comfirmed. Save the data of HSW1450~~HSW1501 to a file for immediate effect. | ||
536 | * HSX1502.1=1:Modification cancelled. Restore the current data of hSW1450-HSW1501 to the data saved in the file last time. | ||
537 | ))) | ||
538 | |=(% style="width: 160px;" %)HSW1509|(% style="width:282px" %)Curve width|(% style="width:452px" %)((( | ||
539 | * =0: Use the curve width set by project default. | ||
540 | * =1 to 10: use special register to set curve width. | ||
541 | ))) | ||
542 | |=(% style="width: 160px;" %)HSW1603|(% style="width:282px" %)Number of current unreleased alarms|(% style="width:452px" %)The number of current unreleased alarms in alarm record file. | ||
543 | |=(% style="width: 160px;" %)HSW1604|(% style="width:282px" %)The auxiliary judgment address when the control bit in the Object Lock fails to be read|(% style="width:452px" %)((( | ||
544 | * =0: The auxiliary address is invalid. | ||
545 | * =1: When the communication fails, lock the object. | ||
546 | * =2: When the communication fails, unlock the object. | ||
547 | * =Others: The auxiliary address is invalid. | ||
548 | ))) | ||
549 | |=(% style="width: 160px;" %)HSW1605|(% style="width:282px" %)BCD format natural decimal control|(% style="width:452px" %)((( | ||
550 | Whether to display natural decimals with decimal point in BCD format: | ||
551 | |||
552 | * 0=Not enabled. | ||
553 | * 1=Enable. | ||
554 | |||
555 | (For example, 56.20 is displayed as 56.2, 33.00 is displayed as 33) | ||
556 | ))) | ||
557 | |=(% style="width: 160px;" %)HSW1606|(% style="width:282px" %)User permission modification control|(% style="width:452px" %)((( | ||
558 | * =0: Ordinary users are allowed to modify permissions and other operations | ||
559 | * =1: Only the administrator can operate (default is 0) | ||
560 | ))) | ||
561 | |=(% style="width: 160px;" %)HSW1607|(% style="width:282px" %)The spacing value among the drop-down items of the drop-down list|(% style="width:452px" %)10 to 50 is effective, such as: 23 is 2.3 times the height of the object. | ||
562 | |=(% style="width: 160px;" %)HSW1611|(% style="width:282px" %)((( | ||
563 | Traditional recipe transfer | ||
564 | )))|(% style="width:452px" %)((( | ||
565 | * =1: download traditional recipe. | ||
566 | * =2: upload the traditional recipe. | ||
567 | ))) | ||
568 | |=(% style="width: 160px;" %)HSW1612|(% style="width:282px" %)Traditional Recipe group number|(% style="width:452px" %)Traditional Recipe group number | ||
569 | |=(% style="width: 160px;" %)HSW1613|(% style="width:282px" %)Display the status of network card|(% style="width:452px" %)((( | ||
570 | * =1: Normal | ||
571 | * =Others: Abnormal | ||
572 | ))) | ||
573 | |=(% style="width: 160px;" %)HSW1614~~1623|(% style="width:282px" %)Download speed per second|(% style="width:452px" %)Display the download speed per second. (The value is string) | ||
574 | |=(% style="width: 160px;" %)HSW1624~~1633|(% style="width:282px" %)Upnload speed per second|(% style="width:452px" %)Display the upload speed per second. (The value is string) | ||
575 | |=(% style="width: 160px;" %)HSW1634~~1643|(% style="width:282px" %)Flow consumption rate|(% style="width:452px" %)Display the total flow rate per second (The value is string) | ||
576 | |=(% style="width: 160px;" %)HSW1644~~1653|(% style="width:282px" %)Download flow consumption after power on|(% style="width:452px" %)Display the download flow consumption after power on (The value is string) | ||
577 | |=(% style="width: 160px;" %)HSW1654~~1663|(% style="width:282px" %)Upload flow consumption after power on|(% style="width:452px" %)Display the upload flow consumption after power on (The value is string) | ||
578 | |=(% style="width: 160px;" %)HSW1664~~1673|(% style="width:282px" %)Total flow consumption after power on|(% style="width:452px" %)Display the total flow consumption after power on (download and upload). (The value is string) | ||
579 | |=(% style="width: 160px;" %)HSW1674~~1683|(% style="width:282px" %)Historical flow consumption|(% style="width:452px" %)Display historical flow consumption (download and upload). (The value is string) | ||
580 | |=(% style="width: 160px;" %)HSW1684~~1693|(% style="width:282px" %)Flow consumption in 10 minutes|(% style="width:452px" %)Flow consumption in 10 minutes (download and upload). (The value is string) | ||
581 | |=(% style="width: 160px;" %)HSW1694~~1703|(% style="width:282px" %)Flow consumption in 30 minutes|(% style="width:452px" %)Flow consumption in 30 minutes (download and upload). (The value is string) | ||
582 | |=(% style="width: 160px;" %)HSW1704~~1713|(% style="width:282px" %)Flow consumption in 3 hours|(% style="width:452px" %)Flow consumption in 3 hours (download and upload). (The value is string) | ||
583 | |=(% style="width: 160px;" %)HSW1715|(% style="width:282px" %)Reset flow|(% style="width:452px" %)((( | ||
584 | * =1: Clear historical flow data and restart the count. | ||
585 | * =Others: Invalid | ||
586 | ))) | ||
587 | |=(% style="width: 160px;" %)HSW1719|(% style="width:282px" %)Network status of Ethernet connnecting to server|(% style="width:452px" %)((( | ||
588 | * =0: Server connection exception | ||
589 | * =1: Server connection is OK | ||
590 | ))) | ||
591 | |=(% style="width: 160px;" %)HSW1720|(% colspan="1" rowspan="12" style="width:282px" %)Related IP register in WIFI network status (It is valid when HMI is connected to WIFI)|(% style="width:452px" %)Local IP address high byte 1 | ||
592 | |=(% style="width: 160px;" %)HSW1721|(% style="width:452px" %)Local IP address high byte 2 | ||
593 | |=(% style="width: 160px;" %)HSW1722|(% style="width:452px" %)Local IP address high byte 3 | ||
594 | |=(% style="width: 160px;" %)HSW1723|(% style="width:452px" %)Local IP address high byte 4 | ||
595 | |=(% style="width: 160px;" %)HSW1724|(% style="width:452px" %)Local mask IP address high byte 1 | ||
596 | |=(% style="width: 160px;" %)HSW1725|(% style="width:452px" %)Local mask IP address high byte 2 | ||
597 | |=(% style="width: 160px;" %)HSW1726|(% style="width:452px" %)Local mask IP address high byte 3 | ||
598 | |=(% style="width: 160px;" %)HSW1727|(% style="width:452px" %)Local mask IP address high byte 4 | ||
599 | |=(% style="width: 160px;" %)HSW1728|(% style="width:452px" %)Local gateway IP address high byte 1 | ||
600 | |=(% style="width: 160px;" %)HSW1729|(% style="width:452px" %)Local gateway IP address high byte 2 | ||
601 | |=(% style="width: 160px;" %)HSW1730|(% style="width:452px" %)Local gateway IP address high byte 3 | ||
602 | |=(% style="width: 160px;" %)HSW1731|(% style="width:452px" %)Local gateway IP address high byte 4 | ||
603 | |=(% style="width: 160px;" %)HSW1733|(% colspan="1" rowspan="6" style="width:282px" %)((( | ||
604 | Display the MAC code of current WIFI | ||
605 | |||
606 | (display in hexadecimal) | ||
607 | )))|(% style="width:452px" %)Local MAC address high byte 1 (hexadecimal) | ||
608 | |=(% style="width: 160px;" %)HSW1734|(% style="width:452px" %)Local MAC address high byte 2 (hexadecimal) | ||
609 | |=(% style="width: 160px;" %)HSW1735|(% style="width:452px" %)Local MAC address high byte 3 (hexadecimal) | ||
610 | |=(% style="width: 160px;" %)HSW1736|(% style="width:452px" %)Local MAC address high byte 4 (hexadecimal) | ||
611 | |=(% style="width: 160px;" %)HSW1737|(% style="width:452px" %)Local MAC address high byte 5 (hexadecimal) | ||
612 | |=(% style="width: 160px;" %)HSW1738|(% style="width:452px" %)Local MAC address high byte 6 (hexadecimal) | ||
613 | |=(% style="width: 160px;" %)HSW1739|(% style="width:282px" %)Display the network status of WIFI|(% style="width:452px" %)((( | ||
614 | * =0: Server connection exception | ||
615 | * =1: Server connection is OK | ||
616 | ))) | ||
617 | |=(% style="width: 160px;" %)HSW1740|(% style="width:282px" %)Wi-fi signal strength|(% style="width:452px" %)((( | ||
618 | Display the value of Wi-fi signal signal strength, ranges from 0~~100 (Signal strength is automatically obtained only once when HMI is powered on, and it will not be automatically updated. It needs to be used with the HSW1890) | ||
619 | ))) | ||
620 | |=(% style="width: 160px;" %)HSW1741|(% colspan="1" rowspan="12" style="width:282px" %)Related IP register in 4Gnetwork status (It is valid when HMI is connected to 4G)|(% style="width:452px" %)Local IP address high byte 1 | ||
621 | |=(% style="width: 160px;" %)HSW1742|(% style="width:452px" %)Local IP address high byte 2 | ||
622 | |=(% style="width: 160px;" %)HSW1743|(% style="width:452px" %)Local IP address high byte 3 | ||
623 | |=(% style="width: 160px;" %)HSW1744|(% style="width:452px" %)Local IP address high byte 4 | ||
624 | |=(% style="width: 160px;" %)HSW1745|(% style="width:452px" %)Local mask IP address high byte 1 | ||
625 | |=(% style="width: 160px;" %)HSW1746|(% style="width:452px" %)Local mask IP address high byte 2 | ||
626 | |=(% style="width: 160px;" %)HSW1747|(% style="width:452px" %)Local mask IP address high byte 3 | ||
627 | |=(% style="width: 160px;" %)HSW1748|(% style="width:452px" %)Local mask IP address high byte 4 | ||
628 | |=(% style="width: 160px;" %)HSW1749|(% style="width:452px" %)Local gateway IP address high byte 1 | ||
629 | |=(% style="width: 160px;" %)HSW1750|(% style="width:452px" %)Local gateway IP address high byte 2 | ||
630 | |=(% style="width: 160px;" %)HSW1751|(% style="width:452px" %)Local gateway IP address high byte 3 | ||
631 | |=(% style="width: 160px;" %)HSW1752|(% style="width:452px" %)Local gateway IP address high byte 4 | ||
632 | |=(% style="width: 160px;" %)HSW1754|(% colspan="1" rowspan="6" style="width:282px" %)((( | ||
633 | Display the MAC code of current WIFI | ||
634 | |||
635 | (display in hexadecimal) | ||
636 | )))|(% style="width:452px" %)Local MAC address high byte 1 (hexadecimal) | ||
637 | |=(% style="width: 160px;" %)HSW1755|(% style="width:452px" %)Local MAC address high byte 2 (hexadecimal) | ||
638 | |=(% style="width: 160px;" %)HSW1756|(% style="width:452px" %)Local MAC address high byte 3 (hexadecimal) | ||
639 | |=(% style="width: 160px;" %)HSW1757|(% style="width:452px" %)Local MAC address high byte 4 (hexadecimal) | ||
640 | |=(% style="width: 160px;" %)HSW1758|(% style="width:452px" %)Local MAC address high byte 5 (hexadecimal) | ||
641 | |=(% style="width: 160px;" %)HSW1759|(% style="width:452px" %)Local MAC address high byte 6 (hexadecimal) | ||
642 | |=(% style="width: 160px;" %)HSW1760|(% style="width:282px" %)Display 4G network status|(% style="width:452px" %)((( | ||
643 | * =0: Server connection exception | ||
644 | * =1: Server connection is OK | ||
645 | ))) | ||
646 | |=(% style="width: 160px;" %)HSW1761|(% style="width:282px" %)Display 4G network signal strength|(% style="width:452px" %)Signal strength: 0~~31. The greater the value ,the signal is stronger | ||
647 | |=(% style="width: 160px;" %)((( | ||
648 | HSW1762 | ||
649 | )))|(% colspan="1" rowspan="13" style="width:282px" %)((( | ||
650 | Note: Valid when Ethernet2 of HMI is plugged into the network cable. | ||
651 | ①、When the Ethernet setting is enabled in the project parameters, this register displays the set value. | ||
652 | ②. When the Ethernet setting is not enabled in the engineering parameters, the register displays the Ethernet IP automatically acquired by the HMI. | ||
653 | ③. When the HMI is not plugged into the network cable, the register will show 0 whether the engineering parameters are set or not. | ||
654 | ④.IP related registers can be read and written (only static IP mode can be written). | ||
655 | )))|(% style="width:452px" %)((( | ||
656 | Ethernet2 Local IP address high byte 1 | ||
657 | ))) | ||
658 | |=(% style="width: 160px;" %)((( | ||
659 | HSW1763 | ||
660 | )))|(% style="width:452px" %)((( | ||
661 | Ethernet2 Local IP address high byte 2 | ||
662 | ))) | ||
663 | |=(% style="width: 160px;" %)((( | ||
664 | HSW1764 | ||
665 | )))|(% style="width:452px" %)((( | ||
666 | Ethernet2 Local IP address high byte 3 | ||
667 | ))) | ||
668 | |=(% style="width: 160px;" %)((( | ||
669 | HSW1765 | ||
670 | )))|(% style="width:452px" %)((( | ||
671 | Ethernet2 Local IP address high byte 4 | ||
672 | ))) | ||
673 | |=(% style="width: 160px;" %)((( | ||
674 | HSW1766 | ||
675 | )))|(% style="width:452px" %)((( | ||
676 | Ethernet2 Local mask IP address high byte 1 | ||
677 | ))) | ||
678 | |=(% style="width: 160px;" %)((( | ||
679 | HSW1767 | ||
680 | )))|(% style="width:452px" %)((( | ||
681 | Ethernet2 Local mask IP address high byte 2 | ||
682 | ))) | ||
683 | |=(% style="width: 160px;" %)((( | ||
684 | HSW1768 | ||
685 | )))|(% style="width:452px" %)Ethernet2 Local mask IP address high byte 3 | ||
686 | |=(% style="width: 160px;" %)HSW1769|(% style="width:452px" %)Ethernet2 Local mask IP address high byte 4 | ||
687 | |=(% style="width: 160px;" %)((( | ||
688 | HSW1770 | ||
689 | )))|(% style="width:452px" %)((( | ||
690 | Ethernet2 Local gateway IP address high byte 1 | ||
691 | ))) | ||
692 | |=(% style="width: 160px;" %)((( | ||
693 | HSW1771 | ||
694 | )))|(% style="width:452px" %)((( | ||
695 | Ethernet2 Local gateway IP address high byte 2 | ||
696 | ))) | ||
697 | |=(% style="width: 160px;" %)((( | ||
698 | HSW1772 | ||
699 | )))|(% style="width:452px" %)((( | ||
700 | Ethernet2 Local gateway IP address high byte 3 | ||
701 | ))) | ||
702 | |=(% style="width: 160px;" %)((( | ||
703 | HSW1773 | ||
704 | )))|(% style="width:452px" %)((( | ||
705 | Ethernet2 Local gateway IP address high byte 4 | ||
706 | ))) | ||
707 | |=(% style="width: 160px;" %)((( | ||
708 | HSW1774 | ||
709 | )))|(% style="width:452px" %)((( | ||
710 | Ethernet2 Local Port Address | ||
711 | ))) | ||
712 | |=(% style="width: 160px;" %)((( | ||
713 | HSW1775 | ||
714 | )))|(% colspan="1" rowspan="6" style="width:282px" %)((( | ||
715 | ①Display the MAC code of Ethernet2 NIC | ||
716 | |||
717 | (hexadecimal display) | ||
718 | |||
719 | ②Read-only mode, not modifiable | ||
720 | )))|(% style="width:452px" %)((( | ||
721 | Ethernet2 Local MAC code high byte 1 | ||
722 | ))) | ||
723 | |=(% style="width: 160px;" %)((( | ||
724 | HSW1776 | ||
725 | )))|(% style="width:452px" %)((( | ||
726 | Ethernet2 Local MAC code high byte 2 | ||
727 | ))) | ||
728 | |=(% style="width: 160px;" %)((( | ||
729 | HSW1777 | ||
730 | )))|(% style="width:452px" %)((( | ||
731 | Ethernet2 Local MAC code high byte 3 | ||
732 | ))) | ||
733 | |=(% style="width: 160px;" %)((( | ||
734 | HSW1778 | ||
735 | )))|(% style="width:452px" %)((( | ||
736 | Ethernet2 Local MAC code high byte 4 | ||
737 | ))) | ||
738 | |=(% style="width: 160px;" %)((( | ||
739 | HSW1779 | ||
740 | )))|(% style="width:452px" %)((( | ||
741 | Ethernet2 Local MAC code high byte 5 | ||
742 | ))) | ||
743 | |=(% style="width: 160px;" %)((( | ||
744 | HSW1780 | ||
745 | )))|(% style="width:452px" %)((( | ||
746 | Ethernet2 Local MAC code high byte 6 | ||
747 | ))) | ||
748 | |=(% style="width: 160px;" %)((( | ||
749 | HSW1781 | ||
750 | )))|(% colspan="1" rowspan="8" style="width:282px" %)((( | ||
751 | ①Display and modify DNS1 and DNS2 of Ethernet2 | ||
752 | |||
753 | ②Related registers can be read and written mode (only static IP mode can be written) | ||
754 | )))|(% style="width:452px" %)((( | ||
755 | Ethernet2 Local DNS1 address high byte 1 | ||
756 | ))) | ||
757 | |=(% style="width: 160px;" %)((( | ||
758 | HSW1782 | ||
759 | )))|(% style="width:452px" %)((( | ||
760 | Ethernet2 Local DNS1 address high byte 2 | ||
761 | ))) | ||
762 | |=(% style="width: 160px;" %)((( | ||
763 | HSW1783 | ||
764 | )))|(% style="width:452px" %)((( | ||
765 | Ethernet2 Local DNS1 address high byte 3 | ||
766 | ))) | ||
767 | |=(% style="width: 160px;" %)((( | ||
768 | HSW1784 | ||
769 | )))|(% style="width:452px" %)((( | ||
770 | Ethernet2 Local DNS1 address high byte 4 | ||
771 | ))) | ||
772 | |=(% style="width: 160px;" %)((( | ||
773 | HSW1785 | ||
774 | )))|(% style="width:452px" %)((( | ||
775 | Ethernet2 Local DNS2 address high byte 1 | ||
776 | ))) | ||
777 | |=(% style="width: 160px;" %)((( | ||
778 | HSW1786 | ||
779 | )))|(% style="width:452px" %)((( | ||
780 | Ethernet2 Local DNS2 address high byte 2 | ||
781 | ))) | ||
782 | |=(% style="width: 160px;" %)((( | ||
783 | HSW1787 | ||
784 | )))|(% style="width:452px" %)((( | ||
785 | Ethernet2 Local DNS2 address high byte 3 | ||
786 | ))) | ||
787 | |=(% style="width: 160px;" %)((( | ||
788 | HSW1788 | ||
789 | )))|(% style="width:452px" %)((( | ||
790 | Ethernet2 Local DNS2 address high byte 4 | ||
791 | ))) | ||
792 | |=(% style="width: 160px;" %)((( | ||
793 | HSW1789 | ||
794 | )))|(% colspan="1" style="width:282px" %)((( | ||
795 | Display or set the dynamic or static IP mode of Ethernet2 | ||
796 | )))|(% style="width:452px" %)((( | ||
797 | HSX1789.0 = 0, Static IP mode | ||
798 | |||
799 | HSX1789.0 = 1, dynamic IP mode | ||
800 | ))) | ||
801 | |=(% style="width: 160px;" %)((( | ||
802 | HSW1790 | ||
803 | )))|(% colspan="1" style="width:282px" %)((( | ||
804 | Confirm Ethernet2 IP, subnet mask, gateway, DNS1, DNS2, and dynamic static IP settings | ||
805 | )))|(% style="width:452px" %)((( | ||
806 | ~= 1, confirm the setting (i.e., after modifying IP-related information, set this address to 1, representing confirmation of the modification, after which it will be reset to 0) | ||
807 | ))) | ||
808 | |=(% style="width: 160px;" %)((( | ||
809 | HSW1791 | ||
810 | )))|(% colspan="1" style="width:282px" %)((( | ||
811 | Network status of the Ethernet2 connection server | ||
812 | )))|(% style="width:452px" %)((( | ||
813 | ~= 0, connection to the server is abnormal = 1, connection to the server is normal | ||
814 | ))) | ||
815 | |=(% style="width: 160px;" %)HSW1852|(% style="width:282px" %)Control the interval in two consecutive clicks|(% style="width:452px" %)Limit range: 1~~500ms. The default is 100 ms. | ||
816 | |=(% style="width: 160px;" %)HSW1853|(% style="width:282px" %)File format for exporting data records to USB flash drive or SD card|(% style="width:452px" %)((( | ||
817 | * =0: db database | ||
818 | * =1: CSV | ||
819 | |||
820 | (Only valid for script function DbToCsvFile) | ||
821 | ))) | ||
822 | |=(% style="width: 160px;" %)HSW1854|(% style="width:282px" %)High and low word conversion type|(% style="width:452px" %)((( | ||
823 | * =0: use the old high-low word conversion (default) | ||
824 | * =1: usie the new high-low word conversion | ||
825 | ))) | ||
826 | |=(% style="width: 160px;" %)HSW1855|(% style="width:282px" %)Screen Lock prompt display control|(% style="width:452px" %)((( | ||
827 | Control whether the screen lock prompt is displayed, | ||
828 | |||
829 | * =0: display(default value) | ||
830 | * =Other: no display. | ||
831 | ))) | ||
832 | |=(% style="width: 160px;" %)HSW1856|(% style="width:282px" %)Display map fence drawing status|(% style="width:452px" %)((( | ||
833 | * =0: no map fence | ||
834 | * =1: The map fence is drawn and the device is inside the fence | ||
835 | * =2: The map fence is drawn and the device is outside the fence | ||
836 | ))) | ||
837 | |=(% style="width: 160px;" %)HSW1857|(% style="width:282px" %)USB disk download |(% style="width:452px" %)((( | ||
838 | * =0: download project | ||
839 | * =1: download firmware | ||
840 | * =2: enter the background | ||
841 | ))) | ||
842 | |=(% style="width: 160px;" %)HSW1865|(% style="width:282px" %)Priority connection to the cloud|(% style="width:452px" %)((( | ||
843 | * =0: priority Ethernet | ||
844 | * =1: priority WLAN | ||
845 | * =2: priority 4G | ||
846 | ))) | ||
847 | |=(% style="width: 160px;" %)HSW1866|(% style="width:282px" %)Delete the Lua extension module file|(% style="width:452px" %)((( | ||
848 | * =0: delete; | ||
849 | * = Others: do not delete | ||
850 | ))) | ||
851 | |=(% style="width: 160px;" %)HSW1867|(% style="width:282px" %)Reset mode|(% style="width:452px" %)((( | ||
852 | Monitor address is set during reset of reset switch, whether to cancel reset, | ||
853 | |||
854 | * = 0: yes (default); | ||
855 | * = 1: no | ||
856 | ))) | ||
857 | |=(% style="width: 160px;" %)HSW1868|(% style="width:282px" %)Double-click or long press the record type table mode|(% style="width:452px" %)((( | ||
858 | Controls whether the button pops up when double-clicking or long pressing on record type table object | ||
859 | |||
860 | * = 0: yes (default); | ||
861 | * = 1: no | ||
862 | ))) | ||
863 | |=(% style="width: 160px;" %)((( | ||
864 | HSW1869 | ||
865 | )))|(% style="width:282px" %)((( | ||
866 | Dynamic screensaver countdown | ||
867 | )))|(% style="width:452px" %)((( | ||
868 | Countdown to enter dynamic screensaver effect, unit (S) | ||
869 | ))) | ||
870 | |=(% style="width: 160px;" %)((( | ||
871 | HSW1870 | ||
872 | )))|(% style="width:282px" %)((( | ||
873 | Display or set the dynamic or static IP mode of Ethernet1 | ||
874 | )))|(% style="width:452px" %)((( | ||
875 | HSX1870.0 = 0, Static IP mode | ||
876 | |||
877 | HSX1870.0 = 1, dynamic IP mode | ||
878 | ))) | ||
879 | |=(% style="width: 160px;" %)((( | ||
880 | HSW1871 | ||
881 | )))|(% style="width:282px" %)((( | ||
882 | Confirm the IP, subnet mask, gateway, DNS1, DNS2, and dynamic static IP settings for Ethernet1 | ||
883 | )))|(% style="width:452px" %)((( | ||
884 | ~= 1, confirm the setting (i.e., after modifying IP-related information, set this address to 1, representing confirmation of the modification, after which it will be reset to 0) | ||
885 | ))) | ||
886 | |=(% style="width: 160px;" %)((( | ||
887 | HSW1872 | ||
888 | )))|(% colspan="1" rowspan="8" style="width:282px" %)((( | ||
889 | ①Display and modify DNS1 and DNS2 of Ethernet1 | ||
890 | |||
891 | ②Related registers can be read and written mode (only static IP mode can be written) | ||
892 | )))|(% style="width:452px" %)((( | ||
893 | Ethernet1 Local DNS1 address high byte 1 | ||
894 | ))) | ||
895 | |=(% style="width: 160px;" %)((( | ||
896 | HSW1873 | ||
897 | )))|(% style="width:452px" %)Ethernet1 Local DNS1 address high byte 2 | ||
898 | |=(% style="width: 160px;" %)((( | ||
899 | HSW1874 | ||
900 | )))|(% style="width:452px" %)Ethernet1 Local DNS1 address high byte 3 | ||
901 | |=(% style="width: 160px;" %)((( | ||
902 | HSW1875 | ||
903 | )))|(% style="width:452px" %)Ethernet1 Local DNS1 address high byte 4 | ||
904 | |=(% style="width: 160px;" %)((( | ||
905 | HSW1876 | ||
906 | )))|(% style="width:452px" %)Ethernet1 Local DNS2 address high byte 1 | ||
907 | |=(% style="width: 160px;" %)((( | ||
908 | HSW1877 | ||
909 | )))|(% style="width:452px" %)Ethernet1 Local DNS2 address high byte 2 | ||
910 | |=(% style="width: 160px;" %)((( | ||
911 | HSW1878 | ||
912 | )))|(% style="width:452px" %)Ethernet1 Local DNS2 address high byte 3 | ||
913 | |=(% style="width: 160px;" %)((( | ||
914 | HSW1879 | ||
915 | )))|(% style="width:452px" %)Ethernet1 Local DNS2 address high byte 4 | ||
916 | |=(% style="width: 160px;" %)HSW1890|(% colspan="1" style="width:282px" %)Enable refresh current network signal|(% style="width:452px" %)((( | ||
917 | * =1: Refresh the network signal once after triggered (This register will be automatically reset after triggered, only update the signal value once after per 15 seconds, not able to update twice in the short interval) | ||
918 | * =Others: not refresh | ||
919 | ))) | ||
920 | |=(% style="width: 160px;" %)HSW1891|(% colspan="1" style="width:282px" %)Enable clear cache for screen data |(% style="width:452px" %)((( | ||
921 | * =1, not clear screen cache when switch language | ||
922 | * =2, trigger clear cache of all screens for once time | ||
923 | * =3, always clear cache of all screen data | ||
924 | ))) | ||
925 | |=(% style="width: 160px;" %)HSW10000~~19999|(% style="width:282px" %)Power-down storage area|(% style="width:452px" %)After restart, the data remains | ||
926 | |=(% style="width: 160px;" %)HSW10035|(% rowspan="13" style="width:282px" %)((( | ||
927 | Note: Valid when Ethernet1 of HMI is plugged into the network cable. | ||
928 | ① When the Ethernet setting is enabled in the project parameters, this register displays the set value. | ||
929 | ② When the Ethernet setting is not enabled in the engineering parameters, the register displays the Ethernet IP automatically acquired by the HMI. | ||
930 | ③ When the HMI is not plugged into the network cable, the register will show 0 whether the engineering parameters are set or not. | ||
931 | ④ IP related registers can be read and written (only static IP mode can be written). | ||
932 | )))|(% style="width:452px" %)Local IP address high byte 1 | ||
933 | |=(% style="width: 160px;" %)HSW10036|(% style="width:452px" %)Local IP address high byte 2 | ||
934 | |=(% style="width: 160px;" %)HSW10037|(% style="width:452px" %)Local IP address high byte 3 | ||
935 | |=(% style="width: 160px;" %)HSW10038|(% style="width:452px" %)Local IP address high byte 4 | ||
936 | |=(% style="width: 160px;" %)HSW10039|(% style="width:452px" %)Local mask IP address high byte 1 | ||
937 | |=(% style="width: 160px;" %)HSW10040|(% style="width:452px" %)Local mask IP address high byte 2 | ||
938 | |=(% style="width: 160px;" %)HSW10041|(% style="width:452px" %)Local mask IP address high byte 3 | ||
939 | |=(% style="width: 160px;" %)HSW10042|(% style="width:452px" %)Local mask IP address high byte 4 | ||
940 | |=(% style="width: 160px;" %)HSW10043|(% style="width:452px" %)Local gateway address high byte 1 | ||
941 | |=(% style="width: 160px;" %)HSW10044|(% style="width:452px" %)Local gateway address high byte 2 | ||
942 | |=(% style="width: 160px;" %)HSW10045|(% style="width:452px" %)Local gateway address high byte 3 | ||
943 | |=(% style="width: 160px;" %)HSW10046|(% style="width:452px" %)Local gateway address high byte 4 | ||
944 | |=(% style="width: 160px;" %)HSW10047|(% style="width:452px" %)Local port address | ||
945 | |=(% style="width: 160px;" %)HSW10048|(% rowspan="6" style="width:282px" %)((( | ||
946 | ①Display the MAC code of Ethernet1 NIC | ||
947 | |||
948 | (hexadecimal display) | ||
949 | |||
950 | ②Read-only mode, not modifiable | ||
951 | )))|(% style="width:452px" %)Local MAC code high word 1 | ||
952 | |=(% style="width: 160px;" %)HSW10049|(% style="width:452px" %)Local MAC code high word 2 | ||
953 | |=(% style="width: 160px;" %)HSW10050|(% style="width:452px" %)Local MAC code high word 3 | ||
954 | |=(% style="width: 160px;" %)HSW10051|(% style="width:452px" %)Local MAC code high word 4 | ||
955 | |=(% style="width: 160px;" %)HSW10052|(% style="width:452px" %)Local MAC code high word 5 | ||
956 | |=(% style="width: 160px;" %)HSW10053|(% style="width:452px" %)Local MAC code high word 6 | ||
957 | |=(% style="width: 160px;" %)HSW10118|(% colspan="1" rowspan="2" style="width:282px" %)TSAP settings for HMI in the Siemens LOGO! 8 protocol|(% style="width:452px" %)HMI local TSAP, which corresponds to the remote TSAP of PLC | ||
958 | |=(% style="width: 160px;" %)HSW10119|(% style="width:452px" %)HMI remote TSAP, which corresponds to the local TSAP of PLC | ||
959 | |=(% style="width: 160px;" %)HSW10461~~10493|(% style="width:282px" %)Remote access password|(% style="width:452px" %)8-character remote access password | ||
960 | |=(% style="width: 160px;" %)HSW10494~~10558|(% style="width:282px" %)Machine ID (Read only)|(% style="width:452px" %)Machine ID for remote access (read only 64-bit) | ||
961 | |=(% style="width: 160px;" %)HSW10576|(% style="width:282px" %)Save dynamic installment settings|(% style="width:452px" %)HSX10576.0=1: Save the set dynamic installment information | ||
962 | |=(% style="width: 160px;" %)HSW10577|(% style="width:282px" %)Control address for installment|(% style="width:452px" %)((( | ||
963 | * HSX10577.0=0: disable dynamic installment | ||
964 | * HSX10577.0=1: enable dynamic installment | ||
965 | * HSX10577.1=0: disable static installment | ||
966 | * HSX10577.1=1: enable static installment | ||
967 | ))) | ||
968 | |=(% style="width: 160px;" %)HSW10578-10583|(% style="width:282px" %)Password for dynamic installment|(% style="width:452px" %)Character Input/ Display (length: 6) | ||
969 | |=(% style="width: 160px;" %)HSW10584-10586|(% style="width:282px" %)Expiry time of dynamic installment|(% style="width:452px" %)Expiry time: YYYYMMDD (Numeric Input/ Display) | ||
970 | |=(% style="width: 160px;" %)HSW10587-10589|(% style="width:282px" %)Last expiry time of dynamic installment|(% style="width:452px" %)Expiry time: YYYYMMDD (Numeric Input/ Display) | ||
971 | |=(% style="width: 160px;" %)HSW10590|(% style="width:282px" %)Background light time|(% style="width:452px" %)((( | ||
972 | Set the light time for background | ||
973 | |||
974 | * =0: The screen backlight is always on. | ||
975 | * =Others: The screen backlight is on for a period of time and then turns off. The length of time is controlled by the value of the register address. Unit: second. | ||
976 | ))) | ||
977 | |=(% style="width: 160px;" %)HSW10591|(% style="width:282px" %)Backlight brightness adjustment|(% style="width:452px" %)Backlight brightness range: 1 (darkest) ~~ 100 (brightest) | ||
978 | |=(% style="width: 160px;" %)HSW10603|(% style="width:282px" %)Set the printer to print orientation|(% style="width:452px" %)((( | ||
979 | Set the print direction: | ||
980 | |||
981 | * =1: Forward printing | ||
982 | * =2: Reverse print | ||
983 | * =Other: Forward print | ||
984 | ))) | ||
985 | |=(% style="width: 160px;" %)HSW10604|(% style="width:282px" %)Print dot type|(% style="width:452px" %)((( | ||
986 | * =1: new firmware 8 dot matrix type | ||
987 | * =2: new firmware 24 dot matrix type | ||
988 | * =3: old firmware 8 dot matrix type | ||
989 | * =4: old firmware 24 dot matrix type | ||
990 | * =Other: new firmware 8 dot matrix type | ||
991 | ))) | ||
992 | |=(% style="width: 160px;" %)HSW10605|(% style="width:282px" %)Print width of printer|(% style="width:452px" %)Set the width of the printer to print (in pixels), such as HSW10605 = 394: The printer supports images with a print width of 394 pixels | ||
993 | |=(% style="width: 160px;" %)HSW10606|(% style="width:282px" %)Printer instruction type|(% style="width:452px" %)((( | ||
994 | * =1: Graphic print type | ||
995 | * =2: Dot density printing type | ||
996 | * =3(Default value): special for EPSON printer | ||
997 | ))) | ||
998 | |=(% style="width: 160px;" %)HSW10607|(% style="width:282px" %)Printer paper cutting function|(% style="width:452px" %)((( | ||
999 | * =1: Enable | ||
1000 | * =2: Disable | ||
1001 | ))) | ||
1002 | |=(% style="width: 160px;" %)HSW10608|(% style="width:282px" %)Print the alignment of the text|(% style="width:452px" %)((( | ||
1003 | * =1: Left alignment | ||
1004 | * =2: Center alignment | ||
1005 | * =3: Right alignment | ||
1006 | ))) | ||
1007 | |=(% style="width: 160px;" %)HSW10610|(% style="width:282px" %)Set weconcloud server|(% style="width:452px" %)((( | ||
1008 | * =0: Select the server configured in "Project Settings" | ||
1009 | * =1: select Server 1 | ||
1010 | * =2: select Server 2 | ||
1011 | ))) | ||
1012 | |=(% style="width: 160px;" %)HSW11750|(% style="width:282px" %)Set the language of the Message List prompt** (ie series)**|(% style="width:452px" %)((( | ||
1013 | * =0: which is followed the project language | ||
1014 | * =1: English | ||
1015 | * =2: Chinese | ||
1016 | ))) | ||
1017 | |=(% style="width: 160px;" %)HSW11756|(% style="width:282px" %)((( | ||
1018 | Access permission restrictions | ||
1019 | |||
1020 | (ig series and** **8000/9000 series with -R after system upgrade) | ||
1021 | )))|(% style="width:452px" %)((( | ||
1022 | * =0: LAN or the external network both OK | ||
1023 | * =1: Only LAN access | ||
1024 | * =2: Only external network can access | ||
1025 | * =3: Close the functions | ||
1026 | ))) | ||
1027 | |=(% style="width: 160px;" %)HSW11757|(% style="width:282px" %)Enable the valid date of the dynamic installment password|(% style="width:452px" %)((( | ||
1028 | * =0: Disabled | ||
1029 | * =1: Enable | ||
1030 | ))) | ||
1031 | |=(% style="width: 160px;" %)HSW11758|(% style="width:282px" %)Enable Screensaver|(% style="width:452px" %)((( | ||
1032 | * =0: Disabled | ||
1033 | * =1: Enable | ||
1034 | ))) | ||
1035 | |=(% style="width: 160px;" %)HSW11759|(% style="width:282px" %)Screensaver interval time|(% style="width:452px" %)((( | ||
1036 | Set the time how long will enter Screensaver (Range 10~~43200s) | ||
1037 | ))) | ||
1038 | |=(% style="width: 160px;" %)HSW11760|(% style="width:282px" %)Screensaver countdown|(% style="width:452px" %)Display the countdown to enter the Screensaver, unit: second. | ||
1039 | |=(% style="width: 160px;" %)HSW11761|(% style="width:282px" %)Screensaver screen number|(% style="width:452px" %)Set the screen number for Screensaver | ||
1040 | |=(% style="width: 160px;" %)((( | ||
1041 | HSW11762 | ||
1042 | )))|(% style="width:282px" %)((( | ||
1043 | Dynamic screensaver control address | ||
1044 | )))|(% style="width:452px" %)((( | ||
1045 | HSX11762.0=0, initialize with project configuration; | ||
1046 | |||
1047 | HSX11762.0=1, initialize with special register configuration; | ||
1048 | |||
1049 | HSX11762.1=0, disable dynamic screensaver; | ||
1050 | |||
1051 | HSX11762.1=1, enable dynamic screensaver | ||
1052 | ))) | ||
1053 | |=(% style="width: 160px;" %)((( | ||
1054 | HSW11763 | ||
1055 | )))|(% style="width:282px" %)((( | ||
1056 | Waiting time to enter the dynamic screensaver | ||
1057 | )))|(% style="width:452px" %)((( | ||
1058 | Waiting time when the screen is not operated, range 1~~720 minutes | ||
1059 | ))) | ||
1060 | |=(% style="width: 160px;" %)((( | ||
1061 | HSW11764 | ||
1062 | )))|(% style="width:282px" %)((( | ||
1063 | Animated screensaver animation type | ||
1064 | )))|(% style="width:452px" %)((( | ||
1065 | ~=0: Raster,=1: Blinds,=2: Bubble | ||
1066 | ))) | ||
1067 | |||
1068 | == Serial port communication configuration == | ||
1069 | |||
1070 | (% class="table-bordered" %) | ||
1071 | |=(% scope="row" style="width: 102px;" %)Port|=(% style="width: 173px;" %)**Function**|=(% style="width: 122px;" %)**Address**|=(% colspan="2" style="width: 506px;" %)**Description** | ||
1072 | |(% colspan="1" rowspan="11" style="width:102px" %)COM1|(% style="width:173px" %)Communication mode|(% style="width:122px" %)HSW10061|(% colspan="2" style="width:506px" %)((( | ||
1073 | * =0: RS232 | ||
1074 | * =1: RS485 | ||
1075 | * =2: RS422 | ||
1076 | ))) | ||
1077 | |(% style="width:173px" %)Baud rate|(% style="width:122px" %)HSW10062|(% colspan="2" style="width:506px" %)((( | ||
1078 | * =0: 1200 | ||
1079 | * =1: 2400 | ||
1080 | * =2: 4800 | ||
1081 | * =3: 9600 | ||
1082 | * =4: 19200 | ||
1083 | * =5: 38400 | ||
1084 | * =6: 57600 | ||
1085 | * =7: 115200 | ||
1086 | * =8: 230400 | ||
1087 | ))) | ||
1088 | |(% style="width:173px" %)Data bit|(% style="width:122px" %)HSW10063|(% colspan="2" style="width:506px" %)((( | ||
1089 | * =7: 7 bit | ||
1090 | * =8: 8 bit | ||
1091 | ))) | ||
1092 | |(% style="width:173px" %)Stop bit|(% style="width:122px" %)HSW10064|(% colspan="2" style="width:506px" %)((( | ||
1093 | * =1: 1 bit | ||
1094 | * =2: 2 bit | ||
1095 | ))) | ||
1096 | |(% style="width:173px" %)Check bit|(% style="width:122px" %)HSW10065|(% colspan="2" style="width:506px" %)((( | ||
1097 | * =0: None | ||
1098 | * =1: ODD | ||
1099 | * =2: EVEN | ||
1100 | ))) | ||
1101 | |(% style="width:173px" %)Wait timeout|(% style="width:122px" %)HSW10066|(% colspan="2" style="width:506px" %)((( | ||
1102 | * Unit: ms. | ||
1103 | * Range: 0 to 30000 | ||
1104 | ))) | ||
1105 | |(% style="width:173px" %)reveive timeout|(% style="width:122px" %)HSW10067|(% colspan="2" style="width:506px" %)((( | ||
1106 | * Unit: ms. | ||
1107 | * Range: 0 to 30000 | ||
1108 | ))) | ||
1109 | |(% style="width:173px" %)Retry time|(% style="width:122px" %)HSW10068|(% colspan="2" style="width:506px" %)((( | ||
1110 | * Unit: times. | ||
1111 | * Range: 0 to 100 | ||
1112 | ))) | ||
1113 | |(% style="width:173px" %)Retry timeout|(% style="width:122px" %)HSW10069|(% colspan="2" style="width:506px" %)((( | ||
1114 | * Unit: s. | ||
1115 | * Range: 0 to 300 | ||
1116 | ))) | ||
1117 | |(% style="width:173px" %)HMI station number|(% style="width:122px" %)HSW10070|(% colspan="2" style="width:506px" %) | ||
1118 | |(% style="width:173px" %)PLC station number|(% style="width:122px" %)HSW10071|(% colspan="2" style="width:506px" %) | ||
1119 | |(% colspan="1" rowspan="11" style="width:102px" %)COM1-2|(% style="width:173px" %)Communication mode|(% style="width:122px" %)HSW10094|(% colspan="2" style="width:506px" %)((( | ||
1120 | * =0: RS232 | ||
1121 | * =1: RS485 | ||
1122 | * =2: RS422 | ||
1123 | * =6: RS485-2 | ||
1124 | ))) | ||
1125 | |(% style="width:173px" %)Baud rate|(% style="width:122px" %)HSW10095|(% colspan="2" style="width:506px" %)((( | ||
1126 | * =0: 1200 | ||
1127 | * =1: 2400 | ||
1128 | * =2: 4800 | ||
1129 | * =3: 9600 | ||
1130 | * =4: 19200 | ||
1131 | * =5: 38400 | ||
1132 | * =6: 57600 | ||
1133 | * =7: 115200 | ||
1134 | * =8: 230400 | ||
1135 | ))) | ||
1136 | |(% style="width:173px" %)Data bit|(% style="width:122px" %)HSW10096|(% colspan="2" style="width:506px" %)((( | ||
1137 | * =7: 7 bit | ||
1138 | * =8: 8 bit | ||
1139 | ))) | ||
1140 | |(% style="width:173px" %)Stop bit|(% style="width:122px" %)HSW10097|(% colspan="2" style="width:506px" %)((( | ||
1141 | * =1: 1 bit | ||
1142 | * =2: 2 bit | ||
1143 | ))) | ||
1144 | |(% style="width:173px" %)Check bit|(% style="width:122px" %)HSW10098|(% colspan="2" style="width:506px" %)((( | ||
1145 | * =0: None | ||
1146 | * =1: ODD | ||
1147 | * =2: EVEN | ||
1148 | ))) | ||
1149 | |(% style="width:173px" %)Wait timeout|(% style="width:122px" %)HSW10099|(% colspan="2" style="width:506px" %)((( | ||
1150 | * Unit: ms. | ||
1151 | * Range: 0 to 30000 | ||
1152 | ))) | ||
1153 | |(% style="width:173px" %)receive timeout|(% style="width:122px" %)HSW10100|(% colspan="2" style="width:506px" %)((( | ||
1154 | * Unit: ms. | ||
1155 | * Range: 0 to 30000 | ||
1156 | ))) | ||
1157 | |(% style="width:173px" %)Retry time|(% style="width:122px" %)HSW10101|(% colspan="2" style="width:506px" %)((( | ||
1158 | * Unit: times. | ||
1159 | * Range: 0 to 100 | ||
1160 | ))) | ||
1161 | |(% style="width:173px" %)Retry timeout|(% style="width:122px" %)HSW10102|(% colspan="2" style="width:506px" %)((( | ||
1162 | * Unit: s. | ||
1163 | * Range: 0 to 30 | ||
1164 | ))) | ||
1165 | |(% style="width:173px" %)HMI station number|(% style="width:122px" %)HSW10103|(% colspan="2" style="width:506px" %) | ||
1166 | |(% style="width:173px" %)PLC station number|(% style="width:122px" %)HSW10104|(% colspan="2" style="width:506px" %) | ||
1167 | |(% colspan="1" rowspan="11" style="width:102px" %)COM1-3|(% style="width:173px" %)Communication mode|(% style="width:122px" %)HSW10120|(% colspan="2" style="width:506px" %)((( | ||
1168 | * =0: RS232 | ||
1169 | * =1: RS485 | ||
1170 | * =2: RS422 | ||
1171 | * =6: RS485-2 | ||
1172 | ))) | ||
1173 | |(% style="width:173px" %)Baud rate|(% style="width:122px" %)HSW10121|(% colspan="2" style="width:506px" %)((( | ||
1174 | * =0: 1200 | ||
1175 | * =1: 2400 | ||
1176 | * =2: 4800 | ||
1177 | * =3: 9600 | ||
1178 | * =4: 19200 | ||
1179 | * =5: 38400 | ||
1180 | * =6: 57600 | ||
1181 | * =7: 115200 | ||
1182 | * =8: 230400 | ||
1183 | ))) | ||
1184 | |(% style="width:173px" %)Data bit|(% style="width:122px" %)HSW10122|(% colspan="2" style="width:506px" %)((( | ||
1185 | * =7: 7 bit | ||
1186 | * =8: 8 bit | ||
1187 | ))) | ||
1188 | |(% style="width:173px" %)Stop bit|(% style="width:122px" %)HSW10123|(% colspan="2" style="width:506px" %)((( | ||
1189 | * =1: 1 bit | ||
1190 | * =2: 2 bit | ||
1191 | ))) | ||
1192 | |(% style="width:173px" %)Check bit|(% style="width:122px" %)HSW10124|(% colspan="2" style="width:506px" %)((( | ||
1193 | * =0: None | ||
1194 | * =1: ODD | ||
1195 | * =2: EVEN | ||
1196 | ))) | ||
1197 | |(% style="width:173px" %)Wait timeout|(% style="width:122px" %)HSW10125|(% colspan="2" style="width:506px" %)((( | ||
1198 | * Unit: ms. | ||
1199 | * Range: 0 to 30000 | ||
1200 | ))) | ||
1201 | |(% style="width:173px" %)receive timeout|(% style="width:122px" %)HSW10126|(% colspan="2" style="width:506px" %)((( | ||
1202 | * Unit: ms. | ||
1203 | * Range: 0 to 30000 | ||
1204 | ))) | ||
1205 | |(% style="width:173px" %)Retry time|(% style="width:122px" %)HSW10127|(% colspan="2" style="width:506px" %)((( | ||
1206 | * Unit: times. | ||
1207 | * Range: 0 to 100 | ||
1208 | ))) | ||
1209 | |(% style="width:173px" %)Retry timeout|(% style="width:122px" %)HSW10128|(% colspan="2" style="width:506px" %)((( | ||
1210 | * Unit: s. | ||
1211 | * Range: 0 to 30 | ||
1212 | ))) | ||
1213 | |(% style="width:173px" %)HMI station number|(% style="width:122px" %)HSW10129|(% colspan="2" style="width:506px" %) | ||
1214 | |(% style="width:173px" %)PLC station number|(% style="width:122px" %)HSW10130|(% colspan="2" style="width:506px" %) | ||
1215 | |(% colspan="1" rowspan="11" style="width:102px" %)COM2|(% style="width:173px" %)Communication mode|(% style="width:122px" %)HSW10072|(% colspan="2" style="width:506px" %)((( | ||
1216 | * =0: RS232 | ||
1217 | * =1: RS485 | ||
1218 | ))) | ||
1219 | |(% style="width:173px" %)Baud rate|(% style="width:122px" %)HSW10073|(% colspan="2" style="width:506px" %)((( | ||
1220 | * =0: 1200 | ||
1221 | * =1: 2400 | ||
1222 | * =2: 4800 | ||
1223 | * =3: 9600 | ||
1224 | * =4: 19200 | ||
1225 | * =5: 38400 | ||
1226 | * =6: 57600 | ||
1227 | * =7: 115200 | ||
1228 | * =8: 230400 | ||
1229 | ))) | ||
1230 | |(% style="width:173px" %)Data bit|(% style="width:122px" %)HSW10074|(% colspan="2" style="width:506px" %)((( | ||
1231 | * =7: 7 bit | ||
1232 | * =8: 8 bit | ||
1233 | ))) | ||
1234 | |(% style="width:173px" %)Stop bit|(% style="width:122px" %)HSW10075|(% colspan="2" style="width:506px" %)((( | ||
1235 | * =1: 1 bit | ||
1236 | * =2: 2 bit | ||
1237 | ))) | ||
1238 | |(% style="width:173px" %)Check bit|(% style="width:122px" %)HSW10076|(% colspan="2" style="width:506px" %)((( | ||
1239 | * =0: None | ||
1240 | * =1: ODD | ||
1241 | * =2: EVEN | ||
1242 | ))) | ||
1243 | |(% style="width:173px" %)Wait timeout|(% style="width:122px" %)HSW10077|(% colspan="2" style="width:506px" %)((( | ||
1244 | * Unit: ms. | ||
1245 | * Range: 0 to 30000 | ||
1246 | ))) | ||
1247 | |(% style="width:173px" %)receive timeout|(% style="width:122px" %)HSW10078|(% colspan="2" style="width:506px" %)((( | ||
1248 | * Unit: ms. | ||
1249 | * Range: 0 to 30000 | ||
1250 | ))) | ||
1251 | |(% style="width:173px" %)Retry time|(% style="width:122px" %)HSW10079|(% colspan="2" style="width:506px" %)((( | ||
1252 | * Unit: times. | ||
1253 | * Range: 0 to 100 | ||
1254 | ))) | ||
1255 | |(% style="width:173px" %)Retry timeout|(% style="width:122px" %)HSW10080|(% colspan="2" style="width:506px" %)((( | ||
1256 | * Unit: s. | ||
1257 | * Range: 0 to 30 | ||
1258 | ))) | ||
1259 | |(% style="width:173px" %)HMI station number|(% style="width:122px" %)HSW10081|(% colspan="2" style="width:506px" %) | ||
1260 | |(% style="width:173px" %)PLC station number|(% style="width:122px" %)HSW10082|(% colspan="2" style="width:506px" %) | ||
1261 | |(% colspan="1" rowspan="11" style="width:102px" %)COM2-2|(% style="width:173px" %)Communication mode|(% style="width:122px" %)HSW10105|(% colspan="2" style="width:506px" %)((( | ||
1262 | * =0: RS232 | ||
1263 | * =1: RS485 | ||
1264 | ))) | ||
1265 | |(% style="width:173px" %)Baud rate|(% style="width:122px" %)HSW10106|(% colspan="2" style="width:506px" %)((( | ||
1266 | * =0: 1200 | ||
1267 | * =1: 2400 | ||
1268 | * =2: 4800 | ||
1269 | * =3: 9600 | ||
1270 | * =4: 19200 | ||
1271 | * =5: 38400 | ||
1272 | * =6: 57600 | ||
1273 | * =7: 115200 | ||
1274 | * =8: 230400 | ||
1275 | ))) | ||
1276 | |(% style="width:173px" %)Data bit|(% style="width:122px" %)HSW10107|(% colspan="2" style="width:506px" %)((( | ||
1277 | * =7: 7 bit | ||
1278 | * =8: 8 bit | ||
1279 | ))) | ||
1280 | |(% style="width:173px" %)Stop bit|(% style="width:122px" %)HSW10108|(% colspan="2" style="width:506px" %)((( | ||
1281 | * =1: 1 bit | ||
1282 | * =2: 2 bit | ||
1283 | ))) | ||
1284 | |(% style="width:173px" %)Check bit|(% style="width:122px" %)HSW10109|(% colspan="2" style="width:506px" %)((( | ||
1285 | * =0: None | ||
1286 | * =1: ODD | ||
1287 | * =2: EVEN | ||
1288 | ))) | ||
1289 | |(% style="width:173px" %)Wait timeout|(% style="width:122px" %)HSW10110|(% colspan="2" style="width:506px" %)((( | ||
1290 | * Unit: ms. | ||
1291 | * Range: 0 to 30000 | ||
1292 | ))) | ||
1293 | |(% style="width:173px" %)receive timeout|(% style="width:122px" %)HSW10111|(% colspan="2" style="width:506px" %)((( | ||
1294 | * Unit: ms. | ||
1295 | * Range: 0 to 30000 | ||
1296 | ))) | ||
1297 | |(% style="width:173px" %)Retry time|(% style="width:122px" %)HSW10112|(% colspan="2" style="width:506px" %)((( | ||
1298 | * Unit: times. | ||
1299 | * Range: 0 to 100 | ||
1300 | ))) | ||
1301 | |(% style="width:173px" %)Retry timeout|(% style="width:122px" %)HSW10113|(% colspan="2" style="width:506px" %)((( | ||
1302 | * Unit: s. | ||
1303 | * Range: 0 to 30 | ||
1304 | ))) | ||
1305 | |(% style="width:173px" %)HMI station number|(% style="width:122px" %)HSW10114|(% colspan="2" style="width:506px" %) | ||
1306 | |(% style="width:173px" %)PLC station number|(% style="width:122px" %)HSW10115|(% colspan="2" style="width:506px" %) | ||
1307 | |(% colspan="1" rowspan="11" style="width:102px" %)COM3|(% style="width:173px" %)Communication mode|(% style="width:122px" %)HSW10083|(% colspan="2" style="width:506px" %)((( | ||
1308 | * =1: RS485 | ||
1309 | ))) | ||
1310 | |(% style="width:173px" %)Baud rate|(% style="width:122px" %)HSW10084|(% colspan="2" style="width:506px" %)((( | ||
1311 | * =0: 1200 | ||
1312 | * =1: 2400 | ||
1313 | * =2: 4800 | ||
1314 | * =3: 9600 | ||
1315 | * =4: 19200 | ||
1316 | * =5: 38400 | ||
1317 | * =6: 57600 | ||
1318 | * =7: 115200 | ||
1319 | * =8: 230400 | ||
1320 | ))) | ||
1321 | |(% style="width:173px" %)Data bit|(% style="width:122px" %)HSW10085|(% colspan="2" style="width:506px" %)((( | ||
1322 | * =7: 7 bit | ||
1323 | * =8: 8 bit | ||
1324 | ))) | ||
1325 | |(% style="width:173px" %)Stop bit|(% style="width:122px" %)HSW10086|(% colspan="2" style="width:506px" %)((( | ||
1326 | * =1: 1 bit | ||
1327 | * =2: 2 bit | ||
1328 | ))) | ||
1329 | |(% style="width:173px" %)Check bit|(% style="width:122px" %)HSW10087|(% colspan="2" style="width:506px" %)((( | ||
1330 | * =0: None | ||
1331 | * =1: ODD | ||
1332 | * =2: EVEN | ||
1333 | ))) | ||
1334 | |(% style="width:173px" %)Wait timeout|(% style="width:122px" %)HSW10088|(% colspan="2" style="width:506px" %)((( | ||
1335 | * Unit: ms. | ||
1336 | * Range: 0 to 30000 | ||
1337 | ))) | ||
1338 | |(% style="width:173px" %)receive timeout|(% style="width:122px" %)HSW10089|(% colspan="2" style="width:506px" %)((( | ||
1339 | * Unit: ms. | ||
1340 | * Range: 0 to 30000 | ||
1341 | ))) | ||
1342 | |(% style="width:173px" %)Retry time|(% style="width:122px" %)HSW10090|(% colspan="2" style="width:506px" %)((( | ||
1343 | * Unit: times. | ||
1344 | * Range: 0 to 100 | ||
1345 | ))) | ||
1346 | |(% style="width:173px" %)Retry timeout|(% style="width:122px" %)HSW10091|(% colspan="2" style="width:506px" %)((( | ||
1347 | * Unit: s. | ||
1348 | * Range: 0 to 30 | ||
1349 | ))) | ||
1350 | |(% style="width:173px" %)HMI station number|(% style="width:122px" %)HSW10092|(% colspan="2" style="width:506px" %) | ||
1351 | |(% style="width:173px" %)PLC station number|(% style="width:122px" %)HSW10093|(% colspan="2" style="width:506px" %) | ||
1352 | |(% colspan="1" rowspan="2" style="width:102px" %)CAN port|(% style="width:173px" %)CAN1 baud rate|(% style="width:122px" %)HSW010116|(% style="width:299px" %)((( | ||
1353 | Unit: K, the baud rate must be an integer. | ||
1354 | |||
1355 | For example, when the baud rate required is 250000, just enter 250. | ||
1356 | )))|(% colspan="1" rowspan="2" style="width:218px" %)**✎Note: **If baud rate has been modified,please wait 5 seconds,then restart the HMI to take effect. | ||
1357 | |(% style="width:173px" %)CAN2 baud rate|(% style="width:122px" %)HSW010117|(% style="width:299px" %)((( | ||
1358 | Unit: K, the baud rate must be an integer. | ||
1359 | |||
1360 | For example, when the baud rate required is 250000, just enter 250. | ||
1361 | ))) | ||
1362 | |||
1363 | == Ethernet communication configuration == | ||
1364 | |||
1365 | (% class="table-bordered" %) | ||
1366 | |(% style="width:40px" %)**No.**|(% style="width:295px" %)**Function**|(% style="width:220px" %)**Address**|(% style="width:336px" %)**Description** | ||
1367 | |(% rowspan="7" style="width:40px" %)1|(% colspan="1" rowspan="7" style="width:295px" %)Ethernet parameter configuration for communication number 1 in list. Configure those addresses according to connected device. After configuration, wait for 5 seconds and restart the HMI.|(% style="width:220px" %)HSW11004|(% style="width:336px" %)Device IP address high word 1 | ||
1368 | |(% style="width:220px" %)HSW11005|(% style="width:336px" %)Device IP address high word 2 | ||
1369 | |(% style="width:220px" %)HSW11006|(% style="width:336px" %)Device IP address high word 3 | ||
1370 | |(% style="width:220px" %)HSW11007|(% style="width:336px" %)Device IP address high word 4 | ||
1371 | |(% style="width:220px" %)HSW11008|(% style="width:336px" %)Device Port number | ||
1372 | |(% style="width:220px" %)HSW11009|(% style="width:336px" %)((( | ||
1373 | ~=2 TCP | ||
1374 | |||
1375 | ~=3 UDP | ||
1376 | ))) | ||
1377 | |(% style="width:220px" %)HSW11010|(% style="width:336px" %)Reserved | ||
1378 | |(% rowspan="7" style="width:40px" %)2|(% colspan="1" rowspan="7" style="width:295px" %)Ethernet parameter configuration for communication number 2 in list. Configure those addresses according to connected device. After configuration, wait for 5 seconds and restart the HMI.|(% style="width:220px" %)HSW11011|(% style="width:336px" %)Device IP address high word 1 | ||
1379 | |(% style="width:220px" %)HSW11012|(% style="width:336px" %)Device IP address high word 2 | ||
1380 | |(% style="width:220px" %)HSW11013|(% style="width:336px" %)Device IP address high word 3 | ||
1381 | |(% style="width:220px" %)HSW11014|(% style="width:336px" %)Device IP address high word 4 | ||
1382 | |(% style="width:220px" %)HSW11015|(% style="width:336px" %)Device Port number | ||
1383 | |(% style="width:220px" %)HSW11016|(% style="width:336px" %)((( | ||
1384 | ~=2 TCP | ||
1385 | |||
1386 | ~=3 UDP | ||
1387 | ))) | ||
1388 | |(% style="width:220px" %)HSW11017|(% style="width:336px" %)Reserved | ||
1389 | |(% style="width:40px" %)…|(% style="width:295px" %) |(% style="width:220px" %)…|(% style="width:336px" %)… | ||
1390 | |(% rowspan="7" style="width:40px" %)32|(% colspan="1" rowspan="7" style="width:295px" %)Ethernet parameter configuration for communication number 32 in list. Configure those addresses according to connected device. After configuration, wait for 5 seconds and restart the HMI.|(% style="width:220px" %)HSW11221|(% style="width:336px" %)Device IP address high word 1 | ||
1391 | |(% style="width:220px" %)HSW11222|(% style="width:336px" %)Device IP address high word 2 | ||
1392 | |(% style="width:220px" %)HSW11223|(% style="width:336px" %)Device IP address high word 3 | ||
1393 | |(% style="width:220px" %)HSW11224|(% style="width:336px" %)Device IP address high word 4 | ||
1394 | |(% style="width:220px" %)HSW11225|(% style="width:336px" %)Device Port number | ||
1395 | |(% style="width:220px" %)HSW11226|(% style="width:336px" %)((( | ||
1396 | ~=2 TCP; | ||
1397 | |||
1398 | ~=3 UDP | ||
1399 | ))) | ||
1400 | |(% style="width:220px" %)HSW11227|(% style="width:336px" %)Reserved | ||
1401 | |||
1402 | (% class="box infomessage" %) | ||
1403 | ((( | ||
1404 | **✎Note:** The number of Ethernet connections supported by different HMI series varies. | ||
1405 | ))) | ||
1406 | |||
1407 | == Communication control == | ||
1408 | |||
1409 | (% class="table-bordered" %) | ||
1410 | |=(% style="width: 135px;" %)**Communication No.**|=(% style="width: 102px;" %)**Station No.**|=(% style="width: 185px;" %)**Control bit**|=(% style="width: 191px;" %)**Communication lamp**|=(% style="width: 271px;" %)**Description** | ||
1411 | |(% colspan="1" rowspan="16" style="width:135px" %)1|(% style="width:102px" %)0~~15|(% style="width:185px" %)HSX550.0~HSX550.15|(% style="width:191px" %)HSX558.0~HSX558.15|(% rowspan="160" style="width:271px" %)Communication number refers to the number in "Communication Port Configuration". A number provides 256 device station numbers. Each station number corresponds to a communication control bit and a communication indicator bit. Registers HSX550.0 to HSX805.15 are used to control the station numbers from 0 to 127, and registers HSX1150.0 to HSX1405.15 are used to control station numbers 128 to 255. | ||
1412 | |(% style="width:102px" %)16~~31|(% style="width:185px" %)HSX551.0~HSX551.15|(% style="width:191px" %)HSX559.0~HSX559.15 | ||
1413 | |(% style="width:102px" %)32~~47|(% style="width:185px" %)HSX552.0~HSX552.15|(% style="width:191px" %)HSX560.0~HSX560.15 | ||
1414 | |(% style="width:102px" %)48~~63|(% style="width:185px" %)HSX553.0~HSX553.15|(% style="width:191px" %)HSX561.0~HSX561.15 | ||
1415 | |(% style="width:102px" %)64~79|(% style="width:185px" %)HSX554.0~HSX554.15|(% style="width:191px" %)HSX562.0~HSX562.15 | ||
1416 | |(% style="width:102px" %)80~95|(% style="width:185px" %)HSX555.0~HSX555.15|(% style="width:191px" %)HSX563.0~HSX563.15 | ||
1417 | |(% style="width:102px" %)96~111|(% style="width:185px" %)HSX556.0~HSX556.15|(% style="width:191px" %)HSX564.0~HSX564.15 | ||
1418 | |(% style="width:102px" %)112~127|(% style="width:185px" %)HSX557.0~HSX557.15|(% style="width:191px" %)HSX565.0~HSX565.15 | ||
1419 | |(% style="width:102px" %)128~143|(% style="width:185px" %)HSX1150.0~HSX1150.15|(% style="width:191px" %)HSX1158.0~HSX1158.15 | ||
1420 | |(% style="width:102px" %)144~159|(% style="width:185px" %)HSX1151.0~HSX1151.15|(% style="width:191px" %)HSX1159.0~HSX1159.15 | ||
1421 | |(% style="width:102px" %)160~175|(% style="width:185px" %)HSX1152.0~HSX1152.15|(% style="width:191px" %)HSX1160.0~HSX1160.15 | ||
1422 | |(% style="width:102px" %)176~191|(% style="width:185px" %)HSX1153.0~HSX1153.15|(% style="width:191px" %)HSX1161.0~HSX1161.15 | ||
1423 | |(% style="width:102px" %)192~207|(% style="width:185px" %)HSX1154.0~HSX1154.15|(% style="width:191px" %)HSX1162.0~HSX1162.15 | ||
1424 | |(% style="width:102px" %)208~223|(% style="width:185px" %)HSX1155.0~HSX1155.15|(% style="width:191px" %)HSX1163.0~HSX1163.15 | ||
1425 | |(% style="width:102px" %)224~239|(% style="width:185px" %)HSX1156.0~HSX1156.15|(% style="width:191px" %)HSX1164.0~HSX1164.15 | ||
1426 | |(% style="width:102px" %)240~255|(% style="width:185px" %)HSX1157.0~HSX1157.15|(% style="width:191px" %)HSX1165.0~HSX1165.15 | ||
1427 | |(% colspan="1" rowspan="16" style="width:135px" %)2|(% style="width:102px" %)0~15|(% style="width:185px" %)HSX566.0~HSX566.15|(% style="width:191px" %)HSX574.0~HSX574.15 | ||
1428 | |(% style="width:102px" %)16~31|(% style="width:185px" %)HSX567.0~HSX567.15|(% style="width:191px" %)HSX575.0~HSX575.15 | ||
1429 | |(% style="width:102px" %)32~47|(% style="width:185px" %)HSX568.0~HSX568.15|(% style="width:191px" %)HSX576.0~HSX576.15 | ||
1430 | |(% style="width:102px" %)48~63|(% style="width:185px" %)HSX569.0~HSX569.15|(% style="width:191px" %)HSX577.0~HSX577.15 | ||
1431 | |(% style="width:102px" %)64~79|(% style="width:185px" %)HSX570.0~HSX570.15|(% style="width:191px" %)HSX578.0~HSX578.15 | ||
1432 | |(% style="width:102px" %)80~95|(% style="width:185px" %)HSX571.0~HSX571.15|(% style="width:191px" %)HSX579.0~HSX579.15 | ||
1433 | |(% style="width:102px" %)96~111|(% style="width:185px" %)HSX572.0~HSX572.15|(% style="width:191px" %)HSX580.0~HSX580.15 | ||
1434 | |(% style="width:102px" %)112~127|(% style="width:185px" %)HSX573.0~HSX573.15|(% style="width:191px" %)HSX581.0~HSX581.15 | ||
1435 | |(% style="width:102px" %)128~143|(% style="width:185px" %)HSX1166.0~HSX1166.15|(% style="width:191px" %)HSX1174.0~HSX1174.15 | ||
1436 | |(% style="width:102px" %)144~159|(% style="width:185px" %)HSX1167.0~HSX1167.15|(% style="width:191px" %)HSX1175.0~HSX1175.15 | ||
1437 | |(% style="width:102px" %)160~175|(% style="width:185px" %)HSX1168.0~HSX1168.15|(% style="width:191px" %)HSX1176.0~HSX1176.15 | ||
1438 | |(% style="width:102px" %)176~191|(% style="width:185px" %)HSX1169.0~HSX1169.15|(% style="width:191px" %)HSX1177.0~HSX1177.15 | ||
1439 | |(% style="width:102px" %)192~207|(% style="width:185px" %)HSX1170.0~HSX1170.15|(% style="width:191px" %)HSX1178.0~HSX1178.15 | ||
1440 | |(% style="width:102px" %)208~223|(% style="width:185px" %)HSX1171.0~HSX1171.15|(% style="width:191px" %)HSX1179.0~HSX1179.15 | ||
1441 | |(% style="width:102px" %)224~239|(% style="width:185px" %)HSX1172.0~HSX1172.15|(% style="width:191px" %)HSX1180.0~HSX1180.15 | ||
1442 | |(% style="width:102px" %)240~255|(% style="width:185px" %)HSX1173.0~HSX1173.15|(% style="width:191px" %)HSX1181.0~HSX1181.15 | ||
1443 | |(% colspan="1" rowspan="16" style="width:135px" %)3|(% style="width:102px" %)0~15|(% style="width:185px" %)HSX582.0~HSX582.15|(% style="width:191px" %)HSX590.0~HSX590.15 | ||
1444 | |(% style="width:102px" %)16~31|(% style="width:185px" %)HSX583.0~HSX583.15|(% style="width:191px" %)HSX591.0~HSX591.15 | ||
1445 | |(% style="width:102px" %)32~47|(% style="width:185px" %)HSX584.0~HSX584.15|(% style="width:191px" %)HSX592.0~HSX592.15 | ||
1446 | |(% style="width:102px" %)48~63|(% style="width:185px" %)HSX585.0~HSX585.15|(% style="width:191px" %)HSX593.0~HSX593.15 | ||
1447 | |(% style="width:102px" %)64~79|(% style="width:185px" %)HSX586.0~HSX586.15|(% style="width:191px" %)HSX594.0~HSX594.15 | ||
1448 | |(% style="width:102px" %)80~95|(% style="width:185px" %)HSX587.0~HSX587.15|(% style="width:191px" %)HSX595.0~HSX595.15 | ||
1449 | |(% style="width:102px" %)96~111|(% style="width:185px" %)HSX588.0~HSX588.15|(% style="width:191px" %)HSX596.0~HSX596.15 | ||
1450 | |(% style="width:102px" %)112~127|(% style="width:185px" %)HSX589.0~HSX589.15|(% style="width:191px" %)HSX597.0~HSX597.15 | ||
1451 | |(% style="width:102px" %)128~143|(% style="width:185px" %)HSX1182.0~HSX1182.15|(% style="width:191px" %)HSX1190.0~HSX1190.15 | ||
1452 | |(% style="width:102px" %)144~159|(% style="width:185px" %)HSX1183.0~HSX1183.15|(% style="width:191px" %)HSX1191.0~HSX1191.15 | ||
1453 | |(% style="width:102px" %)160~175|(% style="width:185px" %)HSX1184.0~HSX1184.15|(% style="width:191px" %)HSX1192.0~HSX1192.15 | ||
1454 | |(% style="width:102px" %)176~191|(% style="width:185px" %)HSX1185.0~HSX1185.15|(% style="width:191px" %)HSX1193.0~HSX1193.15 | ||
1455 | |(% style="width:102px" %)192~207|(% style="width:185px" %)HSX1186.0~HSX1186.15|(% style="width:191px" %)HSX1194.0~HSX1194.15 | ||
1456 | |(% style="width:102px" %)208~223|(% style="width:185px" %)HSX1187.0~HSX1187.15|(% style="width:191px" %)HSX1195.0~HSX1195.15 | ||
1457 | |(% style="width:102px" %)224~239|(% style="width:185px" %)HSX1188.0~HSX1188.15|(% style="width:191px" %)HSX1196.0~HSX1196.15 | ||
1458 | |(% style="width:102px" %)240~255|(% style="width:185px" %)HSX1189.0~HSX1189.15|(% style="width:191px" %)HSX1197.0~HSX1197.15 | ||
1459 | |(% colspan="1" rowspan="16" style="width:135px" %)4|(% style="width:102px" %)0~15|(% style="width:185px" %)HSX598.0~HSX598.15|(% style="width:191px" %)HSX606.0~HSX606.15 | ||
1460 | |(% style="width:102px" %)16~31|(% style="width:185px" %)HSX599.0~HSX599.15|(% style="width:191px" %)HSX607.0~HSX607.15 | ||
1461 | |(% style="width:102px" %)32~47|(% style="width:185px" %)HSX600.0~HSX600.15|(% style="width:191px" %)HSX608.0~HSX608.15 | ||
1462 | |(% style="width:102px" %)48~63|(% style="width:185px" %)HSX601.0~HSX601.15|(% style="width:191px" %)HSX609.0~HSX609.15 | ||
1463 | |(% style="width:102px" %)64~79|(% style="width:185px" %)HSX602.0~HSX602.15|(% style="width:191px" %)HSX610.0~HSX610.15 | ||
1464 | |(% style="width:102px" %)80~95|(% style="width:185px" %)HSX603.0~HSX603.15|(% style="width:191px" %)HSX611.0~HSX611.15 | ||
1465 | |(% style="width:102px" %)96~111|(% style="width:185px" %)HSX604.0~HSX604.15|(% style="width:191px" %)HSX612.0~HSX612.15 | ||
1466 | |(% style="width:102px" %)112~127|(% style="width:185px" %)HSX605.0~HSX605.15|(% style="width:191px" %)HSX613.0~HSX613.15 | ||
1467 | |(% style="width:102px" %)128~143|(% style="width:185px" %)HSX1198.0~HSX1198.15|(% style="width:191px" %)HSX1206.0~HSX1206.15 | ||
1468 | |(% style="width:102px" %)144~159|(% style="width:185px" %)HSX1199.0~HSX1199.15|(% style="width:191px" %)HSX1207.0~HSX1207.15 | ||
1469 | |(% style="width:102px" %)160~175|(% style="width:185px" %)HSX1200.0~HSX1200.15|(% style="width:191px" %)HSX1208.0~HSX1208.15 | ||
1470 | |(% style="width:102px" %)176~191|(% style="width:185px" %)HSX1201.0~HSX1201.15|(% style="width:191px" %)HSX1209.0~HSX1209.15 | ||
1471 | |(% style="width:102px" %)192~207|(% style="width:185px" %)HSX1202.0~HSX1202.15|(% style="width:191px" %)HSX1210.0~HSX1210.15 | ||
1472 | |(% style="width:102px" %)208~223|(% style="width:185px" %)HSX1203.0~HSX1203.15|(% style="width:191px" %)HSX1211.0~HSX1211.15 | ||
1473 | |(% style="width:102px" %)224~239|(% style="width:185px" %)HSX1204.0~HSX1204.15|(% style="width:191px" %)HSX1212.0~HSX1212.15 | ||
1474 | |(% style="width:102px" %)240~255|(% style="width:185px" %)HSX1205.0~HSX1205.15|(% style="width:191px" %)HSX1213.0~HSX1213.15 | ||
1475 | |(% colspan="1" rowspan="16" style="width:135px" %)5|(% style="width:102px" %)0~15|(% style="width:185px" %)HSX614.0~HSX614.15|(% style="width:191px" %)HSX622.0~HSX622.15 | ||
1476 | |(% style="width:102px" %)16~31|(% style="width:185px" %)HSX615.0~HSX615.15|(% style="width:191px" %)HSX623.0~HSX623.15 | ||
1477 | |(% style="width:102px" %)32~47|(% style="width:185px" %)HSX616.0~HSX616.15|(% style="width:191px" %)HSX624.0~HSX624.15 | ||
1478 | |(% style="width:102px" %)48~63|(% style="width:185px" %)HSX617.0~HSX617.15|(% style="width:191px" %)HSX625.0~HSX625.15 | ||
1479 | |(% style="width:102px" %)64~79|(% style="width:185px" %)HSX618.0~HSX618.15|(% style="width:191px" %)HSX626.0~HSX626.15 | ||
1480 | |(% style="width:102px" %)80~95|(% style="width:185px" %)HSX619.0~HSX619.15|(% style="width:191px" %)HSX627.0~HSX627.15 | ||
1481 | |(% style="width:102px" %)96~111|(% style="width:185px" %)HSX620.0~HSX620.15|(% style="width:191px" %)HSX628.0~HSX628.15 | ||
1482 | |(% style="width:102px" %)112~127|(% style="width:185px" %)HSX621.0~HSX621.15|(% style="width:191px" %)HSX629.0~HSX629.15 | ||
1483 | |(% style="width:102px" %)128~143|(% style="width:185px" %)HSX1214.0~HSX1214.15|(% style="width:191px" %)HSX1222.0~HSX1222.15 | ||
1484 | |(% style="width:102px" %)144~159|(% style="width:185px" %)HSX1215.0~HSX1215.15|(% style="width:191px" %)HSX1223.0~HSX1223.15 | ||
1485 | |(% style="width:102px" %)160~175|(% style="width:185px" %)HSX1216.0~HSX1216.15|(% style="width:191px" %)HSX1224.0~HSX1224.15 | ||
1486 | |(% style="width:102px" %)176~191|(% style="width:185px" %)HSX1217.0~HSX1217.15|(% style="width:191px" %)HSX1225.0~HSX1225.15 | ||
1487 | |(% style="width:102px" %)192~207|(% style="width:185px" %)HSX1218.0~HSX1218.15|(% style="width:191px" %)HSX1226.0~HSX1226.15 | ||
1488 | |(% style="width:102px" %)208~223|(% style="width:185px" %)HSX1219.0~HSX1219.15|(% style="width:191px" %)HSX1227.0~HSX1227.15 | ||
1489 | |(% style="width:102px" %)224~239|(% style="width:185px" %)HSX1220.0~HSX1220.15|(% style="width:191px" %)HSX1228.0~HSX1228.15 | ||
1490 | |(% style="width:102px" %)240~255|(% style="width:185px" %)HSX1221.0~HSX1221.15|(% style="width:191px" %)HSX1229.0~HSX1229.15 | ||
1491 | |(% colspan="1" rowspan="16" style="width:135px" %)6|(% style="width:102px" %)0~15|(% style="width:185px" %)HSX630.0~HSX630.15|(% style="width:191px" %)HSX638.0~HSX638.15 | ||
1492 | |(% style="width:102px" %)16~31|(% style="width:185px" %)HSX631.0~HSX631.15|(% style="width:191px" %)HSX639.0~HSX639.15 | ||
1493 | |(% style="width:102px" %)32~47|(% style="width:185px" %)HSX632.0~HSX632.15|(% style="width:191px" %)HSX640.0~HSX640.15 | ||
1494 | |(% style="width:102px" %)48~63|(% style="width:185px" %)HSX633.0~HSX633.15|(% style="width:191px" %)HSX641.0~HSX641.15 | ||
1495 | |(% style="width:102px" %)64~79|(% style="width:185px" %)HSX634.0~HSX634.15|(% style="width:191px" %)HSX642.0~HSX642.15 | ||
1496 | |(% style="width:102px" %)80~95|(% style="width:185px" %)HSX635.0~HSX635.15|(% style="width:191px" %)HSX643.0~HSX643.15 | ||
1497 | |(% style="width:102px" %)96~111|(% style="width:185px" %)HSX636.0~HSX636.15|(% style="width:191px" %)HSX644.0~HSX644.15 | ||
1498 | |(% style="width:102px" %)112~127|(% style="width:185px" %)HSX637.0~HSX637.15|(% style="width:191px" %)HSX645.0~HSX645.15 | ||
1499 | |(% style="width:102px" %)128~143|(% style="width:185px" %)HSX1230.0~HSX1230.15|(% style="width:191px" %)HSX1238.0~HSX1238.15 | ||
1500 | |(% style="width:102px" %)144~159|(% style="width:185px" %)HSX1231.0~HSX1231.15|(% style="width:191px" %)HSX1239.0~HSX1239.15 | ||
1501 | |(% style="width:102px" %)160~175|(% style="width:185px" %)HSX1232.0~HSX1232.15|(% style="width:191px" %)HSX1240.0~HSX1240.15 | ||
1502 | |(% style="width:102px" %)176~191|(% style="width:185px" %)HSX1233.0~HSX1233.15|(% style="width:191px" %)HSX1241.0~HSX1241.15 | ||
1503 | |(% style="width:102px" %)192~207|(% style="width:185px" %)HSX1234.0~HSX1234.15|(% style="width:191px" %)HSX1242.0~HSX1242.15 | ||
1504 | |(% style="width:102px" %)208~223|(% style="width:185px" %)HSX1235.0~HSX1235.15|(% style="width:191px" %)HSX1243.0~HSX1243.15 | ||
1505 | |(% style="width:102px" %)224~239|(% style="width:185px" %)HSX1236.0~HSX1236.15|(% style="width:191px" %)HSX1244.0~HSX1244.15 | ||
1506 | |(% style="width:102px" %)240~255|(% style="width:185px" %)HSX1237.0~HSX1237.15|(% style="width:191px" %)HSX1245.0~HSX1245.15 | ||
1507 | |(% colspan="1" rowspan="16" style="width:135px" %)7|(% style="width:102px" %)0~15|(% style="width:185px" %)HSX646.0~HSX646.15|(% style="width:191px" %)HSX654.0~HSX654.15 | ||
1508 | |(% style="width:102px" %)16~31|(% style="width:185px" %)HSX647.0~HSX647.15|(% style="width:191px" %)HSX655.0~HSX655.15 | ||
1509 | |(% style="width:102px" %)32~47|(% style="width:185px" %)HSX648.0~HSX648.15|(% style="width:191px" %)HSX656.0~HSX656.15 | ||
1510 | |(% style="width:102px" %)48~63|(% style="width:185px" %)HSX649.0~HSX649.15|(% style="width:191px" %)HSX657.0~HSX657.15 | ||
1511 | |(% style="width:102px" %)64~79|(% style="width:185px" %)HSX650.0~HSX650.15|(% style="width:191px" %)HSX658.0~HSX658.15 | ||
1512 | |(% style="width:102px" %)80~95|(% style="width:185px" %)HSX651.0~HSX651.15|(% style="width:191px" %)HSX659.0~HSX659.15 | ||
1513 | |(% style="width:102px" %)96~111|(% style="width:185px" %)HSX652.0~HSX652.15|(% style="width:191px" %)HSX660.0~HSX660.15 | ||
1514 | |(% style="width:102px" %)112~127|(% style="width:185px" %)HSX653.0~HSX653.15|(% style="width:191px" %)HSX661.0~HSX661.15 | ||
1515 | |(% style="width:102px" %)128~143|(% style="width:185px" %)HSX1246.0~HSX1246.15|(% style="width:191px" %)HSX1254.0~HSX1254.15 | ||
1516 | |(% style="width:102px" %)144~159|(% style="width:185px" %)HSX1247.0~HSX1247.15|(% style="width:191px" %)HSX1255.0~HSX1255.15 | ||
1517 | |(% style="width:102px" %)160~175|(% style="width:185px" %)HSX1248.0~HSX1248.15|(% style="width:191px" %)HSX1256.0~HSX1256.15 | ||
1518 | |(% style="width:102px" %)176~191|(% style="width:185px" %)HSX1249.0~HSX1249.15|(% style="width:191px" %)HSX1257.0~HSX1257.15 | ||
1519 | |(% style="width:102px" %)192~207|(% style="width:185px" %)HSX1250.0~HSX1250.15|(% style="width:191px" %)HSX1258.0~HSX1258.15 | ||
1520 | |(% style="width:102px" %)208~223|(% style="width:185px" %)HSX1251.0~HSX1251.15|(% style="width:191px" %)HSX1259.0~HSX1259.15 | ||
1521 | |(% style="width:102px" %)224~239|(% style="width:185px" %)HSX1252.0~HSX1252.15|(% style="width:191px" %)HSX1260.0~HSX1260.15 | ||
1522 | |(% style="width:102px" %)240~255|(% style="width:185px" %)HSX1253.0~HSX1253.15|(% style="width:191px" %)HSX1261.0~HSX1261.15 | ||
1523 | |(% colspan="1" rowspan="16" style="width:135px" %)8|(% style="width:102px" %)0~15|(% style="width:185px" %)HSX662.0~HSX662.15|(% style="width:191px" %)HSX670.0~HSX670.15 | ||
1524 | |(% style="width:102px" %)16~31|(% style="width:185px" %)HSX663.0~HSX663.15|(% style="width:191px" %)HSX671.0~HSX671.15 | ||
1525 | |(% style="width:102px" %)32~47|(% style="width:185px" %)HSX664.0~HSX664.15|(% style="width:191px" %)HSX672.0~HSX672.15 | ||
1526 | |(% style="width:102px" %)48~63|(% style="width:185px" %)HSX665.0~HSX665.15|(% style="width:191px" %)HSX673.0~HSX673.15 | ||
1527 | |(% style="width:102px" %)64~79|(% style="width:185px" %)HSX666.0~HSX666.15|(% style="width:191px" %)HSX674.0~HSX674.15 | ||
1528 | |(% style="width:102px" %)80~95|(% style="width:185px" %)HSX667.0~HSX667.15|(% style="width:191px" %)HSX675.0~HSX675.15 | ||
1529 | |(% style="width:102px" %)96~111|(% style="width:185px" %)HSX668.0~HSX668.15|(% style="width:191px" %)HSX676.0~HSX676.15 | ||
1530 | |(% style="width:102px" %)112~127|(% style="width:185px" %)HSX669.0~HSX669.15|(% style="width:191px" %)HSX677.0~HSX677.15 | ||
1531 | |(% style="width:102px" %)128~143|(% style="width:185px" %)HSX1262.0~HSX1262.15|(% style="width:191px" %)HSX1270.0~HSX1270.15 | ||
1532 | |(% style="width:102px" %)144~159|(% style="width:185px" %)HSX1263.0~HSX1263.15|(% style="width:191px" %)HSX1271.0~HSX1271.15 | ||
1533 | |(% style="width:102px" %)160~175|(% style="width:185px" %)HSX1264.0~HSX1264.15|(% style="width:191px" %)HSX1272.0~HSX1272.15 | ||
1534 | |(% style="width:102px" %)176~191|(% style="width:185px" %)HSX1265.0~HSX1265.15|(% style="width:191px" %)HSX1273.0~HSX1273.15 | ||
1535 | |(% style="width:102px" %)192~207|(% style="width:185px" %)HSX1266.0~HSX1266.15|(% style="width:191px" %)HSX1274.0~HSX1274.15 | ||
1536 | |(% style="width:102px" %)208~223|(% style="width:185px" %)HSX1267.0~HSX1267.15|(% style="width:191px" %)HSX1275.0~HSX1275.15 | ||
1537 | |(% style="width:102px" %)224~239|(% style="width:185px" %)HSX1268.0~HSX1268.15|(% style="width:191px" %)HSX1276.0~HSX1276.15 | ||
1538 | |(% style="width:102px" %)240~255|(% style="width:185px" %)HSX1269.0~HSX1269.15|(% style="width:191px" %)HSX1277.0~HSX1277.15 | ||
1539 | |(% rowspan="4" style="width:135px" %)9|(% style="width:102px" %)0~~15|(% style="width:185px" %)HSX678.0~~678.15|(% style="width:191px" %)HSX686.0~~686.15 | ||
1540 | |(% style="width:102px" %)16~~31|(% style="width:185px" %)HSX679.0~~679.15|(% style="width:191px" %)HSX687.0~~687.15 | ||
1541 | |(% style="width:102px" %)32~~47|(% style="width:185px" %)HSX680.0~~680.15|(% style="width:191px" %)HSX688.0~~688.15 | ||
1542 | |(% style="width:102px" %)48~~63|(% style="width:185px" %)HSX681.0~~681.15|(% style="width:191px" %)HSX689.0~~689.15 | ||
1543 | |(% rowspan="4" style="width:135px" %)10|(% style="width:102px" %)0~~15|(% style="width:185px" %)HSX694.0~~694.15|(% style="width:191px" %)HSX702.0~~702.15 | ||
1544 | |(% style="width:102px" %)16~~31|(% style="width:185px" %)HSX695.0~~695.15|(% style="width:191px" %)HSX703.0~~703.15 | ||
1545 | |(% style="width:102px" %)32~~47|(% style="width:185px" %)HSX696.0~~696.15|(% style="width:191px" %)HSX704.0~~704.15 | ||
1546 | |(% style="width:102px" %)48~~63|(% style="width:185px" %)HSX697.0~~697.15|(% style="width:191px" %)HSX705.0~~705.15 | ||
1547 | |(% rowspan="4" style="width:135px" %)11|(% style="width:102px" %)0~~15|(% style="width:185px" %)HSX710.0~~710.15|(% style="width:191px" %)HSX718.0~~718.15 | ||
1548 | |(% style="width:102px" %)16~~31|(% style="width:185px" %)HSX711.0~~711.15|(% style="width:191px" %)HSX719.0~~719.15 | ||
1549 | |(% style="width:102px" %)32~~47|(% style="width:185px" %)HSX712.0~~712.15|(% style="width:191px" %)HSX720.0~~720.15 | ||
1550 | |(% style="width:102px" %)48~~63|(% style="width:185px" %)HSX713.0~~713.15|(% style="width:191px" %)HSX721.0~~721.15 | ||
1551 | |(% rowspan="4" style="width:135px" %)12|(% style="width:102px" %)0~~15|(% style="width:185px" %)HSX726.0~~726.15|(% style="width:191px" %)HSX734.0~~734.15 | ||
1552 | |(% style="width:102px" %)16~~31|(% style="width:185px" %)HSX727.0~~727.15|(% style="width:191px" %)HSX735.0~~735.15 | ||
1553 | |(% style="width:102px" %)32~~47|(% style="width:185px" %)HSX728.0~~728.15|(% style="width:191px" %)HSX736.0~~736.15 | ||
1554 | |(% style="width:102px" %)48~~63|(% style="width:185px" %)HSX729.0~~729.15|(% style="width:191px" %)HSX737.0~~737.15 | ||
1555 | |(% rowspan="4" style="width:135px" %)13|(% style="width:102px" %)0~~15|(% style="width:185px" %)HSX742.0~~742.15|(% style="width:191px" %)HSX750.0~~750.15 | ||
1556 | |(% style="width:102px" %)16~~31|(% style="width:185px" %)HSX743.0~~743.15|(% style="width:191px" %)HSX751.0~~751.15 | ||
1557 | |(% style="width:102px" %)32~~47|(% style="width:185px" %)HSX744.0~~744.15|(% style="width:191px" %)HSX752.0~~752.15 | ||
1558 | |(% style="width:102px" %)48~~63|(% style="width:185px" %)HSX745.0~~745.15|(% style="width:191px" %)HSX753.0~~753.15 | ||
1559 | |(% rowspan="4" style="width:135px" %)14|(% style="width:102px" %)0~~15|(% style="width:185px" %)HSX758.0~~758.15|(% style="width:191px" %)HSX766.0~~766.15 | ||
1560 | |(% style="width:102px" %)16~~31|(% style="width:185px" %)HSX759.0~~759.15|(% style="width:191px" %)HSX767.0~~767.15 | ||
1561 | |(% style="width:102px" %)32~~47|(% style="width:185px" %)HSX760.0~~760.15|(% style="width:191px" %)HSX768.0~~768.15 | ||
1562 | |(% style="width:102px" %)48~~63|(% style="width:185px" %)HSX761.0~~761.15|(% style="width:191px" %)HSX769.0~~769.15 | ||
1563 | |(% rowspan="4" style="width:135px" %)15|(% style="width:102px" %)0~~15|(% style="width:185px" %)HSX774.0~~774.15|(% style="width:191px" %)HSX782.0~~782.15 | ||
1564 | |(% style="width:102px" %)16~~31|(% style="width:185px" %)HSX775.0~~775.15|(% style="width:191px" %)HSX783.0~~783.15 | ||
1565 | |(% style="width:102px" %)32~~47|(% style="width:185px" %)HSX776.0~~776.15|(% style="width:191px" %)HSX784.0~~784.15 | ||
1566 | |(% style="width:102px" %)48~~63|(% style="width:185px" %)HSX777.0~~777.15|(% style="width:191px" %)HSX785.0~~785.15 | ||
1567 | |(% rowspan="4" style="width:135px" %)16|(% style="width:102px" %)0~~15|(% style="width:185px" %)HSX790.0~~790.15|(% style="width:191px" %)HSX798.0~~798.15 | ||
1568 | |(% style="width:102px" %)16~~31|(% style="width:185px" %)HSX791.0~~791.15|(% style="width:191px" %)HSX799.0~~799.15 | ||
1569 | |(% style="width:102px" %)32~~47|(% style="width:185px" %)HSX792.0~~792.15|(% style="width:191px" %)HSX800.0~~800.15 | ||
1570 | |(% style="width:102px" %)48~~63|(% style="width:185px" %)HSX793.0~~793.15|(% style="width:191px" %)HSX801.0~~801.15 |