The Yosoo Health Gear Liquid Level Sensor (Part ID: B08F3G3TD9) is a reliable and efficient sensor designed to measure the liquid level in a container. Operating at 24V DC, it provides a current output signal ranging from 4-20mA, which is a standard in industrial applications for transmitting sensor data over long distances with high accuracy and noise immunity.
Parameter | Value |
---|---|
Operating Voltage | 24V DC |
Output Signal | 4-20mA |
Measurement Range | 0-5 meters (varies by model) |
Accuracy | ±0.5% FS |
Operating Temperature | -10°C to 60°C |
Material | Stainless Steel |
Cable Length | 5 meters |
Pin Number | Description | Color Code |
---|---|---|
1 | Power Supply (+24V) | Red |
2 | Ground (GND) | Black |
3 | Signal Output (4-20mA) | White |
Power Supply Connection:
Signal Output Connection:
Circuit Example:
// Example code for reading the 4-20mA signal from the Yosoo Health Gear
// Liquid Level Sensor using an Arduino UNO
const int sensorPin = A0; // Analog input pin for the sensor
float sensorValue = 0; // Variable to store the sensor value
float current = 0; // Variable to store the calculated current
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the analog input
current = (sensorValue / 1023.0) * 20.0; // Convert to current (4-20mA)
Serial.print("Current: ");
Serial.print(current);
Serial.println(" mA");
delay(1000); // Wait for 1 second before the next reading
}
No Signal Output:
Inaccurate Readings:
Fluctuating Signal:
Q1: Can this sensor be used with liquids other than water?
Q2: What is the maximum cable length for this sensor?
Q3: How do I convert the 4-20mA signal to a readable value?
By following this documentation, users can effectively integrate and utilize the Yosoo Health Gear Liquid Level Sensor in their applications, ensuring accurate and reliable liquid level measurements.