The 940nm Infrared LED Transmitter Module is a versatile electronic component designed to emit infrared light at a wavelength of 940 nanometers. This module is commonly used in remote control systems, communication applications, and various sensing technologies. Its ability to transmit infrared light makes it an essential component in devices such as TV remotes, IR communication systems, and proximity sensors.
Parameter | Value |
---|---|
Wavelength | 940 nm |
Forward Voltage | 1.2V - 1.4V |
Forward Current | 20mA |
Power Dissipation | 100mW |
Viewing Angle | 20° - 30° |
Operating Temperature | -40°C to +85°C |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (typically 3.3V or 5V) |
2 | GND | Ground |
3 | OUT | Output signal (connect to microcontroller) |
+5V (Arduino) ----->|----[220Ω]----|----> VCC (Module)
| |
GND OUT
| |
(GND) (Digital Pin)
/*
Example code to control a 940nm Infrared LED Transmitter Module
using an Arduino UNO. This code will turn the IR LED on and off
at 1-second intervals.
*/
const int irLedPin = 9; // Pin connected to the OUT pin of the module
void setup() {
pinMode(irLedPin, OUTPUT); // Set the 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:
Weak Signal Reception:
Overheating:
Q1: Can I use a higher voltage power supply?
Q2: How can I test if the IR LED is working?
Q3: Can I use this module for data communication?
By following this documentation, users can effectively integrate the 940nm Infrared LED Transmitter Module into their projects, ensuring optimal performance and reliability.