Mitsubishi Electric FXCPU v3 Programming Manual
![Mitsubishi Electric FXCPU manual cover](/images/8b7c221b25122fa66674aa6c/thumbs/thumb175x175.webp)
![English English](/static/img/blank.webp)
FXCPU
Structured Programming Manual
Application Functions
FXCPU Structured Programming Manual [Application Functions]
FXCPU Structured Programming Manual
[Application Functions]
Foreword
This manual contains text, diagrams and explanations which will guide the reader through the safe and correct installation, use, and operation of the FX Series programmable controller function for structured programs. It should be read and understood before attempting to install or use the unit. Store this manual in a safe place so that you can take it out and read it whenever necessary. Always forward it to the end user.
2009 MITSUBISHI ELECTRIC CORPORATION
Manual number JY997D34801
Manual revision K
Date 4/2015
This manual confers no industrial property rights or any rights of any other kind, nor does it confer any patent licenses. Mitsubishi Electric Corporation cannot be held responsible for any problems involving industrial property rights which may occur as a result of using the contents noted in this manual.
1
FXCPU Structured Programming Manual [Application Functions]
Outline Precautions This manual provides information for the use of the FX Series Programmable Controllers. The manual has
been written to be used by trained and competent personnel. The definition of such a person or persons is as follows;
a) Any engineer who is responsible for the planning, design and construction of automatic equipment using the product associated with this manual should be of a competent nature, trained and qualified to the local and national standards required to fulfill that role. These engineers should be fully aware of all aspects of safety with regards to automated equipment.
b) Any commissioning or service engineer must be of a competent nature, trained and qualified to the local and national standards required to fulfill that job. These engineers should also be trained in the use and maintenance of the completed product. This includes being completely familiar with all associated documentation for the said product. All maintenance should be carried out in accordance with established safety practices.
c) All operators of the completed equipment should be trained to use that product in a safe and coordinated manner in compliance to established safety practices. The operators should also be familiar with documentation which is connected with the actual operation of the completed equipment.
Note: the term 'completed equipment' refers to a third party constructed device which contains or uses the product associated with this manual
This product has been manufactured as a general-purpose part for general industries, and has not been designed or manufactured to be incorporated in a device or system used in purposes related to human life.
Before using the product for special purposes such as nuclear power, electric power, aerospace, medicine or passenger movement vehicles, consult with Mitsubishi Electric.
This product has been manufactured under strict quality control. However when installing the product where major accidents or losses could occur if the product fails, install appropriate backup or failsafe functions in the system.
When combining this product with other products, please confirm the standard and the code, or regulations with which the user should follow. Moreover, please confirm the compatibility of this product to the system, machine, and apparatus with which a user is using.
If in doubt at any stage during the installation of the product, always consult a professional electrical engineer who is qualified and trained to the local and national standards. If in doubt about the operation or use, please consult the nearest Mitsubishi Electric representative.
Since the examples indicated by this manual, technical bulletin, catalog, etc. are used as a reference, please use it after confirming the function and safety of the equipment and system. Mitsubishi Electric will accept no responsibility for actual use of the product based on these illustrative examples.
This manual content, specification etc. may be changed without a notice for improvement. The information in this manual has been carefully checked and is believed to be accurate; however, you
have noticed a doubtful point, a doubtful error, etc., please contact the nearest Mitsubishi Electric representative.
Registration
Microsoft, Windows and Excel are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries.
CompactFlash is a trademark of SanDisk Corporation in the United States and other countries. Ethernet is a trademark of Xerox Corporation. MODBUS is a registered trademark of Schneider Electric SA. The company name and the product name to be described in this manual are the registered trademarks or
trademarks of each company.
2
Table of Contents FXCPU Structured Programming Manual [Application Functions]
Table of Contents Positioning of This Manual....................................................................................................... 8 Related Manuals...................................................................................................................... 11 Generic Names and Abbreviations Used in Manuals .......................................................... 14
1. Outline 15
1.1 Outline of Structured Programs and Programming Languages............................................. 15 1.1.1 Outline of structured programs...................................................................................................... 15 1.1.2 Programming languages ............................................................................................................... 16
1.2 PLC Series and Programming Software Version ..................................................................... 17 1.3 Cautions on Creation of Fundamental Programs .................................................................... 17
1.3.1 I/O processing and response delay ............................................................................................... 17 1.3.2 Double output (double coil) operation and countermeasures........................................................ 18 1.3.3 Circuits not available in structured ladder programs and countermeasures.................................. 19 1.3.4 Handling of general flags............................................................................................................... 19 1.3.5 Handling of operation error flag ..................................................................................................... 22
2. Function/Operator List 23
2.1 Type Conversion Functions....................................................................................................... 23 2.2 Standard Functions Of One Numeric Variable ......................................................................... 25 2.3 Standard Arithmetic Functions.................................................................................................. 25 2.4 Standard Bit Shift Functions...................................................................................................... 25 2.5 Standard Bitwise Boolean Functions........................................................................................ 25 2.6 Standard Selection Functions ................................................................................................... 26 2.7 Standard Comparison Functions .............................................................................................. 26 2.8 Standard Character String Functions ....................................................................................... 26 2.9 Functions Of Time Data Types .................................................................................................. 27 2.10 Standard Function Blocks........................................................................................................ 27 2.11 Operator ..................................................................................................................................... 28
2.11.1 Arithmetic operations................................................................................................................... 28 2.11.2 Logical operations ....................................................................................................................... 28 2.11.3 Comparison operations ............................................................................................................... 28
3. Function Construction 29
3.1 Applied Function Expression and Execution Type ................................................................. 29 3.2 Labels........................................................................................................................................... 30 3.3 Device and Address.................................................................................................................... 33 3.4 EN and ENO................................................................................................................................. 34
4. How to Read Explanation of Functions 36
3
Table of Contents FXCPU Structured Programming Manual [Application Functions]
5. Applied Functions (Type Conversion Functions) 38
5.1 BOOL_TO_INT(_E) / Bit data word [signed] data conversion ............................................ 40 5.2 BOOL_TO_DINT(_E) / Bit data double word [signed] data conversion............................. 42 5.3 BOOL_TO_STR(_E) / Bit data string data conversion ........................................................ 44 5.4 BOOL_TO_WORD(_E) / Bit data word [unsigned]/
bit string [16-bit] data conversion............................................................................................. 46 5.5 BOOL_TO_DWORD(_E) / Bit data double word [unsigned]/
bit string [32-bit] data conversion............................................................................................. 48 5.6 BOOL_TO_TIME(_E) / Bit data time data conversion.......................................................... 50 5.7 INT_TO_DINT(_E) / Word [signed] data double word [signed] data conversion .............. 52 5.8 DINT_TO_INT(_E) / Double word [signed] data word [signed] data conversion .............. 54 5.9 INT_TO_BOOL(_E) / Word [signed] data bit data conversion ............................................ 56 5.10 DINT_TO_BOOL(_E) / Double word [signed] data bit data conversion........................... 58 5.11 INT_TO_REAL(_E) / Word [signed] data float (single precision) data conversion......... 60 5.12 DINT_TO_REAL(_E) / Double word [signed] data
float (single precision) data conversion ................................................................................. 62 5.13 INT_TO_STR(_E) / Word [signed] data string data conversion........................................ 64 5.14 DINT_TO_STR(_E) / Double word [signed] data string data conversion ........................ 66 5.15 INT_TO_WORD(_E) / Word [signed] data word [unsigned]/
bit string [16-bit] data conversion ........................................................................................... 68 5.16 DINT_TO_WORD(_E) / Double word [signed] data word [unsigned]/
bit string [16-bit] data conversion ........................................................................................... 70 5.17 INT_TO_DWORD(_E) / word [signed] data double word [unsigned]/
bit string [32-bit] data conversion ........................................................................................... 72 5.18 DINT_TO_DWORD(_E) / Double word [signed] data double word [unsigned]/
bit string [32-bit] data conversion ........................................................................................... 74 5.19 INT_TO_BCD(_E) / Word [signed] data BCD data conversion ......................................... 76 5.20 DINT_TO_BCD(_E) / Double word [signed] data BCD data conversion .......................... 78 5.21 INT_TO_TIME(_E) / Word [signed] data time data conversion......................................... 80 5.22 DINT_TO_TIME(_E) / Double word [signed] data time data conversion.......................... 82 5.23 REAL_TO_INT(_E) / Float (single precision) data word [signed] data conversion ........ 84 5.24 REAL_TO_DINT(_E) / Float (single precision) data
double word [signed] data conversion ................................................................................... 86 5.25 REAL_TO_STR(_E) / Float (single precision) data string data conversion .................... 88 5.26 WORD_TO_BOOL(_E) / Word [unsigned] / bit string [16-bit] data
bit data conversion ................................................................................................................... 91 5.27 DWORD_TO_BOOL(_E) / Double word [unsigned]/bit string [32-bit] data
bit data conversion ................................................................................................................... 93 5.28 WORD_TO_INT(_E) / Word [unsigned]/bit string [16-bit] data
word [signed] data conversion................................................................................................ 95 5.29 WORD_TO_DINT(_E) / Word [unsigned]/bit string [16-bit] data
double word [signed] data conversion ................................................................................... 97 5.30 DWORD_TO_INT(_E) / Double word [unsigned]/bit string [32-bit] data
Word [signed] data conversion ............................................................................................... 99 5.31 DWORD_TO_DINT(_E) / Double word [unsigned]/bit string [32-bit] data
double word [signed] data conversion ................................................................................. 101 5.32 WORD_TO_DWORD(_E) / Word [unsigned]/bit string [16-bit] data
double word [unsigned]/bit string [32-bit] data conversion ............................................... 103 5.33 DWORD_TO_WORD(_E) / Double word [unsigned]/bit string[32-bit] data
word [unsigned]/bit string [16-bit] data conversion ............................................................ 105 5.34 WORD_TO_TIME(_E) / Word [unsigned]/bit string [16-bit] data
time data conversion .............................................................................................................. 107 5.35 DWORD_TO_TIME(_E) / Double word [unsigned]/bit string [32-bit] data
time data conversion .............................................................................................................. 109
4
Table of Contents FXCPU Structured Programming Manual [Application Functions]
5.36 STR_TO_BOOL(_E) / String data bit data conversion .................................................... 111 5.37 STR_TO_INT(_E) / String data word [signed] data conversion...................................... 113 5.38 STR_TO_DINT(_E) / String data double word [signed] data conversion ...................... 115 5.39 STR_TO_REAL(_E) / String data float (single precision) data conversion ................... 117 5.40 STR_TO_TIME(_E) / String data time data conversion ................................................... 120 5.41 BCD_TO_INT(_E) / BCD data word [signed] data conversion........................................ 122 5.42 BCD_TO_DINT(_E) / BCD data double word [signed] data conversion ........................ 124 5.43 TIME_TO_BOOL(_E) / Time data bit data conversion ..................................................... 126 5.44 TIME_TO_INT(_E) / Time data word [signed] data conversion ...................................... 128 5.45 TIME_TO_DINT(_E) / Time data double word [signed] data conversion ....................... 130 5.46 TIME_TO_STR(_E) / Time data string data conversion .................................................. 132 5.47 TIME_TO_WORD(_E) / Time data word [unsigned]/
bit string [16-bit] data conversion ......................................................................................... 134 5.48 TIME_TO_DWORD(_E) / Time data double word [unsigned]/
bit string [32-bit] data conversion ......................................................................................... 136 5.49 BITARR_TO_INT(_E) / Bit array Word [signed] type, word [unsigned]/
bit String [16-bit] data conversion......................................................................................... 138 5.50 BITARR_TO_DINT(_E) / Bit array Double word [signed] type,
double word [unsigned]/bit string [32-bit] data conversion ............................................... 140 5.51 INT_TO_BITARR(_E) / Word [signed] data, word [unsigned]/
bit string [16-bit] data bit array conversion ..................................................................... 142 5.52 DINT_TO_BITARR(_E) / Double word [signed] data, double word [unsigned]/
bit string [32-bit] data bit array conversion ..................................................................... 144 5.53 CPY_BITARR(_E) / Bit array copy ......................................................................................... 146 5.54 GET_BIT_OF_INT(_E) / Specified bit read of word [signed] data ....................................... 148 5.55 SET_BIT_OF_INT(_E) / Specified bit write of word [signed] data....................................... 150 5.56 CPY_BIT_OF_INT(_E) / Specified bit copy of word [signed] data ...................................... 152 5.57 GET_BOOL_ADDR / Acquisition of start data...................................................................... 154 5.58 GET_INT_ADDR / Acquisition of start data .......................................................................... 155 5.59 GET_WORD_ADDR / Acquisition of start data..................................................................... 156
6. Applied Functions (Standard Functions Of One Numeric Variable) 157
6.1 ABS(_E) / Absolute value ......................................................................................................... 158
7. Applied Functions (Standard Arithmetic Functions) 160
7.1 ADD_E / Addition ...................................................................................................................... 161 7.2 SUB_E / Subtraction ................................................................................................................. 163 7.3 MUL_E / Multiplication.............................................................................................................. 165 7.4 DIV_E / Division......................................................................................................................... 167 7.5 MOD(_E) / Modulus operation.................................................................................................. 169 7.6 EXPT(_E) / Exponentiation ....................................................................................................... 171 7.7 MOVE(_E) / Move operation ..................................................................................................... 173
8. Applied Functions (Standard Bit Shift Functions) 175
8.1 SHL(_E) / Left shift .................................................................................................................... 176 8.2 SHR(_E) / Right shift ................................................................................................................. 178
5
Table of Contents FXCPU Structured Programming Manual [Application Functions]
9. Applied Functions (Standard Bitwise Boolean Functions) 180
9.1 AND_E / Logical product .......................................................................................................... 181 9.2 OR_E / Logical sum .................................................................................................................. 183 9.3 XOR_E / exclusive logical sum................................................................................................ 185 9.4 NOT(_E) / logical negation ....................................................................................................... 187
10. Applied Functions (Standard Selection Functions) 189
10.1 SEL(_E) / Selection ................................................................................................................. 190 10.2 MAXIMUM(_E) / Maximum selection...................................................................................... 192 10.3 MINIMUM(_E) / Minimum selection........................................................................................ 194 10.4 LIMITATION(_E) / Upper/Lower limit control ........................................................................ 196 10.5 MUX(_E) / Multiplexer ............................................................................................................. 198
11. Applied Functions (Standard Comparison Functions) 200
11.1 GT_E / Comparison................................................................................................................. 201 11.2 GE_E / Comparison................................................................................................................. 203 11.3 EQ_E / Comparison................................................................................................................. 205 11.4 LE_E / Comparison ................................................................................................................. 207 11.5 LT_E / Comparison ................................................................................................................. 209 11.6 NE_E / Comparison................................................................................................................. 211
12. Applied Functions (Standard Character String Functions) 213
12.1 MID(_E) / Extract mid string ................................................................................................... 214 12.2 CONCAT(_E) / String concatenation ..................................................................................... 217 12.3 INSERT(_E) / String insertion................................................................................................. 219 12.4 DELETE(_E) / String deletion ................................................................................................. 222 12.5 REPLACE(_E) / String replacement....................................................................................... 224 12.6 FIND(_E) / Searches a character string................................................................................. 227
13. Applied Functions (Functions Of Time Data Types) 230
13.1 ADD_TIME(_E) / Addition ....................................................................................................... 231 13.2 SUB_TIME(_E) / Subtraction .................................................................................................. 233 13.3 MUL_TIME(_E) / Multiplication............................................................................................... 235 13.4 DIV_TIME(_E) / Division.......................................................................................................... 237
14. Standard Function Blocks 239
14.1 R_TRIG(_E) / Rising edge detector........................................................................................ 240 14.2 F_TRIG(_E) / Falling edge detector ....................................................................................... 242 14.3 CTU(_E) / Up counter .............................................................................................................. 244 14.4 CTD(_E) / Down counter ......................................................................................................... 246 14.5 CTUD(_E) / Up/Down counter................................................................................................. 248 14.6 TP(_E), TP_10(_E) / Pulse timer ............................................................................................. 250 14.7 TON(_E), TON_10(_E) / On delay timer ................................................................................. 252 14.8 TOF(_E), TOF_10(_E) / Off delay timer .................................................................................. 254
6
Table of Contents FXCPU Structured Programming Manual [Application Functions]
14.9 COUNTER_FB_M / Counter function blocks ........................................................................ 256 14.10 TIMER_10_FB_M / Timer function blocks........................................................................... 258 14.11 TIMER_CONT_FB_M / Timer function blocks..................................................................... 259 14.12 TIMER_100_FB_M / Timer function blocks......................................................................... 261
15. Operator 262
15.1 ADD / Addition......................................................................................................................... 263 15.2 SUB / Subtraction.................................................................................................................... 264 15.3 MUL / Multiplication ................................................................................................................ 265 15.4 DIV / Division ........................................................................................................................... 266 15.5 MOD / Modulus operation....................................................................................................... 267 15.6 ** / Exponentiation .................................................................................................................. 268 15.7 AND / Logical product ............................................................................................................ 269 15.8 OR / Logical sum..................................................................................................................... 270 15.9 XOR / Exclusive logical sum.................................................................................................. 271 15.10 NOT / Logical negation......................................................................................................... 273 15.11 GT / Comparison ................................................................................................................... 274 15.12 GE / Comparison................................................................................................................... 275 15.13 EQ / Comparison................................................................................................................... 276 15.14 LE / Comparison.................................................................................................................... 277 15.15 LT / Comparison.................................................................................................................... 278 15.16 NE / Comparison ................................................................................................................... 279
Appendix A: Correspondence between Devices and Addresses 280
Appendix B: Function/Operator List [by Type/in Alphabetic Order] 282
Appendix B-1 [By type] ............................................................................................................. 282 Appendix B-2 [In alphabetic order] ........................................................................................... 285
Warranty................................................................................................................................. 289 Revision History.................................................................................................................... 290
7
FXCPU Structured Programming Manual [Application Functions]
Positioning of This Manual This manual explains application functions for structured programs provided by GX Works2. Refer to other manuals for devices, parameters and sequence instructions. Refer to each corresponding manual for analog, communication, positioning control and special units and blocks.
1. When using FX3S/FX3G/FX3GC/FX3U/FX3UC PLCs
(Additional Manual)
(Additional Manual)
(Additional Manual)
(Additional Manual)
MELSEC-Q/L/F Structured Programming Manual (Fundamentals)
This manual explains programming methods, specifications, functions, etc. required to create structured programs.
Q/L/F
Structured
FXCPU Structured Programming Manual [Device & Common]
This manual explains devices and parameters for structured programs provided by GX Works2.
FX
Structured
FX3S/FX3G/FX3GC/FX3U/FX3UC Series User's Manual -Positioning Edition
This manual explains details of wiring, instructions and operations of the positioning function built in FX3S/FX3G/FX3GC/FX3U/FX3UC PLC main units. Explanation of instructions and instructions used in program examples are expressed for GX Developer.
FX3S/FX3G/FX3GC/FX3U/FX3UC User's Manual- Analog Control Edition
This manual explains details of analog special function blocks and analog special adapters for FX3S/FX3G/FX3GC/FX3U/FX3UC PLCs and PID instruction. Explanation of instructions and instructions used in program examples are expressed for GX Developer.
FX Series User's Manual -Data Communication Edition This manual explains details of simple N:N link, parallel link, computer link, no-protocol communication (RS and RS2 instructions), programming communication and inverter communication for FX PLCs. Explanation of instructions and instructions used in program examples are expressed for GX Developer.
Individual manuals This manual explains details of each special unit/block. Explanation of instructions and instructions used in program examples are expressed for GX Developer.
*1. Detailed explanation may be provided by a separate manual in some products.
FX
Special unit/block
FX3S FX3G FX3GC FX3U FX3UC
FX3S FX3G FX3GC FX3U FX3UC
(Manual supplied with product or additional Manual )*1
FXCPU Structured Programming Manual [Basic & Applied Instruction]
This manual explains sequence instructions for structured programs provided by GX Works2.
(This manual)
FX
Structured
FXCPU Structured Programming Manual [Application Functions]
This manual explains application functions for structured programs provided by GX Works2.
FX
Structured
(Additional Manual)
(Additional Manual)
(Additional Manual)
8
FXCPU Structured Programming Manual [Application Functions]
2. When using FX1S/FX1N/FX1NC/FX2N/FX2NC PLCs
(Additional Manual)
(Additional Manual)
(Additional Manual)
(Additional Manual)MELSEC-Q/L/F Structured Programming Manual (Fundamentals)
This manual explains programming methods, specifications, functions, etc. required to create structured programs.
Q/L/F
Structured
FXCPU Structured Programming Manual [Device & Common]
This manual explains devices and parameters for structured programs provided
by GX Works2.
FX
Structured
FX Series User's Manual -Data Communication Edition
This manual explains details of simple N:N link, parallel link, computer link, no-protocol communication (RS instruction), programming communication and inverter communication for FX PLCs. Explanation of instructions and instructions used in program examples are expressed for GX Developer and FX-PCS/WIN.
Individual manuals
This manual explains details of each special unit/block. Explanation of instructions and instructions used in program examples are expressed for GX Developer and FX-PCS/WIN.
*1. Detailed explanation may be provided by a separate manual in some products.
FX
Special
unit/block
FXCPU Structured Programming Manual [Basic & Applied Instruction]
This manual explains sequence instructions for structured programs provided by GX Works2.
(This manual)
FX
Structured
FXCPU Structured Programming Manual [Application Functions]
This manual explains application functions for structured programs provided by GX Works2.
FX
Structured
(Manual supplied with product or additional Manual )*1
(Additional Manual)
9
FXCPU Structured Programming Manual [Application Functions]
3. When using FX0S/FX0/FX0N/FXU/FX2C PLCs
(Additional Manual)
(Additional Manual)
(Additional Manual)
(Additional Manual)
(Additional Manual)MELSEC-Q/L/F Structured Programming Manual (Fundamentals)
This manual explains programming methods, specifications, functions, etc. required to create structured programs.
Q/L/F
Structured
FXCPU Structured Programming Manual [Device & Common]
This manual explains devices and parameters for structured programs provided
by GX Works2.
FX
Structured
FX Series User's Manual -Data Communication Edition
This manual explains details of parallel link, computer link, no-protocol communication (RS instruction) and programming communication for FX PLCs. Explanation of instructions and instructions used in program examples are expressed for GX Developer and FX-PCS/WIN.
Individual manuals
This manual explains details of each special unit/block. Explanation of instructions and instructions used in program examples are expressed for GX Developer and FX-PCS/WIN.
*1. Detailed explanation may be provided by a separate manual in some products.
FX
Special
unit/block
FXCPU Structured Programming Manual [Basic & Applied Instruction]
This manual explains sequence instructions for structured programs provided by GX Works2.
(This manual)
FX
Structured
FXCPU Structured Programming Manual [Application Functions]
This manual explains application functions for structured programs provided by GX Works2.
FX
Structured
(Manual supplied with product or additional Manual )*1
10
FXCPU Structured Programming Manual [Application Functions]
Related Manuals This manual explains devices and parameters for structured programs provided by GX Works2. Refer to other manuals for sequence instructions and applied functions. This chapter introduces only reference manuals for this manual and manuals which describe the hardware information of PLC main units. Manuals not introduced here may be required in some applications. Refer to the manual of the used PLC main unit and manuals supplied together with used products. Contact the representative for acquiring required manuals.
Common among FX PLCs [structured]
FX3S/FX3G/FX3GC/FX3U/FX3UC PLCs
Manual name Manual number Supplied with product or Additional Manual Contents Model
name code MELSEC-Q/L/F Structured Programming Manual (Fundamentals) SH-080782 Additional Manual Programming methods, specifications, functions,
etc. required to create structured programs 13JW06
FXCPU Structured Programming Manual [Device & Common] JY997D26001 Additional Manual Devices, parameters, etc. provided in structured
projects of GX Works2 09R925
FXCPU Structured Programming Manual [Basic & Applied Instruction] JY997D34701 Additional Manual Sequence instructions provided in structured
projects of GX Works2 09R926
FXCPU Structured Programming Manual [Application Functions] JY997D34801 Additional Manual Application functions provided in structured
projects of GX Works2 09R927
Manual name Manual number Supplied with product or Additional Manual Contents Model
name code PLC main unit
FX3U Series Hardware Manual JY997D18801 Supplied with product
I/O specifications, wiring and installation of the PLC main unit FX3U extracted from the FX3U Series Users Manual - Hardware Edition. For detailed explanation, refer to the FX3U Series Users Manual - Hardware Edition.
-
FX3U Series User's Manual- Hardware Edition JY997D16501 Additional Manual
Details about the hardware including I/O specifications, wiring, installation and maintenance of the FX3U PLC main unit.
09R516
FX3UC (D, DS, DSS) Series Hardware Manual JY997D28601 Supplied with product
I/O specifications, wiring and installation of the PLC main unit FX3UC (D, DS, DSS) extracted from the FX3UC Series Users Manual - Hardware Edition. For detailed explanation, refer to the FX3UC Series Users Manual - Hardware Edition.
-
FX3UC-32MT-LT-2 Hardware Manual JY997D31601 Supplied with product
I/O specifications, wiring and installation of the PLC main unit FX3UC-32MT-LT-2 extracted from the FX3UC Series Users Manual - Hardware Edition. For detailed explanation, refer to the FX3UC Series Users Manual - Hardware Edition.
-
FX3UC Series User's Manual - Hardware Edition JY997D28701 Additional Manual
Details about the hardware including I/O specifications, wiring, installation and maintenance of the FX3UC PLC main unit.
09R519
FX3G Series Hardware Manual JY997D33401 Supplied with product
I/O specifications, wiring and installation of the PLC main unit FX3G extracted from the FX3G Series Users Manual - Hardware Edition. For detailed explanation, refer to the FX3G Series Users Manual - Hardware Edition.
-
FX3G Series User's Manual- Hardware Edition JY997D31301 Additional Manual
Details about the hardware including I/O specifications, wiring, installation and maintenance of the FX3G PLC main unit.
09R521
FX3GC Series Hardware Manual JY997D45201 Supplied with product
I/O specifications, wiring and installation of the PLC main unit FX3GC extracted from the FX3GC Series User's Manual - Hardware Edition. For detailed explanation, refer to the FX3GC Series User's Manual - Hardware Edition.
-
FX3GC Series User's Manual- Hardware Edition JY997D45401 Additional Manual
Details about the hardware including I/O specifications, wiring, installation and maintenance of the FX3GC PLC main unit.
09R533
11
FXCPU Structured Programming Manual [Application Functions]
FX1S/FX1N/FX1NC PLCs FX2N/FX2NC PLCs [whose production is finished]
PLC main unit
FX3S Series Hardware Manual JY997D48301 Supplied with product
I/O specifications, wiring and installation of the PLC main unit FX3S extracted from the FX3S Series User's Manual - Hardware Edition. For detailed explanation, refer to the FX3S Series User's Manual - Hardware Edition.
-
FX3S Series User's Manual- Hardware Edition JY997D48601 Additional Manual
Details about the hardware including I/O specifications, wiring, installation and maintenance of the FX3S PLC main unit.
09R535
Programming
FX3S/FX3G/FX3GC/FX3U/FX3UC User's Manual- Analog Control Edition JY997D16701 Additional Manual
Detaileds about the analog special function block (FX3U-4AD, FX3U-4DA, FX3UC-4AD) and analog special adapter (FX3U-****-ADP).
09R619
FX Series User's Manual -Data Communication Edition JY997D16901 Additional Manual
Details about simple N : N link, parallel link, comput