

The QRE1113, manufactured by Unit Electronics (Part ID: 1113), is an infrared (IR) reflective sensor designed for proximity detection and object presence sensing. It integrates an IR LED and a phototransistor in a compact package, enabling it to detect reflected IR light from nearby surfaces or objects. This makes it ideal for applications such as line-following robots, obstacle detection, and edge detection in automation systems.








| Parameter | Value |
|---|---|
| Manufacturer | Unit Electronics |
| Part ID | 1113 |
| Operating Voltage Range | 1.7V to 5.5V |
| Forward Current (IR LED) | 20 mA (typical) |
| Collector Current | 1 mA (typical) |
| Peak Wavelength | 940 nm |
| Detection Range | 0.2 mm to 3 mm (optimal) |
| Operating Temperature | -25°C to +85°C |
| Package Type | Surface Mount (SMD) |
The QRE1113 has four pins, as described in the table below:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Anode (A) | Positive terminal of the IR LED |
| 2 | Cathode (K) | Negative terminal of the IR LED |
| 3 | Collector (C) | Output of the phototransistor (signal output) |
| 4 | Emitter (E) | Ground connection for the phototransistor |
The following example demonstrates how to use the QRE1113 with an Arduino UNO to detect a reflective surface:
// Define the pin connected to the phototransistor's collector
const int sensorPin = A0; // Analog pin A0 for reading sensor output
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read the analog value from the sensor
// Print the sensor value to the Serial Monitor
Serial.print("Sensor Value: ");
Serial.println(sensorValue);
// Add a small delay to avoid overwhelming the Serial Monitor
delay(100);
}
Code Explanation:
sensorPin is connected to the phototransistor's collector, which outputs an analog voltage based on the reflected IR light.analogRead() function reads the sensor's output, and the value is printed to the Serial Monitor for observation.No Output Signal:
Inconsistent Readings:
Weak Signal:
Overheating:
Q1: Can the QRE1113 detect black surfaces?
A1: Black surfaces absorb most IR light, so the sensor may have difficulty detecting them. Use highly reflective surfaces for optimal performance.
Q2: What is the maximum detection range of the QRE1113?
A2: The sensor works best within 0.2 mm to 3 mm. Beyond this range, the signal strength decreases significantly.
Q3: Can I use the QRE1113 with a 3.3V microcontroller?
A3: Yes, the QRE1113 operates within a voltage range of 1.7V to 5.5V, making it compatible with 3.3V systems.
Q4: How do I reduce noise in the sensor output?
A4: Use a capacitor across the power supply pins to filter noise and ensure stable readings.
By following this documentation, users can effectively integrate the QRE1113 into their projects for reliable proximity and object detection.