Wish List 0

Infrared Ir Wireless Remote Control Module Kit For Arduino

Rs. 45.00 Rs. 52.00

  • Product Code: SEN-IR
  • SKU -
  • Availability: In Stock
  • Price in reward points: 1
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-The Infrared IR Wireless Remote Control Module Kit for Arduino consists of ultra-skinny infrared faraway control and 38KHz infrared receiver module.
-This mini narrow infrared far off manage with 20 feature keys. I
-ts transmit distances up to 8 meters.
-Ideal for managing a selection of system indoors.

-IR receiver module can receive a popular 38KHz modulation remote manage sign.
-You can decode the faraway manipulate signal through Arduino programming.
-You can layout an expansion of far off manage robots and interactive works.

Features :
1. Depending on the surrounding environment and the sensitivity of the receiver the transmission distance may be affected.
2. Photo-detector and preamplifier in one package.
3. Internal filter for PCM frequency.
4. Improved shielding against EMI.


SPECIFICATIONS:
Effective angle          60°
Transmission distance    up to 8m(depending on the surrounding environment, the sensitivity of the receiver, etc).
Sticking material        0.125mmPET
Effective life           20,000 times
Static current           3uA – 5uA
Dynamic current          3mA – 5mA
Battery                  CR2025 Button batteries
OVERVIEW:
Battery              CR2025 160mAh button battery
Effective angle      60°
Sticking material    0.125mmPET
Effective life       20,000 times
Static current       3uA – 5uA
Dynamic current      3mA – 5mA

PACKAGE INCLUDES:

1 PCS x Infrared Ir Wireless Remote Control Module Kit

1 PCS x IR Receiver.

3 PCS x F-F Jumper cable.

1 PCS x LED.

//SOURE CODE TAKEN FROM BELOW LINK

//https://www.circuitbasics.com/arduino-ir-remote-receiver-tutorial/

#include <IRremote.h>


const int RECV_PIN = 7;

IRrecv irrecv(RECV_PIN);

decode_results results;

unsigned long key_value = 0;


void setup(){

  Serial.begin(9600);

  irrecv.enableIRIn();

  irrecv.blink13(true);

}


void loop(){

  if (irrecv.decode(&results)){

 

        if (results.value == 0XFFFFFFFF)

          results.value = key_value;


        switch(results.value){

          case 0xFFA25D:

          Serial.println("CH-");

          break;

          case 0xFF629D:

          Serial.println("CH");

          break;

          case 0xFFE21D:

          Serial.println("CH+");

          break;

          case 0xFF22DD:

          Serial.println("|<<");

          break;

          case 0xFF02FD:

          Serial.println(">>|");

          break ;  

          case 0xFFC23D:

          Serial.println(">|");

          break ;               

          case 0xFFE01F:

          Serial.println("-");

          break ;  

          case 0xFFA857:

          Serial.println("+");

          break ;  

          case 0xFF906F:

          Serial.println("EQ");

          break ;  

          case 0xFF6897:

          Serial.println("0");

          break ;  

          case 0xFF9867:

          Serial.println("100+");

          break ;

          case 0xFFB04F:

          Serial.println("200+");

          break ;

          case 0xFF30CF:

          Serial.println("1");

          break ;

          case 0xFF18E7:

          Serial.println("2");

          break ;

          case 0xFF7A85:

          Serial.println("3");

          break ;

          case 0xFF10EF:

          Serial.println("4");

          break ;

          case 0xFF38C7:

          Serial.println("5");

          break ;

          case 0xFF5AA5:

          Serial.println("6");

          break ;

          case 0xFF42BD:

          Serial.println("7");

          break ;

          case 0xFF4AB5:

          Serial.println("8");

          break ;

          case 0xFF52AD:

          Serial.println("9");

          break ;      

        }

        key_value = results.value;

        irrecv.resume(); 

  }

}

https://youtu.be/iFpAqG90zY0

15 days

Write a review

Please login or register to review