194
Jetter AG
10 Programming
Inputs and outputs
Inputs and outputs are 1-bit variables. This means they can either have the
value TRUE or FALSE.
Variables which are assigned to permanent addresses (%XL)
I/O registers: 361000 ... 362200
By JetSym
From HMIs
From the application program
In the program below, the status LED is power cycled every second.
Var
// Switching the status LED on
Status_LED_1 : Bit A
t
%XL
362100.1
;
End_Var
;
Task
Main
Autorun
Loop
If
Status_LED_1 =
TRUE
Then
// LED 1 OFF
Status_LED_1 :=
0
;
Else
// LED 1 ON
Status_LED_1 :=
1
;
End_If
;
Delay (
T#1s
);
End_Loop
;
End_Task
;
Introduction
Properties of
inputs/outputs
Memory access
JetSym STX program
Содержание JVM-407B-HMI
Страница 1: ...User Manual JVM 407B HMI 60879892 We automate your success...
Страница 14: ......
Страница 26: ...26 Jetter AG 2 Product description and design Rear view...
Страница 34: ......
Страница 80: ......
Страница 98: ...98 Jetter AG 5 Initial commissioning Initial commissioning in JetViewSoft see page 86 Related topics...
Страница 106: ......
Страница 144: ......
Страница 168: ......
Страница 178: ......
Страница 182: ......
Страница 196: ...196 Jetter AG 10 Programming If Merker1 Then Inc Status_LEDs Delay T 100ms End_If End_Loop End_Task...
Страница 220: ...220 Jetter AG 10 Programming Topic Page Programming 221 Registers 233 Sample programs 238 Contents...
Страница 258: ......
Страница 268: ......
Страница 274: ......
Страница 294: ...294 Jetter AG Appendix Rear view...
Страница 299: ......