TZT 1/3PCS Infrared IR Wireless Remote Control Module Kits DIY Kit HX1838 For Arduino Raspberry Pi
inkl. MwSt. plus Shipping Costs
- Estimated Delivery : Up to 4 business days
- Free Shipping & Returns : On all orders over $200
SPECIFICATIONS
Application: Computer
Brand Name: TZT
Condition: New
Dissipation Power: ..
Functions: Electronic Module
High-concerned chemical: None
Operating Temperature: -40-+85
Origin: Mainland China
Package: DIY KIT
Range of application: Switch And Sensor For Arduino STM
Supply Voltage: ..
Type: Voltage Regulator
is_customized: Yes
Ultra-Thin Design: The ultra-thin infrared remote control offers a sleek look and easy integration into your setup.,Robust Durability: The PET sticking material ensures a lifespan of 20,000 times, promising long-term reliability.,High Transmission Distance: Achieve long-range control with a transmission distance of over 8 meters, perfect for various devices in the control room.,Versatile Application: Ideal for creating interactive works or remote control robots, offering endless DIY possibilities.,Customizable Functionality: Through programming, customize the IR receiver module to decode signals and control various devices.
Hot Selling New Infrared IR Wireless Remote Control Module Kits For Arduino Wholesale
The remote control does not include batteries

Features:
- 1 Transmission Distance: 8m above (specific and surroundings, the receiver sensitivity and other factors)
- 2 Effective angle: 60 degrees
- 3 Sticking Material: 0.125mmPET, the effective life of 20,000 times.
- 4. Stable quality, cost-effective
- 5 quiescent current 3-5uA, dynamic current 3-5mA.
#include
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
}
}
Step 1: Assemble Circuit:

ou will need one Arduino for this. I used a UNO, but just about any Arduino should work. First wire up the infrared receiver that came with your kit. There are 3 wires, PWR, GND, and SIG, I used port 11 for SIG. Note! some readers have reported that their sensor has different wiring, double check it yourself.
Step 2: Download IR Library
In order to reverse engineer the remote and obtain the codes for each button we are going to need to download and install the following library.
http://github.com/shirriff/Arduino-IRremote
Extract the file in your libraries directory. e.g. ( C:electronicsarduino-1.0.5libraries )
note: I had to rename the library because the name was too long, I just renamed it to IR.
Step 3: Add Library to sketch

With the IR folder ( or whatever you named it) now in your libraries directory, we can import it into a new sketch.
Start a new sketch and the Click
Sketch->Import Library->IR.
Step 4: Paste Code and compile
Paste the following code into the new sketch. Then verify it compiles.
#include
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
}
}
Step 5: Open the serial monitor

Connect the Arduino to your computer using the usb port, then upload the sketch. Open up the Serial Monitor, get the remote and press the buttons. Some hex codes should appear on the Serial Monitor.
Step 6: Record button codes
Step 7: Works on any remote!






| Color | 1PCS, 3PCS |
|---|---|
| Ships From | China Mainland |
Seien Sie die erste Kundenmeinung "TZT 1/3PCS Infrared IR Wireless Remote Control Module Kits DIY Kit HX1838 For Arduino Raspberry Pi"
Shipping policy
At our Company, we understand the importance of timely delivery. We offer a variety of shipping options to suit your needs, including standard, expedited, and express shipping. Our dedicated team works diligently to process and dispatch your orders promptly, aiming to deliver them to your doorstep within the estimated timeframe.
We strive to provide fast and reliable shipping to our customers. Here’s everything you need to know about our shipping process:
- Dispatch: Within 24 Hours
- Free shipping across all products on a minimum purchase of $99.
- International delivery time 5 to 7 business days
- Cash on delivery might be available
- Easy 30 days returns and exchanges
Please note that delivery times are estimates and may vary depending on factors such as product availability, destination, and carrier delay
Returns policy
We want you to be completely satisfied with your purchase from our website. If for any reason you are not entirely happy with your order, we’re here to help. Certain exclusions and conditions may apply, so we encourage you to review our detailed return policy for more information. Rest assured, our goal is to ensure your complete satisfaction with every purchase you make from our website
- Returned items must be unused, undamaged, and in the same condition as received.
- Original tags, labels, and packaging must be intact and included with the returned item.
- Proof of purchase, such as your order confirmation or receipt, is required for all returns.
























Bewertungen
Es gibt noch keine Bewertungen.