The 850nm IR LED Module (Manufacturer Part ID: 104735) by Shenzhen Xuan Yao Electronics CO Limited is a light-emitting diode designed to emit infrared light at a wavelength of 850 nanometers. This module is widely used in applications requiring invisible light, such as remote controls, optical communication systems, night vision devices, and proximity sensors. Its compact design and ease of integration make it a popular choice for both hobbyists and professionals.
Parameter | Value |
---|---|
Wavelength | 850 nm |
Forward Voltage (Vf) | 1.2V to 1.6V |
Forward Current (If) | 20mA (typical), 50mA (max) |
Power Dissipation | 100mW (max) |
Viewing Angle | 20° to 30° |
Operating Temperature | -25°C to +85°C |
Storage Temperature | -40°C to +100°C |
The 850nm IR LED Module typically has two pins: Anode and Cathode.
Pin Name | Description | Connection Notes |
---|---|---|
Anode | Positive terminal of the LED | Connect to the positive voltage supply. |
Cathode | Negative terminal of the LED | Connect to ground or the negative terminal. |
Power Supply: Ensure the module is powered with a voltage between 1.2V and 1.6V. Use a current-limiting resistor to prevent overcurrent damage.
Circuit Connection:
Testing: Use a camera (e.g., a smartphone camera) to verify the IR LED is emitting light, as infrared light is not visible to the human eye.
The 850nm IR LED Module can be easily interfaced with an Arduino UNO for applications like remote control or object detection.
// Example code to blink the 850nm IR LED using Arduino UNO
// The IR LED is connected to Pin 9 through a 220Ω resistor
const int irLedPin = 9; // Define the pin connected to the IR LED
void setup() {
pinMode(irLedPin, OUTPUT); // Set the IR LED pin as an output
}
void loop() {
digitalWrite(irLedPin, HIGH); // Turn the IR LED on
delay(1000); // Wait for 1 second
digitalWrite(irLedPin, LOW); // Turn the IR LED off
delay(1000); // Wait for 1 second
}
IR LED Not Emitting Light:
Overheating:
No Response in Application:
IR LED Works Intermittently:
Q1: How can I test if the IR LED is working?
A1: Use a smartphone or digital camera to view the LED while it is powered. The camera can detect infrared light, which will appear as a faint glow.
Q2: Can I use the IR LED without a resistor?
A2: No, a resistor is necessary to limit the current and prevent damage to the LED.
Q3: What is the maximum range of the 850nm IR LED?
A3: The range depends on the power supply, viewing angle, and environmental conditions. Typically, it can range from a few meters to over 10 meters in optimal conditions.
Q4: Is the 850nm wavelength safe for human eyes?
A4: Yes, 850nm infrared light is generally safe, but prolonged exposure at high intensities should be avoided.
This concludes the documentation for the 850nm IR LED Module. For further assistance, refer to the manufacturer's datasheet or contact technical support.