5 Script Coding Examples
20-22
SmartAXIS Touch User’s Manual
This section provides script coding examples for control statements, arithmetic operators, and functions, as well as
the descriptions of their operations. However, the devices that can be used and their notation varies based on HMI
functions and control functions. Please program a script with the devices and notation that can be used for each
respective function.
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;
}
}
Summary of Contents for SmartAXIS Touch FT1A Series
Page 1: ...FT1A Series FT9Y B1390 4 SmartAXIS Touch User s Manual ...
Page 22: ...Contents Preface 21 SmartAXIS Touch User s Manual ...
Page 240: ...6 Using Library Screens 4 36 SmartAXIS Touch User s Manual ...
Page 416: ...2 Multi State Lamps 8 26 SmartAXIS Touch User s Manual ...
Page 558: ...9 Calendar 9 142 SmartAXIS Touch User s Manual ...
Page 668: ...6 Timer 11 52 SmartAXIS Touch User s Manual ...
Page 754: ...4 Using Data and Detected Alarms 13 34 SmartAXIS Touch User s Manual ...
Page 792: ...4 Using the Data 14 38 SmartAXIS Touch User s Manual ...
Page 810: ...4 Using the Data 15 18 SmartAXIS Touch User s Manual ...
Page 870: ...3 Text Manager 19 16 SmartAXIS Touch User s Manual ...
Page 924: ...6 Important Notes 20 54 SmartAXIS Touch User s Manual ...
Page 1036: ...5 User Communication 22 74 SmartAXIS Touch User s Manual ...
Page 1092: ...2 Monitoring on the Touch 24 26 SmartAXIS Touch User s Manual ...
Page 1142: ...2 Word Devices 27 18 SmartAXIS Touch User s Manual ...
Page 1186: ...2 Analog Cartridge 29 34 SmartAXIS Touch User s Manual ...
Page 1194: ...3 Handling Problems 30 8 SmartAXIS Touch User s Manual ...