0% found this document useful (0 votes)
76 views2 pages

IR Transmitter Module PDF

This document provides information about an IR transmitter module. The module uses infrared light that is invisible to the human eye to transmit digital signals. It operates on 5V and has 3 pins - one for a digital input signal, one for 5V power, and one for ground. The module is small, measuring 37.5x15.5mm and weighing 1.348g. An example Arduino code is provided to blink the IR LED on the module.

Uploaded by

Dylan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
76 views2 pages

IR Transmitter Module PDF

This document provides information about an IR transmitter module. The module uses infrared light that is invisible to the human eye to transmit digital signals. It operates on 5V and has 3 pins - one for a digital input signal, one for 5V power, and one for ground. The module is small, measuring 37.5x15.5mm and weighing 1.348g. An example Arduino code is provided to blink the IR LED on the module.

Uploaded by

Dylan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

IR Transmitter Module

DESCRIPTION:
This module usually used together with the IR Receiver Module, this module’s
application are very wide in our common life. This module just like a LED, but
the color of light can’t be seen by human’ eye, you can see the light through
your camera of your phone.

Specification:
● Operation voltage: 5V

● 3Pin

● Size:37.5*15.5mm

● Weight: 1.348g

PIN CONFIGURATION:
1、“S”: Digital signal input pin
2、“+” : +5V
3、“-” :GND

1/2
Example:
In this example, we use the basic sketch in the Arduino IDE, blinking this Infrared
LED. You can’t see the light through your light by your eye, but you can catch the
infrared light by a infrared receive device, like , or just a camera.
The connection as below:

Code:
void setup()
{
pinMode(13, OUTPUT);
}

void loop()
{
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making thevoltage LOW
delay(1000); // wait for a second
}

2/2

You might also like