Ships from China
Keyestudio IR Receiver Module Kit(receiver module+remote controller+3Pin F-M dupont line) For Arduino
Availability: In stock
713 متبقي
Frequently bought together:

أنت تشاهد الآن:Keyestudio IR Receiver Module Kit(receiver module+remote controller+3Pin F-M dupont line) For Arduino

Keyestudio Micro bit 4WD Mecanum مع لوحة سيارة روبوت V2.0 مع نظام برمجة لغة Python لمجموعة السيارة الذكية Microbit
without-microbit, without-microbit
Total: 1,295 QAR
Product sharing
- Product information
- Product specifications
- High-concerned chemical: None
- is_customized: Yes
- Model Number: IR Receiver Module Kit
- Origin: Mainland China







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
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
}
}











