Wiki source code of 08 Macro Script

Version 8.1 by Stone Wu on 2022/08/02 14:25

Show last authors
1 This chapter provides information about scripts in PIStudio.
2
3 = **Script type** =
4
5 Script is applied to realize complex control functions. HMI compile software provide powerful function, simple operation, reliable script system, the features of script are list as follow:
6
7 Similar to BASIC grammatical structure;
8
9 * BASIC work as the first computer language for the general public, it is easy and efficient to use.
10
11 Support all of program logic control structures;
12
13 * Software script supports three logic control structures: order, condition, loops. It could realize complexity procedures.
14
15 Powerful function; Functions of script are divided into two types: system and custom function.
16
17 * System function: the functions that system has been predefined for users.
18 * Custom function: users could define a function and apply to all scripts.
19
20 Support variety of data format;
21
22 * Script supports integer, floating, BCD code, byte, string and etc.
23
24 **Scripts Running Method**
25
26 1. **Background Script:** Run independently during start project, screen updates have no influence and valid of all scripts.
27 1. **Screen Script:** Only run under the designated screen. Screen script start running until screen is closed or switched.
28
29 And both screen and background have four modes for script
30
31 (% class="table-bordered" %)
32 |=**Property**|=**Description**
33 |Initialize|The script would be executed once during loading project.
34 |Close|The script would be run once during closing HMI project.
35 |Timing|The script would run under certain conditions after the HMI is started, until the condition ends.
36 |Bit trigger|Script would be repeat executed when meet the condition of bit trigger.
37
38 == Initialize ==
39
40 Initialize script divided into screen initialize script and background initialize script. Screen initialize script runs once during the initialization of screen; background initialize script runs during the loading of project.
41
42 **Operating procedures**
43
44 Click "Background script" in project manager to enter script editor screen, or click "Screen script" in right click menu of screen to enter script editor screen;
45
46 (% style="text-align:center" %)
47 [[image:9.Scripts_html_96fb2991c0580f0f.gif||class="img-thumbnail"]]
48
49
50 (% style="text-align:center" %)
51 [[image:9.Scripts_html_3cebb8edeabbd760.gif||class="img-thumbnail"]]
52
53 Double click "initialize" to open script edit window, as below shows;
54
55 (% style="text-align:center" %)
56 [[image:9.Scripts_html_8d93c592be893fad.gif||class="img-thumbnail"]]
57
58 Enter scripts in edit window;
59
60 == Close ==
61
62 Close script divided into screen close script and background close script. Screen close script runs once During the destroying of screen because of closing or switching; background close script runs during the closing of project (such as restart HMI, into HMI setup).
63
64 **Operating procedures**
65
66 1. Click "Background script" in project manager to enter script editor screen, or click "Screen script" in right click menu of screen to enter script editor screen;
67 1. Double click "Close" to open script edit window;
68 1. Enter scripts in edit window;
69
70 == Timing ==
71
72 The script would run for a designated time interval.
73
74 **Operating procedures of creating one**
75
76 Click "Background script" in project manager to enter script editor screen, or click "Screen script" in right click menu of screen to enter script editor screen;
77
78 Double click "Timing", it would pop-up below setting window;
79
80 (% style="text-align:center" %)
81 [[image:9.Scripts_html_ca0d08792c31539e.gif||class="img-thumbnail"]]
82
83 (% class="table-bordered" %)
84 |=**Property**|=**Description**
85 |Cycle|Script runs at designated time interval, unit is 10 ms.
86 |Ok|Script created.
87 |Cancel|Cancel the current script setting.
88
89 Enter scripts in edit window;
90
91 **Operating procedures of editing**
92
93 1. Click "Background script" in project manager to enter script editor screen, or click "Screen script" in right click menu of screen to enter script editor screen;
94 1. Select "Timing", and click [[image:9.Scripts_html_d1db672f9b0fe31.gif]] to modify the script execution interval;
95 1. Double click selected "Timing" to open editing window;
96
97 **Operating procedures of deleting**
98
99 Click "Background script" in project manager to enter script editor screen, or click "Screen script" in right click menu of screen to enter script editor screen;
100
101 (% style="text-align:center" %)
102 [[image:9.Scripts_html_f7b5302abd3000e3.gif||class="img-thumbnail"]]
103
104 Select "Timing", and click  [[image:9.Scripts_html_75dc3ed25fdbc359.gif]] to change interval of script, it pops-up above window
105
106 Select "Yes" to execute operation or select "No" to cancel operation;
107
108 (% class="box infomessage" %)
109 (((
110 **✎Note:** The maximum number of timing script for each screen or background is 32.
111 )))
112
113 == Trigger bit ==
114
115 **Introduction**
116
117 Trigger control script is that software will check whether the designated bit meet trigger condition every 20ms. Script execute once condition is met until project closed.
118
119 **Operating procedures of creating one**
120
121 Click "Background script" in project manager to enter script editor screen, or click "Screen script" in right click menu of screen to enter script editor screen;
122
123 Double click "Trigger bit", it pops-up below setting window;
124
125 (% style="text-align:center" %)
126 [[image:9.Scripts_html_5aa68df50f16cfa2.gif||class="img-thumbnail"]]
127
128 * Bit address: It sets trigger address for script;
129 * Condition: detailed information as below shows;
130
131 (% class="table-bordered" %)
132 |=**Condition**|=**Description**
133 |TRUE|Script execute once the bit value is TRUE, detects the bit every per approximately 20 ms;
134 |FALSE|Script execute once the bit value is FALSE, detects the bit every per approximately 20 ms;
135 |Bit changed|Execute once the trigger bit switches state;
136 |Rising|Script execute once the bit value from FALSE to TRUE, detects the bit every per approximately 20 ms;
137 |Falling|Script execute once the bit value from TURE to FALSE, detects the bit every per approximately 20 ms;
138
139 Set trigger bit and condition, click "OK" to open editing window.
140
141 **Operating procedures of editing**
142
143 * Click "Background script" in project manager to enter script editor screen, or click "Screen script" in right click menu of screen to enter script editor screen;
144 * Select "Trigger script", and click [[image:9.Scripts_html_d1db672f9b0fe31.gif]] to change trigger bit and condition;
145 * Double click selected "Trigger script" to open editing window.
146
147 **Operating procedures of deleting**
148
149 * Click "Background script" in project manager to enter script editor screen, or click "Screen script" in right click menu of screen to enter script editor screen;
150 * Select "Trigger script", and click [[image:9.Scripts_html_75dc3ed25fdbc359.gif]] to change interval of script, it pops-up below window
151
152 (% style="text-align:center" %)
153 [[image:9.Scripts_html_f7b5302abd3000e3.gif||class="img-thumbnail"]]
154
155 * Select "Yes" to execute operation or select "No" to cancel operation;
156
157 (% class="box infomessage" %)
158 (((
159 **✎Note:** The maximum number of trigger script for each screen or background is 32.
160 )))
161
162 == Background function ==
163
164 Global function is a collection of codes;it can be called in any script.The method reference system function;
165
166 **Operating procedures**
167
168 Double click "Background function" in project manager;
169
170 (% style="text-align:center" %)
171 [[image:9.Scripts_html_6240f0610ba63eff.gif||class="img-thumbnail"]]
172
173 Set parameters;
174
175 (% style="text-align:center" %)
176 [[image:9.Scripts_html_d196f8a817949f3e.gif||class="img-thumbnail"]]
177
178 (% class="table-bordered" %)
179 |**Property**|**Description**
180 |Function name|Function name could not be the same as existing.
181 |Return type|None, string, integer, float.
182 |Parameter 1|The name of parameter 1.
183
184 **Operating procedures of editing**
185
186 * Click "Background function" in project manager to enter script editor screen;
187 * Select Function name, and click [[image:9.Scripts_html_c653b64bc266a016.gif]] to change parameters;
188 * Double click selected "Trigger script" to open editing window;
189
190 **Operating procedures of deleting**
191
192 * Click "Background function" in project manager to enter script editor screen;
193 * Select Function name, and click  [[image:9.Scripts_html_75dc3ed25fdbc359.gif]] to change interval of script, it pops-up below window
194
195 (% style="text-align:center" %)
196 [[image:9.Scripts_html_f7b5302abd3000e3.gif||class="img-thumbnail"]]
197
198 * Select "Yes" to execute operation or select "No" to cancel operation;
199
200 (% class="box infomessage" %)
201 (((
202 **✎Note:** The maximum parameters for each function are 4, and parameter name can't be unique;
203 )))
204
205 = Script usage =
206
207 Script can make project more convenient and flexible. Script is useful in realizing complex HMI function. If the script is used improperly, it may affect the efficiency of entire project. So pay attention to the follow issues:
208
209 * Do not use too much script loops, if the script loops that execute too many times; it might influence the efficiency of HMI.
210 * In the cycle scripts, avoid using external register, due to the relatively slow serial communication, frequent access to external registers may cause the execution of scripts severely reduced, even influence the screen respond efficiently. There is fine to use internal register.
211 * The maximum script length is 512 rows.
212
213 This section describes how to edit scripts and use some of the accompanying tools and features of the script editor.
214
215 == **Script access to d evice** ==
216
217 Software script supports an efficiency way to access the device address by using symbol @.
218
219 (% class="table-bordered" %)
220 |=**Writing**|=**Meaning**|=**Examples**
221 |@B_;@b_;|Access designated bit address|(((
222 @B_I0.0:access bit address I0.0
223
224 @b_HDX0.0:access bit address HDX0.0
225 )))
226 |@W_;@w_;|(% rowspan="2" %)(((
227 Access designated word address
228
229 HMI connect more than automatic control devices, "#"stands for choosing number before the symbol,":"stands for accessing the station number before symbol.
230
231 Access the first protocol without "#",access default station number1 without":".
232 )))|(((
233 @W_IW0:access word address IW0
234
235 @b_HDW0:access word address HDW0
236 )))
237 |@B_(the number of protocol connection)#(station number):address|(((
238 @B_2#2:I0.0:access the bit address I0.0, with the connection number 2 and station number 2;
239
240 @B_I0.0:access to bit address I0.0;
241 )))
242
243 The script can access with the device though: write and read.
244
245 **For example**
246
247 {{code language="lua"}}
248 If @B_HDX0.0 = 1 then 'read the value from address HDX0.0.
249
250 @B_HDX0.0 = 0 'write 0 to address HDX0.0
251
252 Else
253
254 @B_HDX0.0 = 1 'write 1 to address HDX0.0
255
256 Endif
257
258 @W_QW0 = @W_QW0 + 1 'read data from address QW0, add 1 to this value then write to address QW0
259 {{/code}}
260
261 == **Grammar checking** ==
262
263 **Operating procedures**
264
265 1. Select [[image:9.Scripts_html_2a530bda982b4281.gif]] from script tool bar;
266 1. System does not prompt grammar error if grammar is correct, or system will list all errors;
267 1. Check error information, and modify errors;
268
269 **Error information**
270
271 ~1. Identifier ~*~** contains invalid characters
272
273 2. Attempt to redeclare sub ~*~**
274
275 3. Attempt to redeclare function ~*~**
276
277 4. Attempt to use reserved word ~*~** as identifier
278
279 5. Attempt to use type ~*~** as identifier
280
281 6. Unexpected ')' while parsing arguments for function ~*~**
282
283 7. Could not parse expression (one of the arguments of function ~*~**)
284
285 8. Could not parse arguments of ~*~**
286
287 9. Too many arguments for function ~*~**
288
289 10. Not enough arguments for function ~*~**
290
291 ~11. '(' expected after sub name ~*~**
292
293 12. Unexpected '(' while parsing arguments for sub ~*~**
294
295 13. Could not parse expression (one of the arguments of sub ~*~**)
296
297 14. Could not parse arguments of ~*~**
298
299 15. Too many arguments for sub/function ~*~**
300
301 16. Not enough arguments for sub/function ~*~**
302
303 17. Could not parse expression
304
305 18. '(' expected after function name ~*~**
306
307 19. Unexpected use of sub ~*~** as a part of expression
308
309 20. Illegal statements preceding subs/functions declaration
310
311 21. Unexpected end of file while looking for 'endsub'
312
313 22. End of line expected after 'else'.
314
315 23. End of line expected after 'endif'.
316
317 24. End of line expected after 'next'.
318
319 25. End of line expected after 'wend'.
320
321 26. 'while', 'until' or end of line expected afte r'do'.
322
323 27. Could not parse expression after 'while'
324
325 28. Could not parse expression after 'until'
326
327 29. 'do' without 'loop'
328
329 30. Sub ~*~** contains invalid character'@'
330
331 31. Sub ~*~** already declared
332
333 32. Function ~*~** already declared
334
335 33. Sub name expected after 'sub'
336
337 34. Function name expected after 'function'
338
339 35. Variable name expected
340
341 36. Argument ~*~** contains invalid character '@'
342
343 37. 'integer', 'floating' or 'string' expected
344
345 38. ''',' or ')' expected
346
347 39. 'endsub' without 'sub'
348
349 40. 'end function' without 'function'
350
351 41. End of line expected after 'beep'
352
353 42. 'dim' unexpected here
354
355 43. Variable name expected after 'dim'
356
357 44. 'as' expected after variable name
358
359 45. 'integer' 'floating' or 'string' expected after 'as'
360
361 46. ',' or end of line expected after type in dim statement
362
363 47. Could not parse expression after 'while'
364
365 48. End of line expected after' while' condition
366
367 49. 'while' without 'wend'
368
369 50. End of line expected after 'wend'
370
371 51. 'wend' without 'while'
372
373 52. Variable name expected after' for'
374
375 53. '=' expected after variable name
376
377 54. Could not parse expression after 'for'
378
379 55. 'to' expected
380
381 56. Could not parse expression after 'to'
382
383 57. Could not parse expression after 'step'
384
385 58. End of line expected
386
387 59. 'for' without 'next'
388
389 60. End of line expected after 'next'
390
391 61. 'Next' without 'for'
392
393 62. Could not parse expression after'if'
394
395 63. 'then' expected
396
397 64. Unexpected end of file while looking for 'endif'
398
399 65. Unexpected end of file while looking for 'else' or 'endif'
400
401 66. 'else' without ‘if'
402
403 67. 'end if' without 'if'
404
405 68. Label name expected after 'goto'
406
407 69. Unexpected end of line while looking for ')' in function call
408
409 70. ',' expected
410
411 71. Missing ')'
412
413 72. Unexpected end of line in expression
414
415 73. Unexpected end of file in expression
416
417 = **Script function list** =
418
419 == Mathematical ==
420
421 (% class="table-bordered" %)
422 |=(% style="width: 181px;" %)**Function**|=(% style="width: 1308px;" %)**Introduction**
423 |Abs|(% style="width:1308px" %)Get absolute value
424 |Acos|(% style="width:1308px" %)Compute the inverse cosine value
425 |Asc|(% style="width:1308px" %)Return the first character of the string in ASCII value
426 |Asin|(% style="width:1308px" %)Calculate the arcsine value
427 |Atan|(% style="width:1308px" %)Return an arctangent value,the radian ranges -pi/2 to pi/2
428 |Atan2|(% style="width:1308px" %)Return the arctangent value
429 |Cos|(% style="width:1308px" %)Return a cosine value of an angle
430 |Exp|(% style="width:1308px" %)Returns the power value of e (natural logarithm)
431 |Hypot|(% style="width:1308px" %)Calculate the value of the hypotenuse of a right triangle
432 |Tan|(% style="width:1308px" %)Implement tan calculation to computing the value
433 |Sin|(% style="width:1308px" %)Implement sin calculation to computing the value
434 |Sqr|(% style="width:1308px" %)Assign a square root value
435 |SignedInt16|(% style="width:1308px" %)Assign the value to [val] from address A1 which is signed integer
436 |SignedInt32|(% style="width:1308px" %)Assign the value to [val] from address A1 which is signed even integer
437
438 == Data migration ==
439
440 (% class="table-bordered" %)
441 |=(% style="width: 178px;" %)**Function**|=(% style="width: 1311px;" %)**Introduction**
442 |BMOV|(% style="width:1311px" %)Copy data with a designated length from source address
443 |FILL|(% style="width:1311px" %)Write the same value to designated address constantly
444 |SetKeyMap|(% style="width:1311px" %)The key values of the keyboard are mapped so that multiple keyboard buttons perform the same function
445
446 == Process control ==
447
448 (% class="table-bordered" %)
449 |=(% style="width: 181px;" %)**Function**|=(% style="width: 1308px;" %)**Introduction**
450 |(% style="width:181px" %)GOTO|(% style="width:1308px" %)Go to the designated row unconditionally in a function body
451 |(% style="width:181px" %)FOR|(% style="width:1308px" %)Execute a command repeatedly for designated times
452 |(% style="width:181px" %)END|(% style="width:1308px" %)End the execution of script
453 |(% style="width:181px" %)while|(% style="width:1308px" %)If the condition is true, then all the commands before Wend in the statement will be executed and then recheck the condition, if the condition is false, the command after Wend will be executed
454
455 == Data conversion ==
456
457 (% class="table-bordered" %)
458 |=(% style="width: 182px;" %)**Function**|=(% style="width: 1307px;" %)**Introduction**
459 |(% style="width:182px" %)A2H|(% style="width:1307px" %)Convert string A1 to hexadecimal number
460 |(% style="width:182px" %)Asfloating|(% style="width:1307px" %)Convert parameter to a float
461 |(% style="width:182px" %)AsInteger|(% style="width:1307px" %)Convert parameter to a integer
462 |(% style="width:182px" %)AsString|(% style="width:1307px" %)Convert parameter to a string
463 |(% style="width:182px" %)B2W|(% style="width:1307px" %)Convert an array
464 |(% style="width:182px" %)BCD|(% style="width:1307px" %)Convert binary to BCD, save the result as return value
465 |(% style="width:182px" %)BIN|(% style="width:1307px" %)Convert BCDto binary, save the result in return value
466 |(% style="width:182px" %)Chr|(% style="width:1307px" %)Convert integer parameter into correspond ASCII character,return the character string
467 |(% style="width:182px" %)D2F|(% style="width:1307px" %)Convert the 32 bit integer format data to float then output the result
468 |(% style="width:182px" %)D2Float|(% style="width:1307px" %)Convert the designated value to floating then assign to variable
469 |(% style="width:182px" %)D2Int|(% style="width:1307px" %)Output the 32-bit integer in the form of integer
470 |(% style="width:182px" %)DegToRad|(% style="width:1307px" %)Convert the angle into correspond radian, and display
471 |(% style="width:182px" %)F2D|(% style="width:1307px" %)Convert a 32 bit floating to integer format, and then output the result
472 |(% style="width:182px" %)F2S|(% style="width:1307px" %)Output a format of floating that in the type of string
473 |(% style="width:182px" %)Float2D|(% style="width:1307px" %)Copy floating value to the address
474 |(% style="width:182px" %)H2A|(% style="width:1307px" %)Convert a binary(16 bit) to hexadecimals(4 bit) of ASCII
475 |(% style="width:182px" %)Int2D|(% style="width:1307px" %)Write the 32-bit integer into the specified address
476 |(% style="width:182px" %)LCase|(% style="width:1307px" %)Convert all parameters to lowercase strings
477 |(% style="width:182px" %)MAX|(% style="width:1307px" %)Compare the value of A2 and A3, assign the greater number to A1
478 |(% style="width:182px" %)MIN|(% style="width:1307px" %)Compare the value of A2 and A3, assign the smaller number to A1
479 |(% style="width:182px" %)RadToDeg|(% style="width:1307px" %)Convert radiant value to degree
480 |(% style="width:182px" %)S2F|(% style="width:1307px" %)Convert string to floating in the specified format
481 |(% style="width:182px" %)SWAP|(% style="width:1307px" %)Exchange the high and low bytes of the parameter
482 |(% style="width:182px" %)W2B|(% style="width:1307px" %)Combine the high byte of the value of two consecutive addresses into a new value
483 |(% style="width:182px" %)W2D|(% style="width:1307px" %)Convert the unsigned Word to unsigned Dword and save the result
484 |(% style="width:182px" %)W2F|(% style="width:1307px" %)Convert a 16bit integer to a 32bit floating, and then save to the next word address
485 |(% style="width:182px" %)W2S|(% style="width:1307px" %)Convert integer word text as S1 format, and then save
486
487 == String processing ==
488
489 (% class="table-bordered" %)
490 |=(% style="width: 180px;" %)**Function**|=(% style="width: 1309px;" %)**Introduction**
491 |(% style="width:180px" %)A2I|(% style="width:1309px" %)A string of length is intercepted from A1 and converted to a single/double word integer, and then this integer is assigned to A2
492 |(% style="width:180px" %)InStr|(% style="width:1309px" %)Return the position of str1 in str2
493 |(% style="width:180px" %)LEFT|(% style="width:1309px" %)Return a string of the specified length from the left side of parameter
494 |(% style="width:180px" %)Len|(% style="width:1309px" %)Return the string length
495 |(% style="width:180px" %)LTrim|(% style="width:1309px" %)Remove the left empty part of the string and return
496 |(% style="width:180px" %)Mid|(% style="width:1309px" %)Returns a string contain a specified characters length from a string
497 |(% style="width:180px" %)Right|(% style="width:1309px" %)Return a string of the specified length from the right side of parameter
498 |(% style="width:180px" %)RTrim|(% style="width:1309px" %)Clear the empty part on the right side of string [str], then assign the empty part to val
499 |(% style="width:180px" %)Trim|(% style="width:1309px" %)Return a value of an address without empty string next to it
500 |(% style="width:180px" %)UCase|(% style="width:1309px" %)Capitalize the string data, and then assign the value to val
501
502 == Fixed constant ==
503
504 (% class="table-bordered" %)
505 |=**Function**|=**Introduction**
506 |Pi|pi = 3.14159265358979321
507 |True|TRUE = 1
508 |False|FALSE = 0
509 |Operator|Operator in scripts edit window
510 |Variable|A variable is any factor, trait, or condition that can exist in differing amounts or types
511
512 == **Bit control** ==
513
514 (% class="table-bordered" %)
515 |=(% style="width: 178px;" %)**Function**|=(% style="width: 1311px;" %)**Introduction**
516 |(% style="width:178px" %)ClrB|(% style="width:1311px" %)Set the bit of A1 as FALSE
517 |(% style="width:178px" %)InvB|(% style="width:1311px" %)The state of inverse bit
518 |(% style="width:178px" %)SetB|(% style="width:1311px" %)Set the bit A1 ON
519
520 == File operation ==
521
522 (% class="table-bordered" %)
523 |(% style="width:177px" %)**Function**|(% style="width:1312px" %)**Introduction**
524 |(% style="width:177px" %)HmiRegOperator|(% style="width:1312px" %)Data of Upload/ Download address
525 |(% style="width:177px" %)CopyFile|(% style="width:1312px" %)Copy the A3 file from the A1 directory to the A2 directory according to the format of A4 and A5
526 |(% style="width:177px" %)DbToCsvFile|(% style="width:1312px" %)Convert db (database file) file to csv format and export it
527 |(% style="width:177px" %)FileCmpDir|(% style="width:1312px" %)The filename input and the filename in the folder whether is duplicate or not
528 |(% style="width:177px" %)MyDeleteFile|(% style="width:1312px" %)Delete the designated file
529 |(% style="width:177px" %)WriteWordToFile|(% style="width:1312px" %)Write data with designated length to designated file
530 |(% style="width:177px" %)ReadWordFormFile|(% style="width:1312px" %)Read data with designated length from designated file
531
532 == Comparison ==
533
534 (% class="table-bordered" %)
535 |(% colspan="2" style="width:389.5px" %)**Function**|(% style="width:691.5px" %)**Introduction**
536 |(% rowspan="8" style="width:255.281px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__IF... THEN GOTO..__(%%).|(% style="width:148.719px" %)IF=|(% rowspan="18" style="width:691.5px" %)Execute correspond instruction when fulfill condition. Condition will be tested during executing if. it will execute the next instruction block of then, if condition is true. Otherwise, execute the later of else. Complete the two instructions, next execute the later of End if.
537 |(% style="width:148.719px" %)IF<>
538 |(% style="width:148.719px" %)IF>
539 |(% style="width:148.719px" %)IF>=
540 |(% style="width:148.719px" %)IF<
541 |(% style="width:148.719px" %)IF<=
542 |(% style="width:148.719px" %)IF AND=0
543 |(% style="width:148.719px" %)IF AND<>0
544 |(% rowspan="8" style="width:255.281px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__IF__|(% style="width:148.719px" %)IF=
545 |(% style="width:148.719px" %)IF<>
546 |(% style="width:148.719px" %)IF>
547 |(% style="width:148.719px" %)IF>=
548 |(% style="width:148.719px" %)IF<
549 |(% style="width:148.719px" %)IF<=
550 |(% style="width:148.719px" %)IF AND=0
551 |(% style="width:148.719px" %)IF AND<>0
552 |(% colspan="2" style="width:389.5px" %)ELSE
553 |(% colspan="2" style="width:389.5px" %)ENDIF
554
555 == **Applicatio**n** type** ==
556
557 (% class="table-bordered" %)
558 |=(% style="width: 181px;" %)**Function**|=(% style="width: 1308px;" %)**Introduction**
559 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__AddrStringCompare__|(% style="width:1308px" %)Compare the designated length of two character strings
560 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__beep__|(% style="width:1308px" %)Enable buzzer
561 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__IsFloating__|(% style="width:1308px" %)whether a parameter is floating, return TRUE if it is floating, otherwise return FALSE
562 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__IsInteger__|(% style="width:1308px" %)whether a parameter(A1) is integer, return TRUE if the parameter is integer, otherwise return FALSE
563 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__Log__|(% style="width:1308px" %)Log function: return the natural logarithm of the value
564 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__Log10__|(% style="width:1308px" %)Log function: return the natural logarithm of the value
565 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__MSeconds__|(% style="width:1308px" %)Display the current microseconds of system
566 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__NewNoAddr__|(% style="width:1308px" %)At the basic of source address A2,offset designated length,obtain a new address A1
567 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__NewStatAddr__|(% style="width:1308px" %)At the basic of source address A2,offset the designated length,to obtain a new station A1.
568 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__NStringCompare__|(% style="width:1308px" %)Compare whether the designated length of two strings is the same,return 1 to A1 if yes,otherwise return 0
569 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__Power__|(% style="width:1308px" %)The value of [expr2] to the power of [expr1] will be assigned to Var
570 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__Rand__|(% style="width:1308px" %)Generate a random number
571 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__ReadAddr__|(% style="width:1308px" %)Assign the value in the specified address to [word]
572 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__SleepA__|(% style="width:1308px" %)Wait time T(ms)
573 |(% style="width:181px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__WriteAddr__|(% style="width:1308px" %)Assign the value from A2 to address A1
574
575 == Others ==
576
577 (% class="table-bordered" %)
578 |=(% style="width: 182px;" %)**Function**|=(% style="width: 1307px;" %)**Introduction**
579 |(% style="width:182px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__Dim...as...__|(% style="width:1307px" %)Declare a variable
580 |(% style="width:182px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__do__|(% style="width:1307px" %)Condition determent instruction
581 |(% style="width:182px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__Function__|(% style="width:1307px" %)Differ from internal function, need to declare the name, parameter, code of the function
582 |(% style="width:182px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__Sub__|(% style="width:1307px" %)Declare the name, parameters and codes of the Sub (sub function)
583 |(% style="width:182px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__PrintText__|(% style="width:1307px" %)Output the contents to the printer for printing
584 |(% style="width:182px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__PI_GetTickCount__|(% style="width:1307px" %)Write the starting time in the set address as a 32-bit integer
585 |(% style="width:182px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__StAndFtChange__|(% style="width:1307px" %)Calculate the number of seconds from January 1, 1970 to the current time
586 |(% style="width:182px" %)(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__GetServerDelayInfo__|(% style="width:1307px" %)Convert string to hexadecimal number
587
588 = **Function description** =
589
590 == A2H ==
591
592 **Function**
593
594 Val = A2H(A1)
595
596 **Description**
597
598 Convert string in the specified address to a hexadecimal number;
599
600 **Parameters**
601
602 * **A1:** Source data, only convert the first four digits of string
603 * **Val:** The value is hexadecimal number.
604
605 **Example**
606
607 //{{code language="lua"}}@W_HDW20=A2H(@W_HDW10) ' convert the string of HDW10 to hex then save in HDW20.{{/code}}//
608
609 **Input:** @W_HDW10=255
610
611 **Result:** @W_HDW20=255
612
613 **✎Note:**
614
615 * A1 needs to be address (such as:@W_HDW000002).
616 * Only [0~~1], [a~~f] can be converted, others will be converted to 0
617
618 == A2I ==
619
620 **Function**
621
622 A2I (A1, A2, length, S)
623
624 **Description**
625
626 Intercept a string of the specified length from A1,convert it to a single/double word integer and assign this integer to A2.
627
628 **Parameters**
629
630 * **A1:** String to be intercepted
631 * **A2:** The final integer value
632 * **Length:** intercepts the length of the string
633 * **S:** Control single or double words.
634 ** S=0, indicating an integer single word; S=1, indicating an integer double word.
635
636 **Return value:** none
637
638 **Example**
639
640 {{code language="lua"}}
641 A2I("@W_HDW200","@W_HDW100",4,0) 'converts a string into a 16-bit (single word) decimal integer
642
643 A2I("@W_HDW600","@W_HDW500",4,1)' converts a string to a 32-bit (double word) decimal integer
644 {{/code}}
645
646 **Input: **@W_HDW200="12345", **Result:** @W_HDW100=1234
647
648 **Input: **@W_HDW600="12345", **Result:** @W_HDW500=1234
649
650 **✎Note:** A1 and A2 need to be address (such as:@W_HDW000002).
651
652 == **Abs** ==
653
654 **Function**
655
656 val = Abs(A1)
657
658 **Description**
659
660 The absolute value of A1.
661
662 **Parameters**
663
664 **A1: **the data of absolute value, need to be variable.
665
666 **Val: **it is absolute value that is address or variable.
667
668 **Example**
669
670 //Dim a as integer 'a is defined as integer//
671
672 //a = SignedInt16("@W_HDW0")'convert the data of @W_HDW0 into signed data.//
673
674 //@W_HDW1 = Abs(a) 'assign the returned absolute value to @W_HDW1//
675
676 **Input: **@W_HDW0=-6
677
678 **Result: **@W_HDW1=6
679
680 **✎Note:**
681
682 **SignedInt16** function is designed to convert unsigned to signed.
683
684 == **ACos** ==
685
686 **Function**
687
688 val = ACos(A1)
689
690 **Description**
691
692 To compute the inverse cosine value of A1.
693
694 **Parameters**
695
696 **A1: **floating value, can be an address or variable.
697
698 **Val: **return value is floating, can be an address or variable.
699
700 **Example**
701
702 //Dim a ,b as floating'define two float variable a,b//
703
704 //a = 0.5 'assign the designated value to a//
705
706 //b = ACos(a) 'the inverse cosine value of "a" is a radian which assign to variable b.//
707
708 //'to add the following sentence if needed to view the return value~://
709
710 //float2d("@W_HDW200", b)'float b written into HDW200.//
711
712 **Result:** @W_HDW200=1.047
713
714 **✎Note:**
715
716 Please call **RadToDeg** function to convert radian into angle.
717
718 == **AddrStringCompare** ==
719
720 **Function**
721
722 val = AddrStringCompare(A1, A2, length)
723
724 **Description**
725
726 It is designed to compare the designated length of two character strings. The string value is 1 when the two strings are the same.
727
728 **Parameters**
729
730 **A1, A2: **character string, need to be an address (such as:"@W_HDW000002")
731
732 **Length: **The length of character string.
733
734 **Val: **Return value, 0 or 1.
735
736 **Example**
737
738 //if AddrStringCompare("@W_HDW10","@W_HDW0",2)=1 then//
739
740 //'compare the character string of HDW10 and @W_HDW0 whether value are 1.//
741
742 //@W_HDW20=1 '@W_HDW20 display 1//
743
744 //else//
745
746 //@W_HDW20=0'@W_HDW20 display 0//
747
748 //Endif//
749
750 **Input: **@W_HDW10="1a2 ", @W_HDW0="1a2 ",
751
752 **Result:** @W_HDW20=1
753
754 **Input: **@W_HDW10="ab2 ", @W_HDW0="12a ",
755
756 **Result: **@W_HDW20=0
757
758 == **Asc** ==
759
760 **Function**
761
762 val = Asc(A1)
763
764 **Description**
765
766 Return the first character of the string in ASCII value.
767
768 **Parameters**
769
770 **A1:**character string, it can be an address (such as: @W_HDW000002)
771
772 **val:**return value,ASCII value,it could be an address or variable.
773
774 **Example**
775
776 //@W_HDW10 = Asc("A") 'return the ASCII value of A to HDW10//
777
778 //@W_HDW11 = Asc("a")'return the ASCII value of a to HDW11//
779
780 //@W_HDW12 = Asc("Apple") 'return the first character A of string Apple to HDW12//
781
782 //@W_HDW13 = Asc("123") 'return the first character ASCII value 1 of string 123 to HDW13.//
783
784 **Result: **@W_HDW10 = 65
785
786 @W_HDW11 = 97
787
788 @W_HDW12 = 65
789
790 @W_HDW13 = 49
791
792 == **AsFloating** ==
793
794 **Function**
795
796 val = AsFloating(A1)
797
798 **Description**
799
800 Convert parameter A1 to a float.
801
802 **Parameters**
803
804 A1: integer variable.
805
806 **val: **return float value, can be a variable or address.
807
808 **Example**
809
810 //Dim a as integer 'define a integer variable {a}.//
811
812 //a = @W_HDW10 'assign @W_HDW10 to a//
813
814 //b = AsFloating(a) 'convert integer a to float then assign to b.//
815
816 //b = b/1.2 'add as following sentence when need to view the return value~://
817
818 //Float 2D("@W_HDW11",b) 'float variable b written into HDW11.//
819
820 **Input: **@W_HDW10=24,
821
822 **Result: **@W_HDW11=20.00(set two decimals)
823
824 == **ASin** ==
825
826 **Function**
827
828 val = ASin(A1)
829
830 **Description**
831
832 Calculate the arcsine value of A1.
833
834 **Parameters**
835
836 **A1: **Float can be an address or variable.
837
838 **Val: **Return float value, can be an address or variable.
839
840 **Example**
841
842 //Dim a, b as floating'define two float variable a,b//
843
844 //a = 0.5'assign the designated value to a//
845
846 //b=ASin(a) 'calculate the arcsine value of a ,assign the radian to b.//
847
848 //'Add the following command if need to view the return value~://
849
850 //float2d ("@W_HDW200", b) 'float variable b written into HDW200//
851
852 **Result:**@W_HDW200=0.524
853
854 **✎Note:**
855
856 Pleasecall **RadToDeg** function to convert radian into angle.
857
858 == **AsInteger** ==
859
860 **Function**
861
862 val = AsInteger(A1)
863
864 **Description**
865
866 Convert parameter A1 to integer value.
867
868 **Parameters**
869
870 **A1: **floating need to be a variable.
871
872 **Val: **the value returned could can be a variable or address.
873
874 **Example**
875
876 //Dim a as floating 'define floating variable a//
877
878 //a = D2Float("@W_HDW0",a) 'use D2Float function to save the float date of HDW0 in a//
879
880 //b= AsInteger(a) 'convert the float a into integer, the return value assigned to b//
881
882 //@W_HDW10=b 'save b to HDW10//
883
884 **Input:** @W_HDW0=20.12,
885
886 **Result:** @W_HDW10=20
887
888 == **AsString** ==
889
890 **Function**
891
892 val = AsString(A1)
893
894 **Description**
895
896 Convert parameter A1 to a character string.
897
898 **Parameters**
899
900 A1: not string parameter, it can be a variable.
901
902 Val: return string value, variable or address.
903
904 **Example**
905
906 Script 1:
907
908 //a=123 'assign a value to a//
909
910 //b=234 'assign a value to b//
911
912 //c=AsString(a)+AsString(b) 'convert a and b to string then add up the two strings ,assign the result to c.//
913
914 //@W_HDW0=c 'assign c to HDW0//
915
916 //d=a+b 'plus a with b//
917
918 //@W_HDW100=d 'assign d to (HDW100)//
919
920 **Result: **@W_HDW0=123234
921
922 @W_HDW100=357
923
924 Script 2:
925
926 //W2S("@W_HDW200","@W_HDW300","02d")//
927
928 //W2S("@W_HDW210","@W_HDW400","02d")//
929
930 //W2S("@W_HDW220","@W_HDW500","02d")//
931
932 //@W_HDW0=AsString(@W_HDW300)+AsString(@W_HDW400)+AsString(@W_HDW500)//
933
934 **Input:**@W_HDW200=12,@W_HDW210=34,@W_HDW220=56
935
936 **Result :**@W_HDW300=12,@W_HDW400=34,@W_HDW500=56,@W_HDW0=123456
937
938 **✎Note:**
939
940 Ensure the data always is two words; otherwise occur error. reference the other chapter of W2S function
941
942 == **ATan** ==
943
944 **Function**
945
946 var = ATan(A1)
947
948 **Description**
949
950 Return an arctangent value,the radian ranges -pi/2 to pi/2.
951
952 **Parameters**
953
954 **A1:**Can be float, address or variable.
955
956 **Val:**radian of return value.
957
958 **Example**
959
960 //@W_HDW20= Atan (@W_HDW10)'save the arctangent value of (HDW10) to (HDW20)//
961
962 **Input: **@W_HDW10=1.000,@W_HDW20=0.785
963
964 **✎Note:**
965
966 Please call RadToDeg function convert radian to angle.
967
968 == **ATan2** ==
969
970 **Function**
971
972 val = ATan2(A1,A2)
973
974 **Description**
975
976 Return the arctangent value of A1/A2,radian range
977
978 **Parameters**
979
980 **A1, A2:** Address or variable.
981
982 **Val: **returned value is a radian, range -pi to pi.
983
984 **Notice: **ATan2 use sign of two parameters to define the quadrant of return value.
985
986 **Example**
987
988 //@W_HDW20= ATan2 (@W_HDW10,@W_HDW12)'save the arctangent value of (HDW10/HDW12) to (HDW20).//
989
990 **Input:**@W_HDW10=1.0,@W_HDW12=1.0,
991
992 **Result: **@W_HDW20=0.785
993
994 **✎Note:**
995
996 Please call **RadToDeg** function convert radian to angle.
997
998 == **B2W** ==
999
1000 **Function**
1001
1002 B2W(A1, A2, length)
1003
1004 **Description**
1005
1006 Convert an array (begins with A2, unit: byte, to another array (begins with A1, unit: word).
1007
1008 **Parameters**
1009
1010 **A1: **Saving address after converting
1011
1012 **A2: **Address of the value be converted 
1013
1014 **Length:** The length of conversion
1015
1016 **Return value:**None
1017
1018 **Example**
1019
1020 //B2W(@W_HDW100,@W_HDW10,2) 'convert (@W_HDW10) to the length of 2,save as the result that begins with @W_HDW100.//
1021
1022 **Input: **@W_HDW10=1A2B
1023
1024 **Result: **@W_HDW100=2B
1025
1026 @W_HDW101=1A
1027
1028 **✎Note:**
1029
1030 A1 and A2 need to be address(e.g.: @W_HDW000002);
1031
1032 Length could be address or variable;
1033
1034 This is a subprogram; it has no returned value.
1035
1036 == **BCD** ==
1037
1038 **Function**
1039
1040 val = BCD(A1)
1041
1042 **Description**
1043
1044 Convert A1(binary) to BCD, save the result as return value.
1045
1046 **Parameters**
1047
1048 **A1: **The binary be converted; it can be an address or variable.
1049
1050 **Val: **Return value, BCD code; it can be an address or variable.
1051
1052 **Example**
1053
1054 //@W_HDW20=BCD(@W_HDW10) 'convert HDW10 (binary) to BCD code, then save in (HDW20)//
1055
1056 **Input:** @W_HDW10=11111111(binary)
1057
1058 **Result:** @W_HDW20=255
1059
1060 **✎Note:**
1061
1062 Return value is a word; it hexadecimal corresponds to BCD code.
1063
1064 == **Beep** ==
1065
1066 **Function**
1067
1068 Beep()
1069
1070 **Description**
1071
1072 Enable buzzer
1073
1074 **Parameters**
1075
1076 None
1077
1078 **Example**
1079
1080 //if @B_HDX100.0=1 then 'beep when the bit switch HDX100.0 set ON//
1081
1082 //beep()//
1083
1084 //endif//
1085
1086 **Result: **HMI beep when bit switch HDX100.0 set ON.
1087
1088 == **BIN** ==
1089
1090 **Function**
1091
1092 Val = BIN(A1)
1093
1094 **Description**
1095
1096 Convert A1 (BCD) into binary, save the result in return value.
1097
1098 **Parameters**
1099
1100 **A1:** The BCD code is converted; it can be address or variable.
1101
1102 **Val:** Return binary value,it can be address or variable.
1103
1104 **Example**
1105
1106 //@W_HDW20=BIN(@W_HDW10) 'convert HDW10(BCD) to binary, save the result in (HDW20)//
1107
1108 **Input:** @W_HDW10=255
1109
1110 **Result:** @W_HDW20=11111111 (binary)
1111
1112 == **BMOV** ==
1113
1114 **Function**
1115
1116 BMOV(A1, A2,length)
1117
1118 **Description**
1119
1120 Copy data with a designated length from source address A2 to A1.
1121
1122 **Parameter**
1123
1124 **A1:** saving address;
1125
1126 **A2:** source address;
1127
1128 **length:** operating length;
1129
1130 **Example**
1131
1132 //@W_HDW20 = 20 'assign value to HDW20//
1133
1134 //@W_HDW21 = 21 'assign value to HDW21//
1135
1136 //@W_HDW22 = 22 'assign value to HDW22//
1137
1138 //BMOV(@W_HDW10,@W_HDW20,3) 'assign the word address of HDW20, HDW21, HDW22 to HDW10, HDW11, HDW12//
1139
1140 **Result:**
1141
1142 @W_HDW10 = 20
1143
1144 @W_HDW11 = 21
1145
1146 @W_HDW12 = 22
1147
1148 **✎Note:**
1149
1150 A1 and A2 need to be address
1151
1152 Length can be an integer variable or an address. When destAddr and srcAddr are PLC (external device) addresses, the length range is 1-2048, and the 2049th address would not be operated when the range is exceeded.
1153
1154 When destAddr and srcAddr are HMI addresses, the length range is 1-4096, and This function is invalid when out of range.
1155
1156 == **Chr** ==
1157
1158 **Function**
1159
1160 val = Chr(A1, A2, ...)
1161
1162 **Description**
1163
1164 Convert integer parameter into correspond ASCII character, return the character string.
1165
1166 **Parameters**
1167
1168 **A1, A2....:** converted integer; it can be an address or variable.
1169
1170 **Val: **returned value, can be an address or variable.
1171
1172 **Example**
1173
1174 //@W_HDW100=Chr(@W_HDW20, @W_HDW21, @W_HDW22, @W_HDW23, @W_HDW24)//
1175
1176 //'convert the value of(HDW20, HDW21 ,HDW22, HDW23, HDW24) to ASCII character, assign the value to (HDW100)//
1177
1178 **Input** 72,69,76,76,79 step by step according to HDW20, HDW21, HDW22, HDW23, HDW24,
1179
1180 **Result** returns HELLO to (@W_HDW100).
1181
1182 == **Clrb** ==
1183
1184 **Function**
1185
1186 ClrB(A1)
1187
1188 **Description**
1189
1190 Set the bit of A1 as FALSE (0).
1191
1192 **Parameters**
1193
1194 **A1:** System address(bit)
1195
1196 **✎Note:**
1197
1198 subprogram has no return value.
1199
1200 **Example**
1201
1202 //ClrB(@B_HDX100.0) 'assign 0 to (@B_HDX100.0)//
1203
1204 == **Constant** ==
1205
1206 **Description**
1207
1208 Script supported constant, users can use on script:
1209
1210 pi = 3.14159265358979321
1211
1212 TRUE = 1
1213
1214 FALSE = 0
1215
1216 **Example**
1217
1218 //Dim a as integer 'define integer a//
1219
1220 //a = RadToDeg(pi) 'convert radian pi to angle then assign to a,RadToDeg function is used to convert radian to angle.//
1221
1222 //@W_HDW11 = a 'assign a to (HDW11)//
1223
1224 **Result: **@W_HDW11=180
1225
1226 == **CopyFile** ==
1227
1228 **Function**
1229
1230 A6=CopyFile(A1,A2,A3,A4,A5)
1231
1232 **Description**
1233
1234 Copy the A3 file from the A1 directory to the A2 directory according to the format of A4 and A5, and write returned value status to A6.
1235
1236 **Parameters**
1237
1238 **A1: **the source path of the file to be copied.
1239
1240 **A2: **target path.
1241
1242 **A3:** the name of the file to be copied.
1243
1244 **A4: **copy type (0: copy file, 1: copy directory).
1245
1246 **A5: **Whether to overwrite the file with the same name when copying (0: Yes, 1: No).
1247
1248 **A6: **returned value.
1249
1250 0: copy failed
1251
1252 1: copy succeeded
1253
1254 2: Parameter error
1255
1256 3: U disk does not exist
1257
1258 4: SD card does not exist
1259
1260 5: Path error
1261
1262 **Example**
1263
1264 * Copy a single file:
1265
1266 //@W_HDW100 = " test.csv"//
1267
1268 //CopyFile("UDisk/Test","Flash/Test","test.csv",0,0) 'Copy the Test.csv file in the UDisk/Test directory to the Flash/Test directory.//
1269
1270 Can also be written as //CopyFile("UDisk/Test","Flash/Test",@W_HDW100,0,0)//
1271
1272 (2) Copy the entire directory file:
1273
1274 //CopyFile("UDisk/Test","Flash/Test","",1,0) ' Copy the files in the UDisk/Test//
1275
1276 //directory to the Flash/Test directory.//
1277
1278 **✎Note:**
1279
1280 * Both source and destination paths need to begin with UDisk or Flash or SDCard;
1281 * A1 and A2 could be string (requires double quotes) or variable, maximum character length 127 allowed in path;
1282 * A3 could be a string, such as: [FileName] (requires double quotes); or address, such as: @W_HDW100 (no need to add double quotes);
1283 * A4 and A5 could be values, addressesor variable;
1284 * A6 could be address or variable.
1285
1286 == **Cos** ==
1287
1288 **Function**
1289
1290 Val = Cos(A1)
1291
1292 **Description**
1293
1294 Return a cosine value of an angle.
1295
1296 **Parameters**
1297
1298 **A1: **a float radian of angle, it can be an address or variable.
1299
1300 **Val: **return float value, it can be an address or variable.
1301
1302 **Example**
1303
1304 //Dim a, b as floating 'define float a, b//
1305
1306 //b = pi/3 'convert the value of HDW11 to float and assign to 'b'.//
1307
1308 //a=Cos(b) 'return the cosine value of'b' and assign the result to 'a'.//
1309
1310 //'to add the following sentence if need to view the return value~://
1311
1312 //Float2D("@W_HDW20",a) 'the float value of a written into HDW13.//
1313
1314 **Result: **@W_HDW20=0.5
1315
1316 **✎Note:**
1317
1318 Please call **RadToDeg** function convert radian to angle.
1319
1320 == **D2F** ==
1321
1322 **Function**
1323
1324 D2F (A1, A2) or A1= D2F (A1, A2)
1325
1326 **Description**
1327
1328 Convert the 32-bit integer format data to float then output the result.
1329
1330 **Parameters**
1331
1332 **A1: **required data, begin with"@";
1333
1334 **A2: **source data, begin with"@";
1335
1336 **Example**
1337
1338 //D2F(@W_HDW2,@W_HDW0) 'convert the double word (HDW0) to float, save the result to (HDW2).//
1339
1340 //@W_HDW2=D2F(@W_HDW2,@W_HDW0) 'convert the double word (HDW0) to float, save the result to (HDW2).//
1341
1342 **Result: **HDW0=100, HDW2=100
1343
1344 == **D2Float** ==
1345
1346 **Function**
1347
1348 F= D2Float("A1",F)
1349
1350 **Description**
1351
1352 Convert the designated value to floating then assign to variable.
1353
1354 **Parameters**
1355
1356 **A1:** Source data;
1357
1358 **F:** User-defined floating variable
1359
1360 **Example**
1361
1362 //dim F as floating 'define F as floating//
1363
1364 //F=D2Float("@W_HDW10",F) 'assign the value of (HDW10) to F in floating//
1365
1366 //Float2D("@W_HDW12",F) 'copy the floating value of F to HDW12 register,use to display result.//
1367
1368 **Result: **HDW10=200,
1369
1370 HDW12=200.
1371
1372 **✎Note:**
1373
1374 A1 needs to be address;
1375
1376 == **D2Int** ==
1377
1378 **Function**
1379
1380 A2= D2Float("A1",A2)
1381
1382 **Description**
1383
1384 Output the 32-bit integer in the form of integer.
1385
1386 **Parameters**
1387
1388 **A1:** Source data can only be the HMI internal or external register starting with "@".
1389
1390 **A2: **Target data can only use theinteger variable defined by script.
1391
1392 **Example**
1393
1394 //dim var1 as integer 'define var1 as integer//
1395
1396 //var1=D2Int("@W_HDW0",var1) 'Read out the 32-bit integer in HDW0 and save the result in var1.//
1397
1398 //HDW0=9999999,//
1399
1400 **Result:** Var1=9999999
1401
1402 == **DbToCSVFile** ==
1403
1404 **Function**
1405
1406 A8=DbToCSVFile(A1,A2,A3,A4,A5,A6,A7)
1407
1408 **Description**
1409
1410 Convert db (database file) file to csv format and export it.
1411
1412 **Parameters**
1413
1414 **A1: **db file save path (value is integer);
1415
1416 ~=0: Alarm record file in HMI flash;
1417
1418 ~=1: Alarm record file in UDisk (USB flash disk);
1419
1420 ~=2: Alarm record file in SD card;
1421
1422 ~=3: Data record file in HMI flash;
1423
1424 ~=4: Data record file in UDisk (USB flash disk);
1425
1426 ~=5: Data record file in SD card;
1427
1428 **A2: **group numer of db file (value is integer);
1429
1430 Used during exporting data record file, the group number could be seen in the data record setting interface;
1431
1432 **A3:** csv file save path (value is integer);
1433
1434 ~=0: Save in UDisk (USB flash disk);
1435
1436 ~=1: Save in SD card;
1437
1438 **A4: **csv name;
1439
1440 **A5: **start time of data recordin db file(string), consecutive 6 word addresses (the values in the address are year, month, day, hour, minute, second);
1441
1442 **A6:** end time of data recordin db file(string), consecutive 6 word addresses (the values in the address are year, month, day, hour, minute, second);
1443
1444 **A7:** csv encoding format;
1445
1446 ~=0 UTF8 format;
1447
1448 ~=1 GBK format;
1449
1450 **A8:** returned value;
1451
1452 ~=0: Failed to export;
1453
1454 ~=1: Exported;
1455
1456 ~=2: db file path error;
1457
1458 ~=3: U disk or SD card does not exist;
1459
1460 ~=4: csv name error;
1461
1462 ~=5: db file does not exist;
1463
1464 ~=6: csv file already exists;
1465
1466 **Example**
1467
1468 @W_HDW100 = 2018
1469
1470 @W_HDW101 = 12
1471
1472 @W_HDW102 = 25
1473
1474 @W_HDW103 = 19
1475
1476 @W_HDW104 = 10
1477
1478 @W_HDW105 = 30
1479
1480 @W_HDW200 = 2018
1481
1482 @W_HDW201 = 12
1483
1484 @W_HDW202 = 25
1485
1486 @W_HDW203 = 20
1487
1488 @W_HDW204 = 10
1489
1490 @W_HDW205 = 30
1491
1492 Export data record file
1493
1494 //DbToCsvFile(3,2,0,"123.csv","@W_HDW100","@W_HDW200",0)‘In the HMI flash, the group number is 2, and the data records collected in the time of 2010.12.25 19:10:30-2018.12.25 20:10:30 are exported to the 123.csv file in the Udisk in UTF8 format.//
1495
1496 Export alarm record file
1497
1498 //DbToCsvFile(0,0,0,"456.csv","@W_HDW100","@W_HDW200",1)‘The alarm records generated in HMI Flash at 2018.12.25 19:10:30-2018.12.25 20:10:30 are exported to the 456.csv file in the Udisk in GBK format.//
1499
1500 **✎Note:**
1501
1502 A1 can be an address or a variable or a value, and the path need to start with UDisk or Flash or SDCard;
1503
1504 A2 can be an address or a variable or a value;
1505
1506 A3 can be an address or a variable or a value, and the path need to start with UDisk or Flash or SDCard;
1507
1508 A4 can be an address or variables or string, and the length of the file name (sum of values, English, Chinese) could not exceed 127;
1509
1510 A5 need to be an address;
1511
1512 A6 need to be an address;
1513
1514 A7 can be an address or a variable or a value;
1515
1516 == **DegToRad** ==
1517
1518 **Function**
1519
1520 A2 = DegToRad(A1)
1521
1522 **Description**
1523
1524 Convert the angle into correspond radian, and display.
1525
1526 **Parameters**
1527
1528 **A1:** inputting angle supports address, other variable or floating.
1529
1530 **A2: **outputting radian supports address, other variable or floating.
1531
1532 **Example**
1533
1534 Script 1
1535
1536 //@W_HDW12=DegToRad(@W_HDW10) 'input angle on (HDW10),convert to correspond redian and copy to (HDW12)//
1537
1538 **Result: **HDW10=180; HDW12=3.14159
1539
1540 Script 2
1541
1542 //dim a as floating 'set variable//
1543
1544 //dim b as floating 'set variable//
1545
1546 //b=30 'input angle//
1547
1548 //a=DegToRad(b) 'convert the length of radian and copy to variable {a}//
1549
1550 //float2d("@W_HDW0", a) 'display the value of floating on(HDW0)//
1551
1552 **Result:** HDW0=0.52360
1553
1554 == **DIM ... AS ...** ==
1555
1556 **Function**
1557
1558 Dim "variable" as "date type"
1559
1560 **Description**
1561
1562 Declare a variable, stable the type of data.
1563
1564 **Parameters**
1565
1566 **Variable: **begin with letter, other character can be letter, numbers, underscores ('_'), need to begin with '@' if it is address;
1567
1568 **Data type:**string,floating,integer;
1569
1570 **Example**
1571
1572 //dim a as integer 'define a as integer//
1573
1574 //dim @W_HDW0 as floating 'define @W_HDW0 as floating//
1575
1576 //dim hi as string 'define "hi" as string//
1577
1578 **Result:**
1579
1580 a is integer
1581
1582 @W_HDW0 is floating
1583
1584 hi is string
1585
1586 **✎Note:**
1587
1588 Use the variable of Dim during running, could not change the type, Dim will be missed if the type of variable is no difined. Variable could be declared in once.
1589
1590 == **DO ... LOOP** ==
1591
1592 **Function**
1593
1594 Do [While | Until condition]
1595
1596 [statements]
1597
1598 Loop
1599
1600 or
1601
1602 Do
1603
1604 [statements]
1605
1606 Loop [While | Until condition]
1607
1608 **Description**
1609
1610 Condition determent instruction.
1611
1612 Do while.loop executes an instruction of block repeatedly when condition is true.
1613
1614 Do until.loop executes an instruction of block repeatedly until condition is false.
1615
1616 **Parameters**
1617
1618 **Condition: **determine condition; obtain the expression of True or False.
1619
1620 **Statements: **execute one or more instructions repeatedly when condition is True or until condition is True.
1621
1622 If condition is true, all statements are executed until the Wend statement is encountered. Control then returns to the While statement and condition is again checked. If condition is still True, the process is repeated. If it is not true, execution resumes with the statement following the Wend statement.
1623
1624 **Example**
1625
1626 //dim i as integer 'end DO loop when i=100//
1627
1628 //do while i<100//
1629
1630 //i=i+1//
1631
1632 //@W_HDW0=i//
1633
1634 //loop//
1635
1636 **Result: **HDW0=100
1637
1638 == **End** ==
1639
1640 **Function**
1641
1642 Terminates the script immediately.
1643
1644 **Description**
1645
1646 End the execution of script.
1647
1648 **Parameters**
1649
1650 **Statement:** Judging condition, use with IF together. end script when meet condition.
1651
1652 **Example**
1653
1654 //If a = 10 Then End 'end script when a=10.//
1655
1656 **Result:** End the script program.
1657
1658 == **Exp** ==
1659
1660 **Function**
1661
1662 A1=Exp(A2)
1663
1664 **Description**
1665
1666 Returns the power value of e (natural logarithm), save the outputting result to A1, e=2.71828182846.
1667
1668 **Parameters**
1669
1670 **A1: **the goal date: the power floating value of returning, need to begin with '@'([[(% class="wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink wikiinternallink" %)__e.g.@W_HDW10__>>path:mailto:'@'(e.g.@W_HDW10]](%%));
1671
1672 **A2: **Source data, natural exponential function, need to be integer or variable. Could not not begin with the address of "@"(e.g.@W_HDW10)
1673
1674 **Example**
1675
1676 //dim a as integer'define a as integer//
1677
1678 //a = @W_HDW2 ' assign the value of (HDW2) to variable a//
1679
1680 //@W_HDW0= Exp(a)'exponential is the value of (HDW2),save result to(HDW0)//
1681
1682 **Result:** HDW2=2,
1683
1684 HDW0=7.38905600
1685
1686 == **F2D** ==
1687
1688 **Function**
1689
1690 F2D (A1, A2)
1691
1692 **Description**
1693
1694 Convert a 32 bit floating to integer format, then output the result.
1695
1696 **Parameters**
1697
1698 **A1: **Destination, the value can be an address(e.g.@W_HDW12).
1699
1700 **A2: **source date, it can be an address or other variable.
1701
1702 **Example**
1703
1704 //F2D(@W_HDW12,@W_HDW10) 'convert the floating of (HDW10) to integer, save in (HDW12).//
1705
1706 **Result:**
1707
1708 HDW10=200,
1709
1710 HDW12=200
1711
1712 == **F2S** ==
1713
1714 **Function**
1715
1716 F2S (A1,A2,s1)
1717
1718 **Description**
1719
1720 Output a format of floating that in the type of string.
1721
1722 **Parameters**
1723
1724 **A1:** Source address, used to store floating, the value is an address(e.g.@W_HDW200);
1725
1726 **A2:** Destination address, used to store string after converted, value is an address(e.g.@W_HDW100).
1727
1728 **S1:** the format of displaying goal data. such as the format of 03.03f,f, used for outputting a single-precision in the form of decimal.m.nf:means m column and n decimals when outputting.
1729
1730 **Example**
1731
1732 //F2S("@W_HDW200", "@W_HDW100", "03.03f") '(HDW200) is floating input,(HDW100) is text output;//
1733
1734 **Result: **HDW200=1.22365,
1735
1736 HDW100=1.224
1737
1738 == **FileCmpDir** ==
1739
1740 **Function**
1741
1742 FileCmpDir(A1, A2, A3, A4, A5, A6, A7, A8, A9)
1743
1744 **Description**
1745
1746 The filename input and the filename in the folder whether is duplicate or not.
1747
1748 **Parameters**
1749
1750 A1: file path (value is integer);
1751
1752 In HMI:
1753
1754 ~=0: Recipe folder in HMI flash;
1755
1756 ~=1: Custom folder in UDisk (USB flash disk);
1757
1758 ~=2: Custom folder in SD card.
1759
1760 ~=3: Custom folder in HMI flash;
1761
1762 In simulator:
1763
1764 ~= 0: D:/Recipe/
1765
1766 ~= 1: C:/WECON/CustomFileDir/
1767
1768 ~= 2: C:/WECON/CustomFileDir/
1769
1770 ~= 3: C:/WECON/CustomFileDir/
1771
1772 **✎Note:** A1 can be an address,variable or fixed value.
1773
1774 A2: file name (value is string);
1775
1776 The file name would be compared;
1777
1778 **✎Note: **A2 can be an address, variable or string. The length of file name cannot exceed 32 characters.
1779
1780 A3: folder name (value is integer);
1781
1782 The folder name would be compared;
1783
1784 **✎Note: **A3 can be an address, variable or string. The length of file name cannot exceed 32 characters.
1785
1786 A4:file name display address (value is a string);
1787
1788 Display the specified number of file names in the specified folder.
1789
1790 **✎Note:** Can only use address here. And the length of the file name cannot exceed 32 characters.
1791
1792 A5: Function type (value is an integer)
1793
1794 ~= 0: compare whether the file name in the folder and the file name input are duplicated or not.
1795
1796 ~= 1: return list of file names.
1797
1798 ~= 100: compare file names, without input suffix .csv
1799
1800 **✎Note: **A5 can be an address, variable or value.
1801
1802 A6: Return value (value is an integer)
1803
1804 ~= 1: Successfully opened the folder.
1805
1806 ~= 2: Failed to open the folder.
1807
1808 ~= 3: The file has duplicate names
1809
1810 **✎Note:** A6 must be an address.
1811
1812 A7: File number (value is an integer)
1813
1814 Display the number of files in the folder (up to 100)
1815
1816 **✎Note: **A7 must be an address.
1817
1818 A8: File creation time (value is a string);
1819
1820 Display the time of file creation, time occupies 32 characters
1821
1822 A9: The maximum number of files to read (value is an integer)
1823
1824 Set the maximum number of files to read (up to 100 files)
1825
1826 **✎Note:** A9 can be an address, variable or value.
1827
1828 **Example**
1829
1830 1) Read the specified number of files in the folder.
1831
1832 FileCmpDir(@W_HDW1254, @W_HDW50, "File", "", 0, "@W_HDW0", "", "", 10)'Determine whether there is a file with the same name as @W_HDW50 in the file directory of HDW1254.@W_HDW0=3 is Yes.@W_HDW0 = 1 is No.@W_HDW0=2 is comparison failed.
1833
1834 2) Compare filename input and the filename in the folder whether is duplicate or not.
1835
1836 FileCmpDir(@W_HDW1254, "", "File", "@W_HDW200", 1, "@W_HDW0", "@W_HDW300", "@W_HDW400", 10)’The file name under the directory File in the flash is written to the continuous address begin from @W_HDW200, the file creation time is written to the continuous address begin from @W_HDW400, the number of files is written to the address @W_HDW300, the maximum number of files is 10
1837
1838 3) Compare the csv file name in the folder and the csv file name input whether is duplicated or not.
1839
1840 FileCmpDir(@W_HDW1254, @W_HDW50, "File", "", 100, "@W_HDW0", "", "", 10)' Judge whether there is a file in the directory File in the flash is same with following: @W_HDW50, @W_HDW50.csv, @ W_HDW50.CSV , @W_HDW0=3 is Yes, @W_HDW0 = 1 is No ,@W_HDW0=2 is comparison failed
1841
1842 == **FILL** ==
1843
1844 **Function**
1845
1846 FILL (A1, A2, A3)
1847
1848 **Description**
1849
1850 Write the same value to designated address constantly.
1851
1852 **Parameters**
1853
1854 **A1:** The beginning address, it can be an address (e.g.@ W_ HDW25);
1855
1856 **A2:** Source data, it needs to be written in continuous value, the value can be an address, variable or constant;
1857
1858 **A3:** The number of operation, writing address number, it can be an address, variable or constant;
1859
1860 When the PLC (external device) address is used in this function, the length range is 1-2048, and only the 2048th address can be operated when the range is exceeded.
1861
1862 When the HMI internal address is used in this function, the length range is 1-4096. If the function is out of range, then the function is invalid.
1863
1864 **Example**
1865
1866 //FILL (@W_HDW25, 10, 3) 'At the beginning three address of @W_ HDW25 is 10.//
1867
1868 **Result: **At the beginning three address of @W_ HDW25 is 10, @W_ HDW25=10, @W_ HDW26=10, @W_ HDW27=10.
1869
1870 == **Float2D** ==
1871
1872 **Function**
1873
1874 Float2D (A1,A2);
1875
1876 **Description**
1877
1878 Copy floating value to the address.
1879
1880 **Parameters**
1881
1882 **A1: **Goal address, the value need to be address (e.g.@W_HDW102);
1883
1884 **A2:** Source data, it can be floating;
1885
1886 **Example**
1887
1888 //dim f as floating 'define f as floating//
1889
1890 //f=1.1 'assign a designated value to f//
1891
1892 //Float2D ("@W_HDW102",f) 'assign the value f to HDW102//
1893
1894 **Result:** HDW102=1.1
1895
1896 == **For. to. step. next** ==
1897
1898 **Function**
1899
1900 For counter = start to end Step
1901
1902 [Statements]
1903
1904 Next
1905
1906 **Description**
1907
1908 Execute a command repeatedly for designated times.
1909
1910 **Parameters**
1911
1912 **counter: **Work as a variable for loop counter;
1913
1914 **start: **The start value of counter, it could be any variable type or expression;
1915
1916 **end: **The end value of counter, it could be any variable type or expression;
1917
1918 **step: **Every loop, the changed value of counter is step value, step default if it is not designation.
1919
1920 step default as below
1921
1922 if start>end, step default is 1;
1923
1924 if start< end. It could be any variable type or expression;
1925
1926 **statements: **Between For with Next, execute instruction set of designated times;
1927
1928 Set a loop of for...Next in another loop, it can nest call the loop of for...Next. Different from a while, for only search once value from end. Empty for loop will be ignored, and could not delay time.
1929
1930 **Example**
1931
1932 //'Use HDX2.0 to trigger the loop//
1933
1934 //for i=100 to 0 step -5 ' set the start is 100,end is 0,subtract 5 every time, execute 20 times totally.//
1935
1936 //@W_HDW100=@W_HDW100+1 ' execute (HDW100+1) 21 times totally, the final result is 21.//
1937
1938 //Next//
1939
1940 //@B_HDX2.0=0//
1941
1942 **Result: **HDW100=21
1943
1944 == **Function** ==
1945
1946 **Function**
1947
1948 Function name (arglist)
1949
1950 statements
1951
1952 name = expression
1953
1954 statements
1955
1956 End Function
1957
1958 **Description**
1959
1960 Unlike internal function, it needs to declare the name, parameter, code of the function.
1961
1962 **Parameters**
1963
1964 **Name: **function name.
1965
1966 **arglist: **stands for the variable list of parameter, this parameter will be entered during calling function. use comma to separate.
1967
1968 **statements:**a set of code in running function body.
1969
1970 **Notice: **it could not define a function program at any other program body. Write name first and then follow with parameter list, when calling function. Declare function need to before be calling. in the internal function body, it could be assigned to a function name from returned value at any place. Return value is 0 if not assign function name. Functions can recursive, but it may lead to stack overflow.
1971
1972 **Example**
1973
1974 //Function sincos (angle as floating)//
1975
1976 //sincos = sin(angle) + cos(angle)//
1977
1978 //End Function<//
1979
1980 //........//
1981
1982 //@W_0002 = sincos(pi/2)//
1983
1984 //........//
1985
1986 == **GetServerDelayInfo** ==
1987
1988 **Function**
1989
1990 A3=GetSerVerDelayInfo(A1,A2)
1991
1992 **Description**
1993
1994 Convert string A1 to hexadecimal number.
1995
1996 **Parameters**
1997
1998 **A1:** The starting address, save the delay data of each server (10 consecutive addresses, the last 7 addresses are reserved), when the server testing fails, the value in the corresponding address is -1. The unit is ms (signed decimal number).
1999
2000 (% class="table-bordered" %)
2001 |**Address**|**Description**
2002 |A1|Delay data of the server configured in [Project Settings]
2003 |A1+1|Delay data of Server 1
2004 |A1+2|Delay data of Server 2
2005
2006 **A2: **Server test result address
2007
2008 (% class="table-bordered" %)
2009 |(% style="width:239px" %)**Address**|(% style="width:1250px" %)**Description**
2010 |(% style="width:239px" %)0 bit|(% style="width:1250px" %)Set ON, Server configured in [Project Settings] fails
2011 |(% style="width:239px" %)1^^st^^bit|(% style="width:1250px" %)Set ON, Server 1 fails
2012 |(% style="width:239px" %)2^^nd^^bit|(% style="width:1250px" %)Set ON, Server 2 fails
2013 |(% style="width:239px" %)3^^rd^^~~ 10^^th^^bits|(% style="width:1250px" %)Reserved
2014 |(% style="width:239px" %)11^^th^^bit|(% style="width:1250px" %)Set ON, network error, network port interface failure
2015
2016 **A3:**Returns the preferred server number or network status (automatically selects the server with the best connection network status).
2017
2018 ~=0: Server configured in [Project Settings];
2019
2020 ~=1: Server 1;
2021
2022 ~=2: Server 2;
2023
2024 ~=3~~10: Reserved;
2025
2026 ~=100: Try again later (two test intervals need to wait 30 seconds);
2027
2028 ~=101: Failed to test Server;
2029
2030 **Example**
2031
2032 //@W_HDW200 = GetServerDelayInfo("@W_HDW100", "@W_HDW50")//
2033
2034 Result:
2035
2036 HDW100: Delay data of the server configured in [Project Settings]
2037
2038 HDW101: Delay data of Server 1
2039
2040 HDW102: Delay data of Server 2
2041
2042 HDX50.0=1:Server configured in [Project Settings] fails
2043
2044 HDX50.1=1: Server 1 fails
2045
2046 HDX50.2=1:Server 2 fails;
2047
2048 HDX50.11= 1: network error, network port interface failure;
2049
2050 When the server signal is stable, the optimal server is automatically connected according to the network status @W_HDW200. When the server connection is abnormal, @W_HDW200=101, the server test fails or the test is abnormal.
2051
2052 **✎Note:**
2053
2054 The time interval between executions of this function could not be less than 30 seconds, otherwise an error will occur.
2055
2056 == **Goto** ==
2057
2058 **Function**
2059
2060 Goto label
2061
2062 **Description**
2063
2064 Go to the designated row without any condition in a function body.
2065
2066 **Parameters**
2067
2068 **Label:** target character, start with letter in row label, end with(:)of any string.row label has no sensitive to the format of letter.
2069
2070 **Example**
2071
2072 //Goto sd 'go to the row which start with "sd";//
2073
2074 **Result:** Go to sd row.
2075
2076 **✎Note:**
2077
2078 Goto only can jump into the internal function that visible row.
2079
2080 == **H2A** ==
2081
2082 **Function**
2083
2084 A1 = H2A (A2)
2085
2086 **Description**
2087
2088 Convert a binary (16-bit) to hexadecimals (4-bit) of ASCII.
2089
2090 **Parameters**
2091
2092 **A1: **Returned value, string, it could be an address or variable.
2093
2094 **A2: **Binary is needed to be converted, the value could be a address or variable.
2095
2096 **Example**
2097
2098 //@W_HDW100= H2A (@W_HDW0) ' convert the binary of (HDW0) to character and save in (HDW100).//
2099
2100 **Result:** HDW0=200,
2101
2102 HDW=100
2103
2104 == **HmiRegoperator** ==
2105
2106 **Function**
2107
2108 HmiRegoperator (A1,A2,A3,A4,A5,A6)
2109
2110 **Description**
2111
2112 Data of Upload/ Download address
2113
2114 **Parameters**
2115
2116 **A1: **The start address of target
2117
2118 **A2: **Length, address length, unit: word, range: 1~~1000
2119
2120 **A3: s**torage
2121
2122 A3=0, select USB flash disk as storage, and save files in Root directory;
2123
2124 A3=1, select SD card as storage, and save files in Root directory;
2125
2126 **A4: **File name address, itneed to be address such as"@ W_HDW2"
2127
2128 **A5**: Upload / download data
2129
2130 A5=0, save the data in the specified address as a file and store the file in the root directory;
2131
2132 A5=1, Read data from file and it woule be written into specified address;
2133
2134 **A6:** State display, it needs to be address, such as "@ W_HDW2";
2135
2136 A6=1, Normal
2137
2138 A6=2, USB flash disk/ SD card does not exist
2139
2140 A6=3, File doesn’t exist;
2141
2142 A6=4, File name error;
2143
2144 A6=5, Check error
2145
2146 A6=6, Abnormal communication;
2147
2148 A6=7, HUW register is not allowed;
2149
2150 A6=8, Address length range error (address length range: 1-1000);
2151
2152 **Example**
2153
2154 Script 1
2155
2156 //HmiRegoperator("@W_HDW0",10,0,"@W_HDW2000",0,"@W_HDW3000")’The data in HDW0-HDW10 is saved as a file, the file name is set by HDW2000 and stored in a USB flash disk.//
2157
2158 Script 2
2159
2160 //HmiRegoperator("@W_HDW0",10,1,"@W_HDW2000",1,"@W_HDW3000")//
2161
2162 //Read the values from files which stored in the SD card (files named by the HDW2000), and write these values to the HDW0-HDW10.//
2163
2164 **✎Note:**
2165
2166 * The length of the file name is less than 32 characters, and the file name consists of numbers and letters (the file name does not meet this standard; WECON does not guarantee the accuracy of the data).
2167 * The interval of download function operation should be 5s or more.
2168 * A1 need to be address such as “@W_HDW2”.
2169 * Please use “Character Input/Display” object for it, and the file name consists of numbers and letters, could not be punctuated characters, maximum character length 32 allowed.
2170
2171 == **Hypot** ==
2172
2173 **Function**
2174
2175 Var = Hypot (expr1, expr2)
2176
2177 **Description**
2178
2179 Calculate the value of the hypotenuse of a right triangle.
2180
2181 **Parameters**
2182
2183 **expr1, expr2: **Source data, the two sides of right triangle. it need to be address;
2184
2185 **Var:** Destination data,it need to be address;
2186
2187 **Example**
2188
2189 //@W_HDW200=Hypot (@W_HDW105,@W_HDW108) ' input the value of right-angle side at (HDW105) and (HDW108),and assign the result of the hypotenuse to (HDW200).//
2190
2191 **Result: **HDW105=3,
2192
2193 HDW108=4,
2194
2195 HDW200=5
2196
2197 **✎Note:**
2198
2199 hypot function could support integer and floating when the format of source data and target data are the same.
2200
2201 == **IF ... THEN ... ELSE ... END IF** ==
2202
2203 **Function**
2204
2205 If condition Then
2206
2207 Statements
2208
2209 [Else
2210
2211 else statements]
2212
2213 End If
2214
2215 **Description**
2216
2217 Conditional judgments instruction. When the [Condition] defined by [IF] is TURN, the operation following [THEN] is performed. When [Condition] is FALSE, the operation after [ELSE] is executed.
2218
2219 **Parameters**
2220
2221 **condition: **any expression, the value could be true or false.
2222
2223 **statement: **execute the instruction block when condition is true.
2224
2225 **else statement: **execute the instruction block when condition is false.
2226
2227 **Example**
2228
2229 //if @W_HDW105=200 then ' judging condition: whether the value of (HDW105) is 200//
2230
2231 //@W_HDW108=1 'the value of (HDW108) is 1 if fulfil condition//
2232
2233 //else//
2234
2235 //@W_HDW200=1 ' the value of (HDW200) is 1 if not fulfil condition.//
2236
2237 //Endif//
2238
2239 **Result:**
2240
2241 HDW105=199;
2242
2243 HDW108=0;
2244
2245 HDW200=1
2246
2247 == **InStr** ==
2248
2249 **Function**
2250
2251 var = InStr ("str1", "str2")
2252
2253 **Description**
2254
2255 Returned the position of str1 in str2(start with 0), set -1 if no result.
2256
2257 **Parameters**
2258
2259 **str1:** source string, it could only be string, not address;
2260
2261 **str2:** target string, it could only be string, not address;
2262
2263 **var:** Returned value, the format of data needs to be string;
2264
2265 **Example**
2266
2267 //dim a as floating//
2268
2269 //a = InStr ("Hello", "o") ' calculate the position of"o"in"hello".//
2270
2271 //float2d ("@W_HDW0",a) ' Returned value is 4.(start with 0)//
2272
2273 **Result:** HDW0=4
2274
2275 == **Int2D** ==
2276
2277 **Function**
2278
2279 Int2D("A1",A2)
2280
2281 **Description**
2282
2283 Write the 32-bit integer into the target address
2284
2285 **Parameters**
2286
2287 **A1: **Source data could only be the HMI internal or external register starting with "@".
2288
2289 **A2:** Target data could only use the integer variable defined by script.
2290
2291 **Example**
2292
2293 //dim var1 as integer 'define var1 as integer//
2294
2295 //Int2D("@W_HDW0", var1)    'Read out the 32-bit integer in var1 and save the result in HDW0 .//
2296
2297 //var1=9999999,//
2298
2299 **Result:** HDW0=9999999.
2300
2301 == **InvB** ==
2302
2303 **Function**
2304
2305 InvB (A1)
2306
2307 **Description**
2308
2309 The state of inverse bit, it is a sub function, no returned value. Achieve the state of switching address constantly.
2310
2311 **Parameters**
2312
2313 **A1:** it is an address.
2314
2315 **Example**
2316
2317 //InvB (@B_HDX0.1) 'switch the state if (HDX0.1).//
2318
2319 **Result: **Switch the state of (HDX0.1) constantly.
2320
2321 == **IsFloating** ==
2322
2323 **Function**
2324
2325 A2=IsFloating (A1)
2326
2327 **Description**
2328
2329 Decide whether a parameter is floating, return true if it is floating, otherwise return FALSE.
2330
2331 **Parameter**
2332
2333 **A1:** source data, variable;
2334
2335 **A2:** target data, variable;
2336
2337 **Example**
2338
2339 //dim a as integer//
2340
2341 //dim b as floating//
2342
2343 //b= D2float ("@W_HDW200",b) 'assign the value of (HDW200) to b//
2344
2345 //a = IsFloating (b) 'judge whether b is floating or not//
2346
2347 //@W_HDW300=a 'save the result to (HDW300)//
2348
2349 **Result: **HDW300=1
2350
2351 == **IsInteger** ==
2352
2353 **Function**
2354
2355 A2= IsInteger (A1)
2356
2357 **Description**
2358
2359 Determine whether a parameter(A1) is integer, return TRUE if the parameter is integer, otherwise return FALSE.
2360
2361 **Parameter**
2362
2363 **A1:** Source date, it is variable or number;
2364
2365 **A2:** Target date, need to be variable, it could not be system address ;
2366
2367 **Example**
2368
2369 //dim a as integer//
2370
2371 //a = IsInteger (20) 'determine whether 20 is integer//
2372
2373 //@W_HDW300=a ' display the result on (HDW300)//
2374
2375 **Result:** HDW300=1
2376
2377 == **IsString** ==
2378
2379 **Function**
2380
2381 val = IsString(expr)
2382
2383 **Description**
2384
2385 Determine whether a parameter is string, return TRUE if it is string, otherwise return FALSE.
2386
2387 **Parameters**
2388
2389 **Expr:** source string, it could be a variable or string, not address;
2390
2391 **Val:** target date, the result need to be variable, could not be address;
2392
2393 **Example**
2394
2395 //dim a as integer 'define variable, display the result;//
2396
2397 //a= isstring ("hello") 'determine whether"hello"is string;//
2398
2399 //@W_HDW0=a 'assign the result to (HDW0)//
2400
2401 **Result: **HDW=1
2402
2403 == **Lcase** ==
2404
2405 **Function**
2406
2407 A2 = LCase(A1)
2408
2409 **Description**
2410
2411 Convert all parameters to lowercase strings.
2412
2413 **Parameters**
2414
2415 **A1: **source string, it could be an address or variable;
2416
2417 **A2: **outputting string, it could be an address or variable;
2418
2419 **Example**
2420
2421 //@W_HDW33 = LCase (@W_HDW25) 'input source sting on (HDW25), convert it to destination string and display the result on (HDW33);//
2422
2423 **Result:** HDW25=HELLO
2424
2425 HDW33=hello
2426
2427 == **Left** ==
2428
2429 **Function**
2430
2431 Val =Left (String, Length)
2432
2433 **Description**
2434
2435 Return a string of the specified length from the left side of parameter.
2436
2437 **Parameters**
2438
2439 **String:** source string; it could be an address or string.
2440
2441 **Length: **return the number of character. It could be an address, integer or variable. Return empty string if length<1. return the whole string if length not less than the character number of string.
2442
2443 **Val: **destination string, outputting string, it could be an address or variable.
2444
2445 **Example**
2446
2447 //@W_HDW30=Left (@W_HDW36, @W_HDW40) '(HDW36) used to input source string,(HDW30) used to display the string result;//
2448
2449 Result: HDW36=hello,
2450
2451 HDW40=2,
2452
2453 HDW30=he
2454
2455 == **Len** ==
2456
2457 **Function**
2458
2459 Length=Len(String)
2460
2461 **Description**
2462
2463 Return the string length.
2464
2465 **Parameters**
2466
2467 **String:** source string, it could be a address or string;
2468
2469 **Length:** target data, return value, it could be a address, variable, integer or floating;
2470
2471 **Example**
2472
2473 //@W_HDW30=Len (@W_HDW36) 'count the character number of (HDW36), save the result to (HDW30);//
2474
2475 **Result:** HDW36=hello
2476
2477 HDW30=5
2478
2479 == **Log** ==
2480
2481 **Function**
2482
2483 a= Logn (x)=Log(x)/Log(n)
2484
2485 **Description**
2486
2487 Log function:return the natural logarithm of the value.
2488
2489 **Parameters**
2490
2491 **a: **source date,it could be a variable, but it could not be address;
2492
2493 **x, n:** source date, it could be a variable, but it could not be address;
2494
2495 **Example**
2496
2497 //Dim a as integer 'define a as integer;//
2498
2499 //Dim b as integer 'define b as integer;//
2500
2501 //Dim c as integer 'define c as integer;//
2502
2503 //b=@W_HDW10 'assigns a value to b//
2504
2505 //c=@W_HDW20 'assigns a value to c//
2506
2507 //a=Log (b)/Log(c) 'calculate logarithm//
2508
2509 //@W_HDW0//
2510
2511 //=a 'assign the result to (HDW0)//
2512
2513 **Result:** HDW10=27,
2514
2515 HDW20=3,
2516
2517 HDW0=3
2518
2519 == **Log10** ==
2520
2521 **Function**
2522
2523 a=Log10(x)= Log(x) / Log(10)
2524
2525 **Description**
2526
2527 Log function: return the natural logarithm.
2528
2529 **Parameters**
2530
2531 **A:** target data, result could be variable, could not be address;
2532
2533 **x:** source data, it could be variable that needs to be the multiples of 10, can’t be address
2534
2535 **Example**
2536
2537 //dim a as integer 'define a as integer//
2538
2539 //dim b as integer 'define b as integer//
2540
2541 //b=@W_HDW10 'assign a value to b//
2542
2543 //a= Log (b)/Log(10) 'result//
2544
2545 //@W_HDW0=a 'assign the result to (HDW0)//
2546
2547 **Result: **HDW10=100,
2548
2549 HDW0=2
2550
2551 == **LTrim** ==
2552
2553 **Function**
2554
2555 val=LTrim("string")
2556
2557 **Description**
2558
2559 Remove the left empty part of the string and return.
2560
2561 **Parameters**
2562
2563 **Val:** Destination string, it could be either a variable or address;
2564
2565 **string:** Source string, it could be either a variable or address;
2566
2567 **Example**
2568
2569 //dim a as string//
2570
2571 //a=Ltrim("hello")//
2572
2573 //@W_HDW103=a//
2574
2575 **Result:** HDW103=hello
2576
2577 == **MAX** ==
2578
2579 **Function**
2580
2581 A1=MAX(A2,A3)
2582
2583 **Description**
2584
2585 Compare the value of A2 and A3, assign the greater value to A1.
2586
2587 **Parameters**
2588
2589 **A1:** Return value (used to store the greater value between A2 with A3).
2590
2591 **A2:** The first comparison value.
2592
2593 **A3:** The second comparison value.
2594
2595 **✎Note:**
2596
2597 A1,A2,A3 should be only used in unsigned integer or unsigned address.
2598
2599 **Example**
2600
2601 //DIM A1 as integer//
2602
2603 //@W_HDW106=10 'assign the value to (@W_HDW106), unsigned decimal word.//
2604
2605 //@W_HDW107=5 'assign the value to (?@W_HDW107),unsigned decimal word.//
2606
2607 //A1 = Max(@W_HDW106,@W_HDW107)//
2608
2609 //@W_HDW105 = A1//
2610
2611 **Result: **@W_HDW105 = 10
2612
2613 **Mid**
2614
2615 **Function**
2616
2617 A1=mid(A2, start, length)
2618
2619 **Description**
2620
2621 Returns a string contain a specified characters length from a string.
2622
2623 **Parameters**
2624
2625 **A1:** string contains the selected characters, it needs to be a string
2626
2627 **A2:** string to be selected, it needs to be a variable or address
2628
2629 **Start:** the start position of string, it needs to be a variable or address, it means that count begin with 0.
2630
2631 **Length:** the designated length of string, maximum character length 127 allowed
2632
2633 **Example**
2634
2635 //DIM A1 as string//
2636
2637 //A1 = Mid("hellokitty",1,2) 'select the string of in "//
2638
2639 //@W_HDW106=A1//
2640
2641 **Result: **@W_HDW106 'display "el" on text input and output window
2642
2643 == **MIN** ==
2644
2645 **Function**
2646
2647 A1=MIN(A2,A3)
2648
2649 **Description**
2650
2651 Compare the value of A2 and A3, assign the smaller value to A1.
2652
2653 **Parameters**
2654
2655 **A1: **Return value (used to store the snaker value between A2 with A3).
2656
2657 **A2: **The first comparison value.
2658
2659 **A3: **The second comparison value.
2660
2661 **Example**
2662
2663 //DIM A1 as integer//
2664
2665 //@W_HDW106=10 'assign the value to (@W_HDW106), unsigned decimal word.//
2666
2667 //@W_HDW107=5 'assign the value to (@W_HDW107), unsigned decimal word.//
2668
2669 //A1 = Min(@W_HDW106,@W_HDW107)//
2670
2671 //@W_HDW105 = A1//
2672
2673 **Result:** @W_HDW105 = 5
2674
2675 **✎Note:**
2676
2677 A1, A2,A3 only used in unsigned integer or unsigned address.
2678
2679 == **MSeconds** ==
2680
2681 **Function**
2682
2683 A1=MSeconds( )
2684
2685 **Description**
2686
2687 A1 is used to display the current milliseconds of system.
2688
2689 **Parameters**
2690
2691 **A1: **used to store the current milliseconds of system.
2692
2693 **Example**
2694
2695 //DIM A1 as integer//
2696
2697 //@W_HDW0= 10 'assign a value to (@W_HDW0), unsigned decimal word//
2698
2699 //A1=MSeconds() 'return the current milliseconds of system to A1//
2700
2701 //@W_HDW0=A1//
2702
2703 //@W_HDW1=A1>>16 'display milliseconds on screen, (HDW0) is an 32-bit unsigned decimal integer address//
2704
2705 **Result:** @W_HDW0 will generate the time value of changing milliseconds unit.
2706
2707 **✎Note:**
2708
2709 A1 is 32-bit unsigned integer variable or unsigned integer address;
2710
2711 MSeconds() function rolls back over to zero once the maximum value has been reached (4294967295->0, 1,2,....4294967295->0, 1, 2,....4294967295->0, 1, 2);
2712
2713 == **MyDeleteFile** ==
2714
2715 **Function**
2716
2717 MyDeleteFile (A1,A2,A3,A4,A5)
2718
2719 **Description**
2720
2721 Delete the specified file
2722
2723 **Parameters**
2724
2725 A1: File location (value is an integer);
2726
2727 In HMI:
2728
2729 ~=0: Recipe folder in HMI flash;
2730
2731 ~=1: Custom folder in UDisk (USB flash disk);
2732
2733 ~= 2: Custom folder in SD card.
2734
2735 ~=3: Custom folder in HMI flash;
2736
2737 In simulator:
2738
2739 ~= 0: D:/Recipe/
2740
2741 ~= 1: C:/WECON/CustomFileDir/
2742
2743 ~= 2: C:/WECON/CustomFileDir/
2744
2745 ~= 3: C:/WECON/CustomFileDir/
2746
2747 **✎Note:** A1 can be an address, variable or value.
2748
2749 A2: filename (value is string);
2750
2751 Input the name of the file want to delete.
2752
2753 **✎Note: **A2 can be an address , variable or a character string, and the length of the file name cannot exceed 32 characters.
2754
2755 A3: folder name (value is integer);
2756
2757 Input the folder where the file want to delete.
2758
2759 **✎Note: **A3 can be an address , variable or a character string, and the length of the folder name cannot exceed 32 characters.
2760
2761 A4: Delete function type (value is integer)
2762
2763 ~= 0: Delete the specified file.
2764
2765 ~= 1: Delete all files.
2766
2767 **✎Note: **A4 can be an address , variable or value.
2768
2769 A5: Return value (value is an integer)
2770
2771 ~= 0: parameter error
2772
2773 ~= 1: Delete successfully
2774
2775 ~= 2: Delete failed
2776
2777 ~= 3: Failed to open file
2778
2779 **✎Note:** A5 must be an address.
2780
2781 **Example**
2782
2783 MyDeleteFile(@W_HDW1254,@W_HDW4200,@W_HDW4300,@W_HDW1250,"@W_HDW1252")
2784
2785 ‘According to the value of @W_HDW1250, delete the designated file @W_HDW4200 in the folder @W_HDW4300 or delete all files in the folder @W_HDW4300.
2786
2787 == **NewNoAddr** ==
2788
2789 **Function**
2790
2791 A1= NewNoAddr (A2, length)
2792
2793 **Description**
2794
2795 At the basic of source address A2, offset designated length, obtain a new address A1.
2796
2797 **Parameters**
2798
2799 **A1: **address after offsetting, it must be String type variable.
2800
2801 **A2:** source address, it must be an address(e.g.:"@W_HDW2")
2802
2803 **Length: **offset length, it must be a constant or an integer variable.
2804
2805 **Example**
2806
2807 //DIM A1 as string//
2808
2809 //A1=NewNoAddr("@W_HDW0",50) '(HDW0) offsets 50 words address (16 bit), and save the result to A1//
2810
2811 //@W_HDW1=A1 '(HDW50) save in A1//
2812
2813 **Result: **(@W_HDW1) character input/display will show @W_HDW50
2814
2815 == **NewStatAddr** ==
2816
2817 **Function**
2818
2819 A1= NewStatAddr (A2, length)
2820
2821 **Description**
2822
2823 At the basic of source address A2, offset the designated length, to obtain a new station A1.
2824
2825 **Parameters**
2826
2827 **A1: **The address after offsetting, it needs to be variable.
2828
2829 **A2:** Source station address, it needs to be address (e.g.:"@W_1:10").
2830
2831 **Length: **offset length
2832
2833 **Example**
2834
2835 //DIM A1 as string//
2836
2837 //A1=NewStatAddr("@W_1:10",2) 'address 10 of station address 1 that offset 2 station addresses, then save the result to A1//
2838
2839 //@W_HDW1=A1 'address 3:10 is saved in A1//
2840
2841 **Result: **@W_HDW1 character input/display will show @W_3:10
2842
2843 == **NStringCompare** ==
2844
2845 **Function**
2846
2847 A1= NStringCompare (A2, A3, length)
2848
2849 **Description**
2850
2851 Compare whether the designated length of two strings is the same, return 1 to A1 if yes, otherwise return 0.
2852
2853 **Parameters**
2854
2855 **A1: **Returned value (compare the designated length of two strings, display 1 when equal, else 0). It could be an address or variable.
2856
2857 **A2: **the address of string to be compared, it needs to be address.
2858
2859 **A3: **source string, it needs to be variable or constant string.
2860
2861 **Length: **string length to be compared
2862
2863 **Example**
2864
2865 //@W_HDW1= NStringCompare("@W_HDW0","87654",5)//
2866
2867 //if @W_HDW1=1 then//
2868
2869 //@B_HDX10.0=1 'result: HDX10.0 set ON 'when the two strings are the same.//
2870
2871 //endif//
2872
2873 //if @W_HDW1=0 then//
2874
2875 //@B_HDX10.0=0 'result:HDX10.0 set OFF 'when not equal.//
2876
2877 //Endif//
2878
2879 == **Operator** ==
2880
2881 (% class="table-bordered" %)
2882 |**Operation**|**Symbol**|**Example**|**Return type**
2883 |Addition|+|A1=A2+A3|Return type depending on the type of variable or address of the addition
2884 |Subtraction|-|A1=A2-A3|Return type depending on the type of variable or address of the subtraction
2885 |Multiplication|*|A1=A2*A3|Return type depending on the type of variable or address of the multiplication
2886 |Division|/|A1=A2/A3|Return type depending on the type of variable or address of the division
2887 |Remainder|Mod ~(%)|(((
2888 A1=A2 mod A3
2889
2890 A1=A2%A3
2891 )))|Returns the remainder of the division of two numbers. The type of the return value is an integer
2892 |Logical OR|Or(~|)|(((
2893 A1=A2 or A3
2894
2895 A1=A2|A3
2896 )))|Returns the result of a logical OR. The type of the return value is an integer.
2897 |Logic AND|And (&)|(((
2898 A1=A2 and A3
2899
2900 A1=A2&A3
2901 )))|Returns the result of a logical AND. The type of the return value is an integer.
2902 |Logical XOR|Xor (^)|(((
2903 A1=A2 xor A3
2904
2905 A1=A2^A3
2906 )))|Returns the result of a logical XOR. The type of the return value is an integer.
2907 |Logical reversal|Not (!)|(((
2908 A1=not A1
2909
2910 A1=A2!A3
2911 )))|Returns the result of a logical reversal. The type of the return value is an integer.
2912 |Left shift|<<|A1=A2<<A3|Shift the value of A2 to the left by A3 digits and return the displacement result. The type of the return value is an integer.
2913 |Right shift|>>|A1=A2>>A3|Shift the value of A2 to the right by A3 digits and return the displacement result. The type of the return value is an integer.
2914 |Bit reversal|~~|A1=~~A1|Perform a bit reversal on a value. The type of the return value is an integer.
2915
2916 == **PI_GetTickCount** ==
2917
2918 **Function**
2919
2920 PI_GetTickCount (A1, A2)
2921
2922 **Description**
2923
2924 Writethe startingtime tothe set address asa 32-bit integer.
2925
2926 **Parameters**
2927
2928 **A1: **Source data could only be the HMI internal or external register starting with "@".
2929
2930 **A2: **=0: Unit of time for returning 0ms;(the value will become 0 after 49.7 days and so on)
2931
2932 ~=1: Unit of time for returning 10 ms;(the value will become 0 after 497 days and so on)
2933
2934 ~=2: Unit of time for returning 100 ms;(the value will become 0 after 4970 days and so on)
2935
2936 ~=3: Unit of time for returning 1000ms;(the value will become 0 after 49700 days and so on)
2937
2938 **✎Note: **If user restarts the hmi,all value will be 0.
2939
2940 **Example**
2941
2942 //PI_GetTickCount("@W_HDW100",0)'save the starting time in HDW100 address as a 32-bit integer.//
2943
2944 **Result: **HDW100=123456(different returned data for each moment)
2945
2946 == **Power** ==
2947
2948 **Function**
2949
2950 var = power (expr1, expr2)
2951
2952 **Description**
2953
2954 The value of [expr2] to the power of [expr1] will be assigned to Var.
2955
2956 **Parameters**
2957
2958 **var:** returned value.
2959
2960 **expr 1:** base number.
2961
2962 **expr 2:** power number.
2963
2964 **Example**
2965
2966 //Dim a as floating//
2967
2968 //a=power (2, 3) 'the value of 3 to the power of 2 is assigned to a.//
2969
2970 //Float2D("@W_HDW10",a) 'assign the float value of a to @W_HDW10//
2971
2972 **Result: **@W_HDW10=8
2973
2974 == **PrintText** ==
2975
2976 **Function**
2977
2978 PrintText(A)
2979
2980 **Description**
2981
2982 Print the content of A or locates in A.
2983
2984 **Parameters**
2985
2986 **A:** source data. A could be a variable or a string ( text information),not a register address.
2987
2988 **Example**
2989
2990 * A is text information
2991
2992 //PrintText("HMI 8070”)//
2993
2994 **Result: **Printer will print out “HMI 8070”
2995
2996 * A is variable
2997
2998 //Dim a as string//
2999
3000 //a= “HMI 8070”//
3001
3002 //PrintText(a)//
3003
3004 **Result:** Printer will print out “HMI 8070”
3005
3006 **✎Note:**
3007
3008 source data length range:1-128 characters.
3009
3010 == **RadToDeg** ==
3011
3012 **Function**
3013
3014 Var= RadToDeg(expr)
3015
3016 **Description**
3017
3018 Convert radiant value to degree, then assigned to Var.
3019
3020 **Parameters**
3021
3022 **Var:** return degree value.
3023
3024 **expr:** input radiant value.
3025
3026 **Example**
3027
3028 //Dim a as floating//
3029
3030 //a = RadToDeg(pi)    'assignt the degree value of ? to a.//
3031
3032 //Float2D("@W_HDW4",a) 'assign the degree value to address "@W_HDW4".//
3033
3034 **Result:** @W_HDW4=180
3035
3036 == **RAND** ==
3037
3038 **Function**
3039
3040 Var = rand(expr1)
3041
3042 **Description**
3043
3044 Generate a random number.
3045
3046 **Parameter**
3047
3048 **Var:** generated random number.
3049
3050 **Expr1:** the base number.
3051
3052 **Example**
3053
3054 //@W_HDW0=rand(@W_HDW0) 'Set the value of address@W_HDW0 as the base number to generate random number.//
3055
3056 **Result:** @W_HDW0 random number.
3057
3058 == **ReadAddr** ==
3059
3060 **Function**
3061
3062 Word = ReadAddr(A1)
3063
3064 **Description**
3065
3066 Assigned the red value from A1 to word.
3067
3068 **Parameter**
3069
3070 **Word: **return value
3071
3072 **Example**
3073
3074 //Dim word as integer//
3075
3076 //@W_HDW100=10//
3077
3078 //word = ReadAddr("@W_HDW100") 'Read the value of address @W_HDW100 and assign to word.//
3079
3080 //@W_HDW200=word//
3081
3082 **Result:** @W_HDW200=10
3083
3084 == **ReadWordFormFile** ==
3085
3086 **Function**
3087
3088 ReadWordFormFile (A1, A2, A3, A4, A5, A6)
3089
3090 **Description**
3091
3092 Read data of specified length from specified file
3093
3094 **Parameters**
3095
3096 A1: File location (value is an integer);
3097
3098 In HMI:
3099
3100 ~=0: Recipe folder in HMI flash;
3101
3102 ~=1: Custom folder in UDisk (USB flash disk);
3103
3104 ~= 2: Custom folder in SD card.
3105
3106 ~=3: Custom folder in HMI flash;
3107
3108 In simulator:
3109
3110 ~= 0: D:/Recipe/
3111
3112 ~= 1: C:/WECON/CustomFileDir/
3113
3114 ~= 2: C:/WECON/CustomFileDir/
3115
3116 ~= 3: C:/WECON/CustomFileDir/
3117
3118 **✎Note:** A1 can be an address, variable or value.
3119
3120 A2: File name (value is a string);
3121
3122 Input the file name want to write.
3123
3124 **✎Note: **A2 must be an address, and the length of the file name cannot exceed 32 characters.
3125
3126 A3: Data start address (value is a string);
3127
3128 Input the data want to write
3129
3130 **✎Note: **A3 must be the address.
3131
3132 A4: Data length (value is an integer)
3133
3134 Set the length of the data to be written (unit:word)
3135
3136 **✎Note: **A4 can be an address , variable or value.
3137
3138 A5: Return value (value is an integer)
3139
3140 ~= 1: Successfully read
3141
3142 ~= 2: Failed to open the folder
3143
3144 ~= 3: Read address error
3145
3146 ~= 4: File reading error
3147
3148 **✎Note: **A5 must be an address.
3149
3150 A6: Folder name (value is a string);
3151
3152 Input the folder where to be written the file.
3153
3154 **✎Note:** A6 can be an address or a variable or a character string, and the length of the folder name cannot exceed 32 characters
3155
3156 **Example**
3157
3158 ReadWordFormFile(@W_HDW1254,"@W_HDW4200","@W_HDW2000",@W_HDW4000,"@W_HDW4100", @W_HDW4300)'Write the @W_HDW4000 words in the file @W_HDW4200 in the directory @W_HDW4300 into the address @W_HDW2000 specified location by @W_HDW1254
3159
3160 == **Right** ==
3161
3162 **Function**
3163
3164 val = Right (string, length)
3165
3166 **Description**
3167
3168 Return a string of the specified length from the right side of parameter.
3169
3170 **Parameter**
3171
3172 **string: **the operated string.
3173
3174 **length:** the designated number of byte required to return, count from the right side.
3175
3176 **Example**
3177
3178 //@W_HDW103= Right("Hello", 3) 'return "llo"//
3179
3180 **Result: **@W_HDW103="llo"
3181
3182 == **RTrim** ==
3183
3184 **Function**
3185
3186 val = RTrim(str)
3187
3188 **Description**
3189
3190 Clear the empty part on the right side of string [str], then assign the empty part to val
3191
3192 **Parameter**
3193
3194 **val: **returned value.
3195
3196 **str:** the string needs to be operated.
3197
3198 **Example**
3199
3200 //@W_HDW0 = RTrim("   -Hell  o-  ") 'retrun"   -Hell  o-"//
3201
3202 **Result:** @W_HDW0display "   -Hell  o-"
3203
3204 == **S2F** ==
3205
3206 **Function**
3207
3208 S2F (A1,A2,s1)
3209
3210 **Description**
3211
3212 S2F is used to translate the string stored in A1 to floating and store the floating number in A2 according to the data format shown in A2.
3213
3214 **Parameters**
3215
3216 **A1:** initial data address, used to store the string data, it should be the internal address of HMI or external address that started with “@”,like @W_HDW0
3217
3218 **A2:** destination address, used to store the floating number data. It should be the internal address of HMI or external address that started with “@”,like @W_HDW0
3219
3220 **S1:** display format of target data, for example m.nf, m means the length of string is m, n means the decimal places, f is the format used to output single precision number. (Since the floating point number is up to 7 digits, the decimal point in the string is also a bit, so it is recommended that the length should not exceed 8 bits)
3221
3222 Return value: none
3223
3224 **Example**
3225
3226 The lengTh of string is 8
3227
3228 //@W_HDW0="12345.67"//'Assign the string “12345.67" to HDW1
3229
3230 //S2F("@W_HDW0","@W_HDW100","8.2f") 'read string "12345.67 "from HDW0and convert it into a floating point with 2 decimal places, store in the HDW100 .//
3231
3232 **Result: **@W_HDW100 address displays “12345.67”.
3233
3234 The length of string is less than 8
3235
3236 //@W_HDW0="1234.5 67"‘assign the string“1234.567”to HDW1//
3237
3238 //S2F("@W_HDW0","@W_HDW100","6.2f") ' read string "1234 .5"from HDW0and convert it into a floating point with 2 decimal places, store in the HDW100 .//
3239
3240 **Result: **the floating value of @W_HDW100 is 1234.50
3241
3242 The length of string is more than 8
3243
3244 //@W_HDW0="12345.6789"’assign the string “12345.6789” to HDW1//
3245
3246 //S2F("@W_HDW0","@W_HDW100","8.2f") ' read string "12345 .67" from HDW0 and convert it into a floating point with 2 decimal places, store in the HDW100 .//
3247
3248 **Result: **the floating value of @W_HDW100 is 12345.67
3249
3250 == **SetB** ==
3251
3252 **Function**
3253
3254 SetB(A1)
3255
3256 **Description**
3257
3258 Set the bit A1 ON.
3259
3260 **Parameters**
3261
3262 **A1:**Bit address
3263
3264 **Example**
3265
3266 //SetB(@B_HDX100.0) 'Set the address {@B_HDX100.0} ON//
3267
3268 **Result: **@B_HDX100.0=1
3269
3270 == **SetKeyMap** ==
3271
3272 **Function**
3273
3274 SetKeyMap(A1,A2,A3)
3275
3276 **Description**
3277
3278 The key values of the keyboard are mapped so that multiple keyboard buttons perform the same function.
3279
3280 **Parameters**
3281
3282 **A1:** The starting address of the source key;It needs to be an address format;
3283
3284 **A2: **The starting address of the mapped value; It needs to be an address format;
3285
3286 **A3: **Mapping length (continuous length of mapped address); It needs to be a value, the maximum mapping range: 108 key values;
3287
3288 **Example**
3289
3290 //@W_HDW3000 = 3 ' The starting address of the source key//
3291
3292 //@W_HDW3001 = 5//
3293
3294 //@W_HDW3002 = 7//
3295
3296 //@W_HDW3003 = 9//
3297
3298 //@W_HDW3004 = 61//
3299
3300 //@W_HDW4100 = 103 'The starting address of the mapped value//
3301
3302 //@W_HDW4101 = 105//
3303
3304 //@W_HDW4102 = 106//
3305
3306 //@W_HDW4103 = 108//
3307
3308 //@W_HDW4104 = 28//
3309
3310 //SetKeyMap("@W_HDW3000","@W_HDW4100",5) ' Map the values of the HDW4000~~HDW4004 addresses to the HDW3000~~HDW3004 addresses.//
3311
3312 **Result**
3313
3314 Map the value of the HDW4000~~HDW4004 address (mapped to 103 105 106 108 28) to the value of the HDW3000~~HDW3004 address (source key value 3 5 7 9 61)
3315
3316 Button 2 (key value 3) is mapped to the direction key (key value is 103), button 4 (key value 5) is mapped to the left arrow key (key value is 105), and so on. When using the keyboard, the function of input 2 could be performed on both the button 2 and the direction button.
3317
3318 == **SignedInt16** ==
3319
3320 **Function**
3321
3322 val = SignedInt16(A1)
3323
3324 **Description**
3325
3326 Assign the value to {val} from address A1 which is signed integer.
3327
3328 **Parameters**
3329
3330 **A1: **contain signed integer as "@W_HDW000002"
3331
3332 **Val: **returned value
3333
3334 **Example**
3335
3336 //Dim a as integer 'Integer variable a//
3337
3338 //a = SignedInt16("@W_HDW0") 'read signed integer from HDW0 addresses and assign the value to a//
3339
3340 //@W_HDW2=a'assign the value a to HDW2//
3341
3342 **Input: **@W_HDW0=-2:
3343
3344 **Result:** @W_HDW2=-2.
3345
3346 == **SignedInt32** ==
3347
3348 **Function**
3349
3350 val = SignedInt32 (A1)
3351
3352 **Description**
3353
3354 Assign the value to {val} from address A1 which is signed even integer.
3355
3356 **Parameters**
3357
3358 **A1: **the address contains signed even integer
3359
3360 **Val:** Returned value
3361
3362 **Example**
3363
3364 //Dim a as integer 'define {a} as a integer//
3365
3366 //a = SignedInt32("@W_HDW0") 'read signed even integer from HDW0, then assign this value to a.//
3367
3368 //@W_HDW2=a 'assign the value of a to HDW2//
3369
3370 //@W_HDW3=a>>16//
3371
3372 **Input: **@W_HDW0=-2
3373
3374 **Result:** @W_HDW2=-2
3375
3376 @W_HDW13=-1
3377
3378 == **Sin** ==
3379
3380 **Function**
3381
3382 val = Sin(A1)
3383
3384 **Description**
3385
3386 Get the sine value of A1, and copy result to val.
3387
3388 **Parameters**
3389
3390 **A1: **A1 needs to be an angle.
3391
3392 **Val: **Returned value.
3393
3394 **Example**
3395
3396 //Dim a as floating 'floating variable a,b//
3397
3398 //a=sin(pi/6) 'return sinb to a//
3399
3400 //Float2D("@W_HDW13",a) 'assign the value of the floating variable a to address HDW13.//
3401
3402 **Result:** @W_HDW13=0.5
3403
3404 == **SleepA** ==
3405
3406 **Function**
3407
3408 SleepA(T)
3409
3410 **Description**
3411
3412 Wait time T(ms).
3413
3414 **Parameters**
3415
3416 **T:** wait time, the unit is [ms]
3417
3418 **Returned value:** none.
3419
3420 **Example**
3421
3422 //SleepA(10) 'wait 10ms//
3423
3424 **Result:** When the script runs to SleepA(10), it means the scripts would go running after waiting 10ms
3425
3426 == **Sqr** ==
3427
3428 **Function**
3429
3430 val = Sqr(A1)
3431
3432 **Description**
3433
3434 Assign a square root value of A1 to val.
3435
3436 **Parameters**
3437
3438 **A1: **the data need to be operated
3439
3440 **Val: **Returned value
3441
3442 **Example**
3443
3444 //@W_HDW0 = Sqr(4) 'calculate the square root of HDW0//
3445
3446 **Result:** @W_HDW0=2
3447
3448 == **StAndFtChange** ==
3449
3450 **Function**
3451
3452 StAndFtChange(A1,A2,A3)
3453
3454 **Description**
3455
3456 Calculate the number of seconds from January 1, 1970 to the current time, and also be invertible.
3457
3458 **Parameters**
3459
3460 **A1: **The start address of curren t time (Enter or output year, month, day, minute, and second); It needs to begin with address"@", and occupies 6 addresses;
3461
3462 **A2: **The number of seconds; It needs to begin with address “@", data format 32-bit unsigned.
3463
3464 **A3: **conversion method;
3465
3466 A3=0, convert time to seconds;
3467
3468 A3=1, convert seconds to time;
3469
3470 **Returned value: **none;
3471
3472 **Example**
3473
3474 Script 1
3475
3476 //StAndFtChange("@W_HDW10","@W_HDW20",0) // //‘use HDW10 as start address, and enter year, month, day, hour, minute, second. The script calculates the number of seconds from January 1, 1970 to the time of the entry, and stores the result in HDW20//
3477
3478 **Input: **HDW10 = 2017,HDW11 = 12, HDW12 = 9 , HDW13 = 15, HDW14 = 15, HDW15 = 0
3479
3480 **Output:** 1512832500
3481
3482 Script 2
3483
3484 //StAndFtChange("@W_HDW30","@W_HDW20",1) ‘read number of seconds from HDW20, and the script calculates the date time, and stores the result start from HDW30//
3485
3486 **Input:** 1512833760
3487
3488 **Output:** HDW30 = 2017, HDW31 = 12, HDW32 = 9, HDW33 = 15, HDW34 = 36, HDW35 = 0
3489
3490 == **Sub** ==
3491
3492 **Function**
3493
3494 Sub name (arglist)
3495
3496 statements
3497
3498 End Sub
3499
3500 **Description**
3501
3502 Declare the name, parameters and codes of the Sub (sub function)
3503
3504 **Parameters**
3505
3506 **Name: **naming rules refer to variable.
3507
3508 **Arglist: **variable list.
3509
3510 **Statements:** the code set of the sub function.
3511
3512 **Example**
3513
3514 //sub samesub(a,b as integer) ' samesub and integer variable a,b//
3515
3516 //c=a+b//
3517
3518 //@W_HDW0=c//
3519
3520 //endsub//
3521
3522 //samesub(1,12) 'call function samesub//
3523
3524 **Result:** @W_HDW0=13
3525
3526 == **SWAP** ==
3527
3528 **Function**
3529
3530 SWAP(A1,length)
3531
3532 **Description**
3533
3534 Swap the big-endian with the little-endian from address A1, swap length is adjustable.
3535
3536 **Parameters**
3537
3538 **A1: **the swapped high endian, need to be an address as HDW_000002.
3539
3540 **Length: **swap length.
3541
3542 **Returned value:** None.
3543
3544 **Example**
3545
3546 //@W_HDW103=0x1234 'assign value to HDW103//
3547
3548 //@W_HDW104=0x2345 'assign value to HDW104//
3549
3550 //@W_HDW105=0x2565 'assign value to HDW105//
3551
3552 //@W_HDW106=0x2675 'assign value to HDW106//
3553
3554 //SWAP(@W_HDW103,4) 'swap the high and low endian for the 4 adjacent addresses start with HDW103.//
3555
3556 **Result:**
3557
3558 @W_HDW103=0x3412
3559
3560 @W_HDW104=0x4523
3561
3562 @W_HDW105=0x6525
3563
3564 @W_HDW106=0x7526
3565
3566 == **Tan** ==
3567
3568 **Function**
3569
3570 val = Tan(A1)
3571
3572 **Description**
3573
3574 Get the returned tagent value of A1, and then assign to val.
3575
3576 **Parameters**
3577
3578 **A1: **A1 needs to be an angle.
3579
3580 **Val: **Returned value.
3581
3582 **Example**
3583
3584 //Dim a as floating 'define a floating variable a//
3585
3586 //a=TAN(pi/3) 'calculate the tangent value of pi/3 and assign to a//
3587
3588 //Float2D("@W_HDW16",a) 'assign the value of a to HDW16//
3589
3590 **Result:** @W_HDW13=1.732
3591
3592 == **Trim** ==
3593
3594 **Function**
3595
3596 val = Trim(A1)
3597
3598 **Description**
3599
3600 Return A string in A1 without empty string next to it.
3601
3602 **Parameters**
3603
3604 **A1: **The operated string
3605
3606 **val: **Returned value
3607
3608 **Example**
3609
3610 //@W_HDW1=Trim(" ab ")//
3611
3612 **Result: **@W_HDW1="ab"
3613
3614 == **UCase** ==
3615
3616 **Function**
3617
3618 val = UCase(A1)
3619
3620 **Description**
3621
3622 Capitalize the string data, and then assign the value to val.
3623
3624 **Parameters**
3625
3626 **A1: **Operated string, address or variable.
3627
3628 **Val: **Returned value
3629
3630 **Example**
3631
3632 //@W_HDW1=ucase("abcd") 'Capitalize abcd then assign the value to HDW1//
3633
3634 **Result: **@W_HDW1="ABCD"
3635
3636 == **Variable** ==
3637
3638 **Description**
3639
3640 A variable is any factor, trait, or condition that could exist in differing amounts or types.
3641
3642 **Define variable**
3643
3644 Use Dim to define variable in script. The variable could be string, floating, integer.
3645
3646 **Example:**
3647
3648 //Dim a as floating ‘define variable {a} as a floating.//
3649
3650 //Dim b,c,d as integer‘define variable {b,c,d} as integer//
3651
3652 **Naming rules**
3653
3654 The first letter needs to be English letter.
3655
3656 No symbols.
3657
3658 Maximum character length 15 allowed.
3659
3660 == **W2B** ==
3661
3662 **Function**
3663
3664 W2B(A1, A2, A3)
3665
3666 **Description**
3667
3668 Replace the high endian of [A2]+1 with the high endian of A2.
3669
3670 **Parameters**
3671
3672 **A1:** operated address.
3673
3674 **A2:** source address.
3675
3676 **A3: **the conversion length.
3677
3678 **Returned value:** none.
3679
3680 **Example**
3681
3682 //@W_HDW0 = 4660 'assign 16bit value 1234 to HDW0.//
3683
3684 //@W_HDW1=0x5678 'assign 16bit value 5678 to HDW1.//
3685
3686 //@W_HDW2 = 0x2425 'assign 16bit value 2425 to HDW1.//
3687
3688 //@W_HDW3 = 0x3536 'assign 16bit value 3536 to HDW0.//
3689
3690 //@W_HDW4 = 0x1415 'assign 16bit value 1415 to HDW0.//
3691
3692 //W2B(@W_HDW20,@W_HDW0, @W_HDW10)//
3693
3694 //@W_HDW10=1 ‘save the high endian {34} of HDW0 to HDW20.//
3695
3696 **Result:** @W_HDW20=0x34, @W_HDW21=0, @W_HDW22=0
3697
3698 == **W2D** ==
3699
3700 **Function**
3701
3702 W2D(A1, A2)
3703
3704 **Description**
3705
3706 Convert the unsigned Word to unsigned Dword and save the result in A1.
3707
3708 **Parameters**
3709
3710 **A1: **operated address .
3711
3712 **A2:** source address.
3713
3714 Returned value.
3715
3716 **Example**
3717
3718 Unsigned decimal word
3719
3720 //@W_HDW0 = 1234 'assign 1234 to HDW0.//
3721
3722 //W2D(@W_HDW2, @W_HDW0) 'convert unsigned word {1234} from HDW0 to Dword and save in HDW2//
3723
3724 **Result:** @W_HDW0=12345, @W_HDW2=12345, @W_HDW3=0
3725
3726 Signed decimal word
3727
3728 //@W_HDW0 = -12345 'assign value to HDW0: convert {-12344} to unsigned decimal word is {53191}.//
3729
3730 //W2D(@W_HDW2, @W_HDW0) 'save unsigned Dword to HDW0//
3731
3732 **Result: **@W_HDW0=-12345,@W_HDW2=53191,@W_HDW3=0
3733
3734 == **W2F** ==
3735
3736 **Function**
3737
3738 A1 = W2F (A2)
3739
3740 **Description**
3741
3742 Convert a 16bit integer to a 32bit floating, and then save to the next word of A1.
3743
3744 Parameters
3745
3746 **A1:** operated address.
3747
3748 **A2:** source address.
3749
3750 Returned value: none.
3751
3752 **Example**
3753
3754 A1, A2 are addresses
3755
3756 //@W_HDW0 = 1234 ' assign unsigned word {1234} HDW0 @W_HDW1=W 2F(@W_HDW0) ‘ Convert {1234} to a 32bit floating and then save to HDW1, HDW2.//
3757
3758 **Result: **@W_HDW1=1234'32bit floating
3759
3760 A1 is an address,A2 is variable
3761
3762 //dim a as integer//
3763
3764 //a=134 'define a integer 134 to a,//
3765
3766 //@W_HDW2=W2F (a) 'convert to 32bit floating save to HDW1, HDW2.//
3767
3768 **Result: **@W_HDW1=134' 32bit floating
3769
3770 == **W2S** ==
3771
3772 **Function**
3773
3774 W2S(A1,A2,S1)
3775
3776 **Description**
3777
3778 Convert integer word in address A1 text as S1 format, and then save to A2.
3779
3780 **Parameters**
3781
3782 **A1:** operated address.
3783
3784 **A2:** source address.
3785
3786 **S1:** saving format.
3787
3788 * d format: Decimal format.d: Real data length.Md: Designated data length. 0md: Designated data length if the length is shorter than m adds 0 at the left.
3789 * format: Unsigned octal format. Mo and 0mo is also applied.
3790 * x format: unsigned Hex integer format ?Mx and 0mx is also applied.
3791 * c format: ASCII format.
3792
3793 **Example**
3794
3795 Decimal format
3796
3797 //@W_HDW1=1456'assign value {1456} to HDW1.//
3798
3799 //W2S("@W_HDW1", "@W_HDW10", "6d") ' convert{1456} to decimal text and save to HDW10.//
3800
3801 **Result: **@W_HDW10 shown "1456"
3802
3803 0md
3804
3805 //@W_HDW1=1456 ' assign value {1456} to HDW1//
3806
3807 //W2S("@W_HDW1", "@W_HDW10", "06d") ' convert{1456} to integer decimal text and add 2 {0} on the left of the data then save to HDW10.//
3808
3809 **Result:** @W_HDW10 show text "001456"
3810
3811 == **WaitEthernetStart** ==
3812
3813 **Function**
3814
3815 WaitEthernetStart (A1)
3816
3817 **Description**
3818
3819 Waiting for Ethernet to start, it will extend the HMI start up time (only added in PI i series, Ethernet start up is earlier than HMI in other PI series)
3820
3821 **Parameters**
3822
3823 **A1: **Waiting timeout (1~~20s)
3824
3825 If A1=0, the wait timeout is 10s;
3826
3827 If A1>20, the wait timeout is 20s;
3828
3829 **Returned value:** None
3830
3831 **Example**
3832
3833 //WaitEthernetStart (15)//
3834
3835 ‘The maximum waiting time is 15 seconds. If Ethernet is not started within 15 seconds, HMI will start the system and no longer wait for ethernet.
3836
3837 == **WHILE ... WEND** ==
3838
3839 **Function**
3840
3841 While condition
3842
3843 [statements]
3844
3845 Wend
3846
3847 **Description**
3848
3849 If the condition is true, then all the commands before Wend in the statement will be executed then recheck the condition, if the condition is false, the command after Wend will be executed.
3850
3851 **Parameters**
3852
3853 **Condition: **Number or string, the result represents as True or False.
3854
3855 **Returned value:** None.
3856
3857 **Example**
3858
3859 //while @W_HDW1>50 'the condition is the value of HDW1 bigger than 50.//
3860
3861 //@W_HDW1=@W_HDW1-1 'when the condition is true, execute subtract 1 from 1HDW.//
3862
3863 //wend//
3864
3865 //@W_HDW2=@W_HDW2+1 ' when the condition is false, execute add 1 from 1HDW.//
3866
3867 **Result:** If HDW1=60, after executed; HDW1=50, if the condition is true.
3868
3869 == **WriteAddr** ==
3870
3871 **Function**
3872
3873 WriteAddr(A1,A2)
3874
3875 **Description**
3876
3877 Assign the value from A2 to address A1.
3878
3879 **Parameters**
3880
3881 **A1:** operated address
3882
3883 **A2:** source address
3884
3885 **Returned value:** None.
3886
3887 **Example**
3888
3889 //dim f as integer ' integer f//
3890
3891 //f=13 ' assign the value 13 to f//
3892
3893 //WriteAddr("@W_HDW1",f) ' write the value to HDW1.//
3894
3895 //WriteAddr("@W_HDW10",@W_HDW2) ' write the value from HDW2 to HDW10.//
3896
3897 Result:
3898
3899 HDW1=13
3900
3901 HDW10= HDW2'IF HDW2=1456,Then HDW10=1456;IF HDW2=-123,Then HDW10=-123
3902
3903 == **WriteWordToFile** ==
3904
3905 **Function**
3906
3907 WriteWordToFile (A1,A2,A3,A4,A5,A6)
3908
3909 **Description**
3910
3911 Write data of designated length to specified file
3912
3913 **Parameters**
3914
3915 A1: File location (value is an integer);
3916
3917 In HMI:
3918
3919 ~=0: Recipe folder in HMI flash;
3920
3921 ~=1: Custom folder in UDisk (USB flash disk);
3922
3923 ~= 2: Custom folder in SD card.
3924
3925 ~=3: Custom folder in HMI flash;
3926
3927 In simulator:
3928
3929 ~= 0: D:/Recipe/
3930
3931 ~= 1: C:/WECON/CustomFileDir/
3932
3933 ~= 2: C:/WECON/CustomFileDir/
3934
3935 ~= 3: C:/WECON/CustomFileDir/
3936
3937 **✎Note: **A1 can be an address, variable or value.
3938
3939 A2: File name (value is a string);
3940
3941 Input the file name want to write.
3942
3943 **✎Note: **A2 must be an address, and the length of the file name cannot exceed 32 characters.
3944
3945 A3: Data start address (value is a string);
3946
3947 Input the data want to write
3948
3949 **✎Note: **A3 must be the address.
3950
3951 A4: Data length (value is an integer)
3952
3953 Set the length of the data to be written (unit:word)
3954
3955 **✎Note: **A4 can be an address , variable or value.
3956
3957 A5: Return value (value is an integer)
3958
3959 ~= 1: Successfully written
3960
3961 ~= 2: Failed to open the folder
3962
3963 ~= 3: Read address error
3964
3965 ~= 4: File writing error
3966
3967 ~= 5: The file already exists
3968
3969 **✎Note: **A5 must be an address.
3970
3971 A6: Folder name (value is a string);
3972
3973 Input the folder where to be written the file.
3974
3975 **✎Note: **A6 can be an address or a variable or a character string, and the length of the folder name cannot exceed 32 characters
3976
3977 **Example**
3978
3979 WriteWordToFile(@W_HDW1254,"@W_HDW4200","@W_HDW1000",@W_HDW4000,"@W_HDW4100", @W_HDW4300)'Write the @W_HDW4000 words in the address @W_HDW1000 to the file @W_HDW4200 in directory @W_HDW4300 specified location by @W_HDW1254