IR Receiver Sensor Arduino Compatible
ARD2-2222
$3.95
QTY | Price |
---|---|
1 | $3.95 |
Description
This is a new ultra-thin 38KHz universal IR receiver sensor, using the NEC encoding format. Perfect for receiving commands from a TV remote control and more. Runs at 3V to 5V - ideal for any microcontroller.
Test Code
/*
* 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
}
}
Features
- Detect infrared light
- Applications include home appliances, education etc.
Specifications
Voltage
5.0V
Infrared Remote Control Distance
More than 8 meters
Launch Tube Infrared Wavelength
940nm
Crystal frequency
455kHz crystal
Carrier frequency
38kHz
Encoding format
NEC
Chipset
VS1838
Colour
Black
Material
PCB
Dimensions
Length (mm)
28
Width (mm)
15
Height (mm)
2
Resources
You Might Also Like
All prices are in Australian Dollars and include GST. GST will be removed from your order if you are ordering from outside Australia.
Products may differ from pictured.
All trademarks and trade names are the properties of their respective owners. Wiltronics disclaims any proprietary interest in trademarks and trade names other than its own.