The FX2N PLC (Programmable Logic Controller) is a compact and versatile automation device manufactured by Mitsubishi Clone. Designed for industrial control and automation applications, the FX2N-14MR model is part of the FX2N series, offering reliable performance, modular expandability, and support for multiple programming languages such as ladder logic. This PLC is ideal for small to medium-sized automation tasks, including machine control, process automation, and data acquisition.
The FX2N-14MR is a compact PLC with built-in input and output capabilities, making it suitable for standalone or modular applications.
Parameter | Specification |
---|---|
Manufacturer | Mitsubishi Clone |
Model Number | FX2N-14MR |
Power Supply Voltage | 24V DC or 100-240V AC (model-specific) |
Digital Inputs | 8 |
Digital Outputs | 6 (Relay type) |
Programming Language | Ladder Logic, Instruction List, etc. |
Communication Ports | RS-232, RS-485 (optional modules) |
Memory Capacity | 8,000 steps |
Expansion Capability | Yes (via additional I/O modules) |
Operating Temperature | 0°C to 55°C |
Dimensions | 90mm x 75mm x 60mm |
The FX2N-14MR features a terminal block for connecting inputs, outputs, and power. Below is the pin configuration:
Pin Number | Description | Signal Type |
---|---|---|
X0 | Input 0 | Digital Input |
X1 | Input 1 | Digital Input |
X2 | Input 2 | Digital Input |
X3 | Input 3 | Digital Input |
X4 | Input 4 | Digital Input |
X5 | Input 5 | Digital Input |
X6 | Input 6 | Digital Input |
X7 | Input 7 | Digital Input |
Pin Number | Description | Signal Type |
---|---|---|
Y0 | Output 0 | Relay Output |
Y1 | Output 1 | Relay Output |
Y2 | Output 2 | Relay Output |
Y3 | Output 3 | Relay Output |
Y4 | Output 4 | Relay Output |
Y5 | Output 5 | Relay Output |
Pin Number | Description |
---|---|
L/+ | Live/Positive Power |
N/- | Neutral/Negative Power |
The FX2N PLC can communicate with an Arduino UNO via RS-232 or RS-485. Below is an example of Arduino code to send a signal to the PLC:
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial plcSerial(10, 11); // RX = pin 10, TX = pin 11
void setup() {
// Initialize serial communication
Serial.begin(9600); // For debugging
plcSerial.begin(9600); // Communication with FX2N PLC
Serial.println("Arduino to FX2N PLC Communication Initialized");
}
void loop() {
// Example: Send a signal to turn on Output Y0
byte command[] = {0x02, 0x30, 0x30, 0x30, 0x31, 0x03};
// Replace with actual command for your PLC
plcSerial.write(command, sizeof(command)); // Send command to PLC
Serial.println("Command sent to PLC");
delay(1000); // Wait for 1 second
}
Note: The command format depends on the PLC's communication protocol. Refer to the FX2N communication manual for details.
PLC Not Powering On
Inputs Not Responding
Outputs Not Activating
Communication Failure
Can the FX2N PLC be programmed without Mitsubishi software?
What is the maximum expansion capacity of the FX2N-14MR?
Is the FX2N PLC compatible with SCADA systems?
Can I use the FX2N PLC in outdoor environments?