

The 220V AC Optocoupler Isolation Module (Manufacturer: Robu, Part ID: WC_PAN_05) is a device designed to provide electrical isolation between high-voltage AC circuits and low-voltage control circuits. It uses an optocoupler to transmit signals optically, ensuring that there is no direct electrical connection between the two circuits. This isolation protects sensitive low-voltage components from high-voltage surges and noise, making it ideal for industrial and home automation applications.








| Parameter | Value |
|---|---|
| Operating Voltage (Input) | 220V AC |
| Output Voltage (Control) | 3.3V to 5V DC |
| Isolation Voltage | ≥ 2500V |
| Optocoupler Type | Phototransistor-based |
| Response Time | ≤ 20 µs |
| Dimensions | 50mm x 25mm x 15mm |
| Mounting Type | PCB Mountable |
| Operating Temperature | -25°C to +85°C |
| Pin Name | Description |
|---|---|
| AC IN+ | High-voltage AC input (Live wire) |
| AC IN- | High-voltage AC input (Neutral wire) |
| Pin Name | Description |
|---|---|
| VCC | Positive DC supply (3.3V to 5V) |
| GND | Ground (0V reference) |
| OUT | Digital output signal (High/Low) |
Connect the High-Voltage Side:
Connect the Low-Voltage Side:
Verify Connections:
Power On:
Below is an example of how to use the module with an Arduino UNO to detect the presence of 220V AC.
// Define the pin connected to the OUT pin of the module
const int optoPin = 2; // Digital pin 2 on Arduino
void setup() {
pinMode(optoPin, INPUT); // Set optoPin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int signal = digitalRead(optoPin); // Read the signal from the module
if (signal == HIGH) {
Serial.println("AC Voltage Detected"); // Print message if AC is present
} else {
Serial.println("No AC Voltage"); // Print message if AC is absent
}
delay(500); // Wait for 500ms before the next reading
}
No Output Signal on the OUT Pin:
Unstable Output Signal:
Module Overheating:
Arduino Not Detecting Signal:
Q1: Can this module be used with a 110V AC source?
A1: No, this module is specifically designed for 220V AC. Using it with 110V AC may result in unreliable operation.
Q2: Is the module suitable for switching high-power loads?
A2: No, this module is intended for signal isolation only. Use a relay or solid-state switch for high-power loads.
Q3: Can I use this module with a Raspberry Pi?
A3: Yes, the module can be used with a Raspberry Pi. Ensure the OUT pin voltage is compatible with the Raspberry Pi's GPIO input levels.
Q4: What is the maximum distance between the high-voltage and low-voltage sides?
A4: The module provides electrical isolation, but for safety, keep the high-voltage and low-voltage sides physically separated by at least a few centimeters.
This concludes the documentation for the 220V AC Optocoupler Isolation Module. Always prioritize safety when working with high-voltage circuits!