The WLC Omron 61F-G-AP is a liquid level controller designed for monitoring and controlling the level of liquids in various applications. It is widely used in industrial environments due to its compact design, high reliability, and robust performance. This component is ideal for applications such as water supply systems, wastewater management, and industrial liquid level monitoring.
The following table outlines the key technical details of the WLC Omron 61F-G-AP:
Specification | Details |
---|---|
Power Supply Voltage | 100-240 VAC |
Power Consumption | Approx. 3.5 VA |
Operating Temperature | -10°C to 55°C |
Control Output | SPDT relay output (5 A at 250 VAC, resistive load) |
Electrode Voltage | Approx. 8 VAC |
Electrode Current | Approx. 1 mA |
Response Time | Approx. 80 ms |
Mounting | DIN rail or screw mounting |
Dimensions | 49.4 mm (W) × 38 mm (H) × 84 mm (D) |
Weight | Approx. 120 g |
The WLC Omron 61F-G-AP features a terminal block for wiring. Below is the pin configuration:
Terminal | Description |
---|---|
1 | Power supply input (L) |
2 | Power supply input (N) |
3 | Common terminal for electrodes |
4 | High-level electrode input |
5 | Low-level electrode input |
6 | Relay output (NO - Normally Open) |
7 | Relay output (COM - Common) |
8 | Relay output (NC - Normally Closed) |
While the WLC Omron 61F-G-AP is primarily an industrial component, it can be interfaced with an Arduino UNO for monitoring purposes. Below is an example code snippet to read the relay output:
// Define the pin connected to the relay output (NO terminal)
const int relayPin = 2;
void setup() {
// Initialize the relay pin as an input
pinMode(relayPin, INPUT);
// Start the serial communication for debugging
Serial.begin(9600);
}
void loop() {
// Read the state of the relay output
int relayState = digitalRead(relayPin);
// Check if the relay is activated (liquid level detected)
if (relayState == HIGH) {
Serial.println("Liquid level is within the desired range.");
} else {
Serial.println("Liquid level is outside the desired range.");
}
// Add a small delay to avoid flooding the serial monitor
delay(500);
}
Note: Use an optocoupler or relay module to safely interface the WLC Omron 61F-G-AP with the Arduino, as the relay output operates at higher voltages.
The controller does not power on:
Relay output does not activate:
Erratic or false triggering:
Electrodes fail to detect liquid levels:
Q: Can the WLC Omron 61F-G-AP be used with non-conductive liquids?
A: No, this controller is designed for conductive liquids. It relies on the conductivity of the liquid to detect levels.
Q: What is the maximum cable length for electrode connections?
A: The maximum cable length depends on the installation environment, but shielded cables up to 50 meters are typically recommended.
Q: Can the controller handle high-pressure environments?
A: The controller itself is not exposed to pressure, but the electrodes must be suitable for the pressure conditions in the tank.
Q: Is the WLC Omron 61F-G-AP compatible with DC power supplies?
A: No, the controller requires an AC power supply within the range of 100-240 VAC.