

The PLC OUTSEAL V3 is a high-performance programmable logic controller (PLC) designed by OUTSEAL for industrial automation applications. This controller is engineered to operate reliably in harsh environments, thanks to its robust sealing that provides protection against dust and moisture. It supports a wide range of input/output (I/O) configurations, making it suitable for diverse automation tasks, from simple machine control to complex process management.








| Parameter | Specification |
|---|---|
| Manufacturer | OUTSEAL |
| Part ID | PLC OUTSEAL V3 |
| Operating Voltage | 24V DC |
| Power Consumption | 10W (typical) |
| Input Channels | 8 digital inputs, 4 analog inputs |
| Output Channels | 8 digital outputs, 2 analog outputs |
| Communication Protocols | Modbus RTU, RS-485, Ethernet |
| Operating Temperature | -20°C to 60°C |
| Protection Rating | IP67 (dustproof and waterproof) |
| Programming Language | Ladder Logic, Function Block Diagram |
| Memory | 256 KB program memory, 512 KB data memory |
| Dimensions | 120mm x 80mm x 50mm |
| Pin Number | Label | Description |
|---|---|---|
| DI1 | Digital In 1 | First digital input channel |
| DI2 | Digital In 2 | Second digital input channel |
| DI3 | Digital In 3 | Third digital input channel |
| DI4 | Digital In 4 | Fourth digital input channel |
| DI5 | Digital In 5 | Fifth digital input channel |
| DI6 | Digital In 6 | Sixth digital input channel |
| DI7 | Digital In 7 | Seventh digital input channel |
| DI8 | Digital In 8 | Eighth digital input channel |
| Pin Number | Label | Description |
|---|---|---|
| DO1 | Digital Out 1 | First digital output channel |
| DO2 | Digital Out 2 | Second digital output channel |
| DO3 | Digital Out 3 | Third digital output channel |
| DO4 | Digital Out 4 | Fourth digital output channel |
| DO5 | Digital Out 5 | Fifth digital output channel |
| DO6 | Digital Out 6 | Sixth digital output channel |
| DO7 | Digital Out 7 | Seventh digital output channel |
| DO8 | Digital Out 8 | Eighth digital output channel |
| Pin Number | Label | Description |
|---|---|---|
| AI1 | Analog In 1 | First analog input channel |
| AI2 | Analog In 2 | Second analog input channel |
| AI3 | Analog In 3 | Third analog input channel |
| AI4 | Analog In 4 | Fourth analog input channel |
| AO1 | Analog Out 1 | First analog output channel |
| AO2 | Analog Out 2 | Second analog output channel |
| Pin Number | Label | Description |
|---|---|---|
| V+ | Power + | Positive power supply (24V DC) |
| V- | Power - | Negative power supply (ground) |
| COM1 | RS-485 A | RS-485 communication line A |
| COM2 | RS-485 B | RS-485 communication line B |
| ETH | Ethernet | Ethernet communication port |
The PLC OUTSEAL V3 can communicate with an Arduino UNO via Modbus RTU over RS-485. Below is an example Arduino sketch for reading a digital input from the PLC:
#include <ModbusMaster.h>
// Instantiate ModbusMaster object
ModbusMaster node;
void setup() {
Serial.begin(9600); // Initialize serial communication
node.begin(1, Serial); // Set Modbus slave ID to 1
}
void loop() {
uint8_t result;
uint16_t data;
// Read digital input status from PLC (address 0x0000)
result = node.readDiscreteInputs(0x0000, 1);
if (result == node.ku8MBSuccess) {
data = node.getResponseBuffer(0); // Get the input status
Serial.print("Digital Input 1 Status: ");
Serial.println(data ? "ON" : "OFF");
} else {
Serial.println("Failed to read from PLC");
}
delay(1000); // Wait 1 second before next read
}
PLC Not Powering On
Inputs/Outputs Not Responding
Communication Failure
Moisture/Dust Ingress
Q: Can the PLC OUTSEAL V3 be used outdoors?
Q: What programming software is compatible with this PLC?
Q: How do I update the firmware?
Q: Can I expand the I/O channels?