Free shipping! Keyestudio IR Receiver Module Kit(receiver module+remote controller+3Pin F-M dupont line) For Arduino
Free shipping! Keyestudio IR Receiver Module Kit(receiver module+remote controller+3Pin F-M dupont line) For Arduino
Regular price
$12.41 AUD
Regular price
Sale price
$12.41 AUD
Unit price
/
per
SPECIFICATIONS
Brand Name: NoEnName_Null
Model Number: IR Receiver Module Kit
is_customized: Yes
Introduction
This latest IR remote control kit is comprised of mini super-thin IR remote control and 38HKz IR receiving module. The mini super-thin IR remote control has 17 functional keys with transmission distance up to 8M. It is very suitable for indoor manipulation of various devices. The IR receving module can receive standard 38KHz-modulated remote control signal. By programming aduino, you can decode remote control signal, thus creating various remote control robots and interative works.
Specification
- Transmission Distance: up to 8m (depending on the surrounding environment, sensitivity of receiver and etc.)
- Effective Angle: 60°
- Surface material: 0.125mm PET(service life: 20,000 clicks)
- Static Current: 3~5uA; Dynamic Current: 3~5mA
Sample code:
#include <IRremote.h>
int RECV_PIN = 11; //define input pin on Aduino
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
}
}