DIGITAL INFRARED RECEIVER MODULE GO TO ARDUINO
search
  • DIGITAL INFRARED RECEIVER MODULE GO TO ARDUINO

DIGITAL INFRARED RECEIVER MODULE GO TO ARDUINO

€1.10
Quantity
immediate delivery

 

Security policy

 

Delivery policy

This IR is widely used in remote control. With this IR receiver, the Arduino project can receive the command from any remote IR controller if it has the correct decoder. Well it will also be easy to make your own IR controller using the IR transmitter.

Power Supply: 5V
Interface: Digital
Modulate Frequency: 38Khz
Module Interface Socket: JST PH2.0
Size: 30 * 20mm
Weight: 4g

Sample Code:
#include
int RECV_PIN = 11;
IRrecv irrecv(RECV_PIN);
decode_results results;
void setup()
{
Serial.begin(9600);
irrecv.enableIRIn(); // Start the receiver
}
void loop() {
if (irrecv.decode(&results)) {
Serial.println(results.value, HEX);
irrecv.resume(); // Receive the next value
}

703729
New