A floatless relay is an electronic device used to detect the level of liquid in a tank or container without the use of a mechanical float. It operates by sensing the conductivity of the liquid and is commonly used in applications such as water level control and automatic water supply systems. This component is highly reliable and maintenance-free, making it ideal for various industrial and domestic applications.
Parameter | Value |
---|---|
Operating Voltage | 24V DC / 110V AC / 220V AC |
Operating Current | 10mA - 100mA |
Power Consumption | < 3W |
Contact Capacity | 5A at 250V AC |
Sensitivity Range | 0 - 100kΩ |
Response Time | < 100ms |
Operating Temperature | -10°C to 55°C |
Storage Temperature | -25°C to 75°C |
Pin No. | Pin Name | Description |
---|---|---|
1 | COM | Common terminal for power supply |
2 | NC | Normally Closed contact |
3 | NO | Normally Open contact |
4 | E1 | Electrode 1 (connected to the liquid level sensor) |
5 | E2 | Electrode 2 (connected to the liquid level sensor) |
6 | GND | Ground terminal |
Power Supply Connection:
Sensor Connection:
Output Connection:
False Triggering:
No Response from Relay:
Intermittent Operation:
Q1: Can the floatless relay be used with any type of liquid?
Q2: How do I adjust the sensitivity of the floatless relay?
Q3: Can I use the floatless relay with an Arduino UNO?
// Arduino UNO and Floatless Relay Interface
const int relayPin = 2; // Pin connected to the relay's NO contact
const int sensorPin = A0; // Pin connected to the sensor output
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
pinMode(sensorPin, INPUT); // Set sensor pin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read sensor value
Serial.println(sensorValue); // Print sensor value to serial monitor
if (sensorValue > 500) { // Adjust threshold as needed
digitalWrite(relayPin, HIGH); // Activate relay
} else {
digitalWrite(relayPin, LOW); // Deactivate relay
}
delay(500); // Wait for 500 milliseconds
}
This code reads the sensor value and activates the relay when the liquid level is detected. Adjust the threshold value based on your specific requirements.
By following this documentation, users can effectively utilize the floatless relay in their applications, ensuring reliable and maintenance-free liquid level detection.