Ky 022 Infrared Ir Sensor Receiver Module For Arduino
Rs. 26.00 Rs. 32.00
- Product Code: SEN-IR
- SKU -
- Availability: 2-3 Days
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-Infrared IR Sensor Receiver Module for Arduino adopts 1838 infrared receiving head.
-Light resistance, strong electromagnetic interference, built-in infrared dedicated IC, can work under 500 lux light intensity.
-Widely used in stereo, TV, video machine, disc machine, set-top boxes, digital photo frame; car stereo, remote control toys, satellite receivers, hard disk player, air conditioner, heater; electric fan, lighting and other home appliances.
-IR Receiver Module is a 38KHz infrared receiver module which is Arduino compatible.
-It can receive the standard 38KHz modulated remote controller signal.
-Through programming the Arduino, you can realize decoding of the remote controller signal.
-Using this item, you can make a universal remote controller with the learning function.
SPECIFICATIONS: | |
Receiving angle | 90 °. |
Operating Frequency | 37.9KHz |
Receiving range | 18m |
Operating Voltage (VDC) | 2.7 ~ 5.5 |
Dimensions (mm) LxWxH | 25 x 15 x 15 |
Weight (gm) | 4 |
Shipment Weight | 0.125 kg |
Shipment Dimensions | 4 × 2 × 1 cm |
OVERVIEW: | |
Dimension | 2.5 x 1.5 x 1.5 cm. |
Receiving angle | 90 °. |
Working voltage | 2.7 ~ 5.5V. |
Frequency | 37.9KHz |
Receiving range | 18m. |
Weight | 4 gm. |
PACKAGE INCLUDES:
1 PCS x Ky 022 Infrared Ir Sensor Receiver Module For Arduino
//SOURCE CODE TAKEN FORM BELOW LINK
//https://arduinomodules.info/ky-022-infrared-receiver-module/
#include <IRremote.h>
int RECV_PIN = 11; // define input pin on Arduino
IRrecv irrecv(RECV_PIN);
decode_results results; // decode_results class is defined in IRremote.h
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
}
delay (100); // small delay to prevent reading errors
}
15 days