0% found this document useful (0 votes)
44 views3 pages

IR Receiver Module

This IR receiver module reads infrared light values from an IR transmitter and prints them to the serial monitor. It operates on 5V power and has 3 pins - a digital signal input pin to read IR values, a ground pin, and a power pin. The module is small, lightweight, and can decode hexadecimal values from a remote control when its input is pointed at the IR transmitter.

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)
44 views3 pages

IR Receiver Module

This IR receiver module reads infrared light values from an IR transmitter and prints them to the serial monitor. It operates on 5V power and has 3 pins - a digital signal input pin to read IR values, a ground pin, and a power pin. The module is small, lightweight, and can decode hexadecimal values from a remote control when its input is pointed at the IR transmitter.

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/ 3

IR Receiver Module

DESCRIPTION:
This module usually used together with the IR transmit Module, This module can read
infrared light value and print in the Serial Monitor session.

Specification:
● Operation voltage: 5V
● 3Pin
● Size:24.5*15.5mm
● Weight:1.686g

PIN CONFIGURATION:
1、“S”: Digital signal input pin, used to read the value of infrared light.
2、“G”:Grourd
3、“R”: Power (5V DC)

1/3
Example:
In this example, you need an Infrared transmit device, likeIR Transmitter Module, or
mini remote controller, directly point the remoter to this module, which can read the
hexadecimal value of the infrared light and print on the window.
The connection as below:

Code:
# include <IRremote.h>
int RECV_PIN = 11; // define input pin on Arduino
IRrecv irrecv (RECV_PIN);
decode_results results;
void setup ()
{
Serial.begin (9600);
irrecv.enableIRIn (); // Start the receiver
}
void loop () {
2/3
if (irrecv.decode (& results))
{ Serial.println (results.value, HEX);
irrecv.resume (); // Receive the next value
}
}

Result:

3/3

You might also like