

The Lift IR Sensor is an infrared-based sensor designed to detect the presence of objects or people near a lift (elevator). It operates by emitting infrared light and measuring the reflected signal to determine if an object is present. This sensor is widely used in lift systems to enhance safety, prevent door closures when objects are detected, and improve automation in elevator operations.








The Lift IR Sensor is designed for reliable and efficient operation in various environments. Below are its key technical details:
| Parameter | Specification |
|---|---|
| Operating Voltage | 3.3V to 5V DC |
| Operating Current | 20mA (typical) |
| Detection Range | 2 cm to 30 cm (adjustable) |
| Output Type | Digital (High/Low) |
| Infrared Wavelength | 940 nm |
| Response Time | < 2 ms |
| Operating Temperature | -10°C to 50°C |
| Dimensions | Varies by model (e.g., 30mm x 15mm) |
The Lift IR Sensor typically has three pins for interfacing:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply pin. Connect to 3.3V or 5V DC. |
| 2 | GND | Ground pin. Connect to the ground of the circuit. |
| 3 | OUT | Digital output pin. Outputs HIGH (1) when no object is detected, LOW (0) when an object is detected. |
Below is an example of how to connect and use the Lift IR Sensor with an Arduino UNO:
// Lift IR Sensor Example with Arduino UNO
// This code reads the sensor output and prints the detection status to the Serial Monitor.
const int sensorPin = 2; // Digital pin connected to the OUT pin of the sensor
int sensorState = 0; // Variable to store the sensor state
void setup() {
pinMode(sensorPin, INPUT); // Set the sensor pin as input
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorState = digitalRead(sensorPin); // Read the sensor output
if (sensorState == LOW) {
// Object detected
Serial.println("Object detected!");
} else {
// No object detected
Serial.println("No object detected.");
}
delay(500); // Wait for 500ms before the next reading
}
Sensor Not Detecting Objects
False Detections
Output Signal is Always HIGH
Output Signal is Always LOW
Q1: Can the Lift IR Sensor detect transparent objects?
A1: The sensor may have difficulty detecting transparent objects like glass due to low IR reflection. Use additional sensors for such applications.
Q2: What is the maximum detection range of the sensor?
A2: The detection range is typically adjustable between 2 cm and 30 cm, depending on the model.
Q3: Can I use the sensor with a 3.3V microcontroller?
A3: Yes, the sensor is compatible with both 3.3V and 5V systems.
Q4: How do I clean the sensor?
A4: Use a soft, dry cloth to clean the sensor lens. Avoid using water or harsh chemicals.
This concludes the documentation for the Lift IR Sensor. Follow the guidelines above for optimal performance and reliability.