

A float sensor, manufactured by R.M ENTERPRISE with part ID SENSOR, is a device designed to detect the level of liquid within a tank or container. It operates using a buoyant float that moves with the liquid level, triggering a switch or sending a signal when a specific level is reached. This simple yet effective mechanism makes float sensors highly reliable for liquid level monitoring.








The following table outlines the key technical details of the R.M ENTERPRISE float sensor:
| Parameter | Specification |
|---|---|
| Operating Voltage | 5V to 24V DC |
| Maximum Current Rating | 500mA |
| Contact Type | Normally Open (NO) or Normally Closed (NC) |
| Material | Polypropylene (PP) |
| Operating Temperature | -10°C to 85°C |
| Float Movement Range | 10mm to 50mm |
| Cable Length | 1 meter |
| Mounting Type | Vertical or Horizontal |
The float sensor typically has two wires for connection. The table below describes the wiring:
| Wire Color | Description |
|---|---|
| Red | Positive terminal (VCC) |
| Black | Signal output or ground (GND) |
Wiring the Sensor:
Circuit Design:
Example Circuit:
Below is an example code to read the float sensor's state using an Arduino UNO:
// Float Sensor Example Code
// This code reads the state of the float sensor and prints it to the Serial Monitor.
const int floatSensorPin = 2; // Connect the black wire to digital pin 2
int sensorState = 0; // Variable to store the sensor state
void setup() {
pinMode(floatSensorPin, INPUT); // Set the float sensor pin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
sensorState = digitalRead(floatSensorPin); // Read the sensor state
if (sensorState == HIGH) {
// If the sensor is HIGH, the float is at the trigger level
Serial.println("Liquid level reached!");
} else {
// If the sensor is LOW, the float is below the trigger level
Serial.println("Liquid level below threshold.");
}
delay(500); // Wait for 500ms before reading again
}
Sensor Not Responding:
False Triggering:
Sensor Stuck in One State:
No Output Signal:
Q1: Can the float sensor be used with liquids other than water?
A1: Yes, the float sensor can be used with various non-corrosive liquids. However, ensure the liquid is compatible with the sensor's material (polypropylene).
Q2: How do I switch between Normally Open (NO) and Normally Closed (NC) modes?
A2: Some float sensors allow switching between NO and NC by inverting the mounting orientation. Refer to the manufacturer's instructions for details.
Q3: Can the sensor be used in high-pressure environments?
A3: The float sensor is not designed for high-pressure applications. Use a sensor rated for high pressure if required.
Q4: Is the sensor suitable for outdoor use?
A4: The sensor can be used outdoors if proper waterproofing and protection from extreme conditions are ensured.