Place of Origin: | Japan |
Brand Name: | Tamagawa |
Certification: | CE |
Model Number: | TS2650N11E78 |
Minimum Order Quantity: | 1pcs |
---|---|
Packaging Details: | carton |
Delivery Time: | in stock |
Payment Terms: | T/T, Western Union, MoneyGram |
Supply Ability: | 100pcs/week |
TAMAGAWA: | TAMAGAWA | Japan: | Japan |
---|---|---|---|
TS2650N11E78: | TS2650N11E78 | Color: | Black |
Material: | Iron | Wire: | Wire |
Dimension: | 70mm | Temperature: | 40-80 |
tructuring your user program: | Program jumps: A program jump means an immediate jump to a specified jump destination and therefore to a different statement within the same block. |
Selective statements: A selective statement enables you to direct program execution into alternative sequences of statements. |
These program control statements use the syntax of the PASCAL programming language. Table 7- 91 Types of SCL program control statements Selective |
Loops: You can control loop execution using iteration statements. An iteration statement specifies which parts of a program should be iterated depending on certain conditions. |
CASE statement (Page 224) Enables the selective execution into 1 of n alternative branches, based on the value of a variable |
Guang Zhou Lai Jie Electric Co.,LTD
TS5246N160
TS3653N14E12
TS3653N58E5
TS3653N65E27
TS3653N81E27
TS3653N78E5
TS3653N94E5
TS3653N181E8
TS3658N3
TS3664N1E1
TS3664N1E2
TS3664N2E3
TS3664N2E4
TS3664N50
TS3664N50
TS3667N1E2
TS3667N11E2
TS366TS3667N3E7
TS3667N3E8
TS3667N13E8
TS3674N37
TS3679N2E1
TS3679N3E1
TS3682N1
TS3682N2
TS3684N11E3
TS3684N12E6
TS3684N13E8
TS3684N1E3
TS3684N2E6
TS3684N3E8
TS3692N103
TS3692N41
TS3692N42
TS3699N1127N2E5
TS3667N2E6
TS3667N3E7
FOR statement
(Page 225)
Repeats a sequence of statements for as long as the control variable
remains within the specified value range
WHILE-DO statement
(Page 226)
Repeats a sequence of statements while an execution condition
continues to be satisfied
Loop
REPEAT-UNTIL
statement (Page 227)
Repeats a sequence of statements until a terminate condition is met
CONTINUE statement
(Page 227)
Stops the execution of the current loop iteration
EXIT statement
(Page 228)
Exits a loop at any point regardless of whether the terminate condition
is satisfied or not
GOTO statement
(Page 229)
Causes the program to jump immediately to a specified label
Program jump
IF-THEN statement
(Page 223)
Causes the program to exit the block currently being executed and to
return to the calling blocThe IF-THEN statement is a conditional statement that controls program flow by executing a
group of statements, based on the evaluation of a Bool value of a logical expression. You
can also use brackets to nest or structure the execution of multiple IF-THEN statements.If "condition" is TRUE or 1, then execute the following statements until
encountering the END_IF statement.
If "condition" is FALSE or 0, then skip to END_IF statement (unless the
program includes optional ELSIF or ELSE statements).
[ELSIF "condition-n" THEN
statement_N;
;]
The optional ELSEIF1 statement provides additional conditions to be
evaluated. For example: If "condition" in the IF-THEN statement is FALSE,
then the program evaluates "condition-n". If "condition-n" is TRUE, then
execute "statement_N".
[ELSE
statement_X;
;]
The optional ELSE statement provides statements to be executed when the
"condition" of the IF-THEN statement is FALSE.
END_IF; The END_IF statement terminates the IF-THEN instruction.
1 You can include multiple ELSIF statements within one IF-THEN statementcondition" Required. The logical expression is either TRUE (1) or FALSE (0).
"statement_A" Optional. One or more statements to be executed when "condition" is TRUE.
"condition-n" Optional. The logical expression to be evaluated by the optional ELSIF statement.
"statement_N" Optional. One or more statements to be executed when "condition-n" of the ELSIF statement is
TRUE.
"statement_X" Optional. One or more statements to be executed when "condition" of the IF-THEN statement
is FALSE.
An IF statement is executed according to the following rules:
● The first sequence of statements whose logical expression = TRUE is executed. The
remaining sequences of statements are not executed.