Infrared remote control with HX1838 infrared module
This infrared remote control is perfect for controlling your Arduino without significant hardware effort. The remote control can also be used to create a simple user interface, for example, to make settings on the Arduino. You can download an Arduino library for control from GitHub at the following link https://github.com/z3t0/Arduino-IRremote.
Recommended Accessories:
Connections:
IR Module => Arduino UNO
- => GND
Middle => 5V
S => Pin 11
Arduino Sketch:
#include//Include Arduino library which can be downloaded from GitHub
int receiver = 11; //PIN where the IR receiver is connected
IRrecv irrecv(receiver);//Create a new instance with the name receiver
decode_results results;
void setup() {
Serial.begin(9600);
irrecv.enableIRIn(); //Start the receiver
}
void loop() {
if (irrecv.decode(&results)) { //Detect IR signal
Serial.println (results.value, HEX); //Show HEX number
irrecv.resume(); //Next number
}
}
Technical Details:
- Operating voltage: 5V
- Receiver: HX1838
- Maximum transmission distance: 8m
- Remote control size: 8.5 x 4 x 0.7mm
- Remote control battery: CR2032
- Weight: 21g
Scope of Delivery:
- 1x Remote control
- 1x Infrared LED
- 1x Receiver module
- 3x Jumper wire 20cm
Infrared remote control with HX1838 infrared module
- Brand: purecrea
- Product Code: 420123
- Availability: In Stock
-
CHF5,90
- Ex Tax: CHF5,46
Related Products
IR Infrared Flame Sensor
With this infrared flame sensor, with amplifier, your Arduino can detect flames or you can evaluate ..
CHF3,90 Ex Tax: CHF3,61
M5Stack Mini Infrared IR Remote Unit
IR remote controls are widely used in consumer electronics. This M5Stack Infrared Unit can be used t..
CHF6,90 Ex Tax: CHF6,38
38khz IR Transmitter Module
This is a 38khz IR transmitter module, which can be easily controlled with an Arduino. The module ca..
CHF3,90 Ex Tax: CHF3,61
IR Receiver Module 38khz
This is a 38khz IR receiver module that can be easily read with an Arduino. The module can be easily..
CHF3,90 Ex Tax: CHF3,61
Gravity IR Kit for Arduino
IR is often used in remote controls. With this IR receiver, the Arduino project can receive commands..
CHF9,90 Ex Tax: CHF9,16








