Product FAQ

Product FAQ
Posted: 2020/12/07
HMI Q&A
How to use data types other than 16Bit-UINT in Script
To use data types other than "16B-UINT" in the script, you need to define them first through the "Tag Library."

1.



2.


3.
Posted: 2020/11/03
HMI Q&A
How to connect different station by IoT Pass Through
Use WinProladder change connection setup before On-line
Posted: 2019/06/04
PLC Q&A
How to use Sub Program in WinProladder?

(1) Please use the CALL instruction, that is, the FUN67 instruction, to enter the subroutine, and use the label in the subroutine: the LBL instruction is FUN65, and after the subroutine segment, please use the RTS instruction, that is, the FUN68 subroutine return instruction.

(2) Use the interrupt mode. As long as the corresponding interrupt name is added, "I" is added as the interrupt subroutine label. For example, if the X rising edge interrupt input is used, the X rising edge interrupt number is "; X1 +, then the corresponding The interrupt label is: X1I, so use the FUN65: LBL instruction in the subroutine to specify: LBL X1I From this label, the X1 input interrupt subroutine is entered. At the end of the interrupt subroutine, use FUN69: RTI to return to the end to indicate the end.