5 Script Coding Examples
20-34
WindO/I-NV4 User’s Manual
Script
Operation description
If the value of LDR100 is larger than 0, then 1 is repeatedly added to the value of LDR200 and 1 is repeatedly
subtracted from the value of LDR100.
In the script example above, when the while statement repeats ten times, the value of LDR100 becomes 0 and the
while statement ends.
After this script executes, the value of LDR100 is 0 and the value of LDR200 is 20.
Script
Operation description
While the value of LDR100 is 0, the while statement repeats.
Inside the while statement, if the values of LDR200 and LDR300 are equal, the while statement will terminate, and
after [LM 0] changes to 1, execution breaks out of the while statement.
In the script example above, the values of LDR200 and LDR300 are equal when the while statement repeats twice,
and after LM0 changes to 1, execution breaks out of the while statement loop. After execution, the value of LDR100 is
0, the value of LDR200 is 5, the value of LDR300 is 5, and LM0 is 1.
■
Example 5.1.7
Iteration
[LDR 100] = 10;
[LDR 200] = 10;
while (0 < [LDR 100])
{
[LDR 200] = [LDR 200] + 1;
[LDR 100] = [LDR 100] - 1;
}
■
Example 5.1.8
Iteration
[LDR 100] = 0;
[LDR 200] = 3;
[LDR 300] = 5;
while ([LDR 100] == 0)
{
[LDR 200] = [LDR 200] + 1;
if ([LDR 300] = [LDR 200])
{
SET([LM 0]);
break;
}
}
Summary of Contents for WindO/I-NV4
Page 1: ...B 1701 16 User s Manual...
Page 108: ...5 WindO I NV4 Common Operations and Settings 2 76 WindO I NV4 User s Manual...
Page 256: ...7 BACnet Communication 3 148 WindO I NV4 User s Manual...
Page 372: ...6 Screen Restrictions 5 32 WindO I NV4 User s Manual...
Page 390: ...5 Part Library Function 6 18 WindO I NV4 User s Manual...
Page 420: ...3 Text 7 30 WindO I NV4 User s Manual...
Page 628: ...2 Multi State Lamp 9 34 WindO I NV4 User s Manual...
Page 924: ...4 Meter 11 76 WindO I NV4 User s Manual...
Page 990: ...7 Timer 12 66 WindO I NV4 User s Manual...
Page 1030: ...4 Using Data and Detected Alarms 13 40 WindO I NV4 User s Manual...
Page 1098: ...4 Using the Data 15 22 WindO I NV4 User s Manual...
Page 1248: ...5 Restrictions 22 18 WindO I NV4 User s Manual...
Page 1370: ...2 Monitoring on the MICRO I 25 28 WindO I NV4 User s Manual...
Page 1388: ...4 Restrictions 26 18 WindO I NV4 User s Manual...
Page 1546: ...5 Module Configuration Dialog Box 30 36 WindO I NV4 User s Manual...
Page 1614: ...3 Settings 34 14 WindO I NV4 User s Manual...
Page 1726: ...5 Text Alignment A 10 WindO I NV4 User s Manual...