

The QRE1113 is an infrared emitter and phototransistor pair designed for proximity sensing and object detection. It operates by emitting infrared light and detecting the reflected light from nearby objects. This compact and efficient sensor is widely used in robotics and automation systems, particularly in applications such as line-following robots, obstacle detection, and edge detection.








The QRE1113 is a reflective optical sensor with the following key specifications:
| Parameter | Value |
|---|---|
| Operating Voltage (Vcc) | 1.7V to 5.5V |
| Forward Current (Emitter) | 20 mA (typical) |
| Collector Current (Detector) | 1 mA (typical) |
| Peak Wavelength | 940 nm |
| Detection Range | 0.2 mm to 3 mm |
| Operating Temperature | -40°C to +85°C |
| Package Type | Surface Mount (SMD) |
The QRE1113 has four pins, as described in the table below:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Emitter (+) | Positive terminal of the infrared LED (anode). |
| 2 | Emitter (-) | Negative terminal of the infrared LED (cathode). |
| 3 | Collector | Output of the phototransistor (collector terminal). |
| 4 | Emitter | Ground connection for the phototransistor. |
Below is an example of how to connect and use the QRE1113 with an Arduino UNO for line-following applications:
// QRE1113 Line Sensor Example with Arduino UNO
// Reads the sensor output and prints the value to the Serial Monitor.
const int sensorPin = A0; // Analog pin connected to QRE1113 collector
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read the analog value from the sensor
Serial.print("Sensor Value: ");
Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
delay(100); // Small delay for stability
}
sensorValue will be lower when the sensor detects a reflective surface (e.g., white) and higher for non-reflective surfaces (e.g., black).No Output Signal:
Weak or No Detection:
Inconsistent Readings:
Overheating:
Q1: Can the QRE1113 detect transparent objects?
A1: No, the QRE1113 is not suitable for detecting transparent objects as they do not reflect sufficient infrared light.
Q2: What is the maximum detection distance?
A2: The QRE1113 can detect objects up to 3 mm away, depending on the surface reflectivity.
Q3: Can I use the QRE1113 with a 3.3V system?
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 improve detection accuracy?
A4: Use the sensor in a controlled environment with minimal ambient light and ensure proper alignment with the target surface.
By following this documentation, you can effectively integrate the QRE1113 into your projects for reliable proximity sensing and object detection.