5 script coding examples, 1 control statements, Script coding examples -25 – IDEC High Performance Series User Manual
Page 989: Control statements -25, Script, 5script coding examples
WindO/I-NV2 User’s Manual
20-25
5 Script Coding Examples
20
Script
This section provides script coding examples for control statements, arithmetic operators, and functions, as well as
the descriptions of their operations.
5.1 Control Statements
Script
Operation description
If the value of LDR100 is not 0, then 100 is stored in LDR200.
Script
Operation description
If the value of LM100 is not 0, then LDR300, LDR400, and LDR500 are added and that value is stored in LDR200.
Script
Operation description
If the value of LDR100 is not 0 and the value of LDR200 is also not 0, then 0x1234 is stored in LDR300.
If the value of LDR100 is not 0 and the value of LDR200 is 0, then nothing is executed.
If the value of LDR100 is 0, then nothing is executed regardless of the value of LDR200.
5
Script Coding Examples
■
Example 5.1.1
Conditional branch
if ([LDR 100])
{
[LDR 200] = 100;
}
■
Example 5.1.2
Conditional branching
if ([LM 100])
{
[LDR 200] = [LDR 300] + [LDR 400] + [LDR 500];
}
■
Example 5.1.3
Conditional branching
if (0 != [LDR 100])
{
if (0 != [LDR 200])
{
[LDR 300] = 0x1234;
}
}