Difference between revisions of "Infrared Receiver Module"

From LinkSprite Playgound
Jump to: navigation, search
(Created page with "==Introduction== File:Infrared Receiver Module.jpg ==Schematic== *[https://s3.amazonaws.com/linksprite/LinkerKit/Infrared+Receive.pdf Schematic] ==Resouces== *[http://...")
 
(Features)
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Introduction==
 
==Introduction==
 +
The Linker Infrared Receiver Module is used to receive infrared signals and also used for remote control detection. There is an IR detector on the Infrared Receiver which is used to get the infrared light emitted by the Infrared Emitter.
  
 
[[File:Infrared Receiver Module.jpg]]
 
[[File:Infrared Receiver Module.jpg]]
 +
 +
== Features ==
 +
 +
Dimensions: 20.9×24.8×11.5mm
 +
 +
Net weight: 2.4g
 +
 +
== Dimension ==
 +
 +
[[File:IR receive dimension.jpg]]
  
 
==Schematic==
 
==Schematic==
  
 
*[https://s3.amazonaws.com/linksprite/LinkerKit/Infrared+Receive.pdf Schematic]
 
*[https://s3.amazonaws.com/linksprite/LinkerKit/Infrared+Receive.pdf Schematic]
 +
 +
==Application Ideas==
 +
 +
'''test'''
 +
<syntaxhighlight lang="c">
 +
/*
 +
* IRremote: IRrecvDemo - demonstrates receiving IR codes with IRrecv
 +
* An IR detector/demodulator must be connected to the input RECV_PIN.
 +
* Version 0.1 July, 2009
 +
* Copyright 2009 Ken Shirriff
 +
* http://arcfn.com
 +
*/
 +
 +
#include <IRremote.h>
 +
 +
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
 +
  }
 +
}
 +
</syntaxhighlight>
 +
 +
[[File:Infrared Receiver module link.jpg]]
  
 
==Resouces==
 
==Resouces==
*[http://learn.linksprite.com/pcduino/arduino-ish-program/gpio/get-ir-source-code-by-linker-infrared-receive-on-pcduino/ Turial]
+
*[http://learn.linksprite.com/arduino/shields/use-linker-infrared-receiver-on-arduino/ Tutorial]

Latest revision as of 02:53, 19 June 2014

Introduction

The Linker Infrared Receiver Module is used to receive infrared signals and also used for remote control detection. There is an IR detector on the Infrared Receiver which is used to get the infrared light emitted by the Infrared Emitter.

Infrared Receiver Module.jpg

Features

Dimensions: 20.9×24.8×11.5mm

Net weight: 2.4g

Dimension

IR receive dimension.jpg

Schematic

Application Ideas

test <syntaxhighlight lang="c"> /*

* IRremote: IRrecvDemo - demonstrates receiving IR codes with IRrecv
* An IR detector/demodulator must be connected to the input RECV_PIN.
* Version 0.1 July, 2009
* Copyright 2009 Ken Shirriff
* http://arcfn.com
*/
  1. include <IRremote.h>

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
 }

} </syntaxhighlight>

Infrared Receiver module link.jpg

Resouces