HX1838 VS1838 NEC Infrared IR Remote Control Sensor Module For Arduino

  1. Crystal: the oscillation frequency of 455.
  2. Button: free height is less than 3mm, the force 200-350g, the life of more than 200 000.
  3. Photo-detector and preamplifier in one package.
  4. Internal filter for PCM frequency.
  5. Improved shielding against EMI.
  6. Don’t forget to add CR2025 Battery to your Cart as this remote does not come with a battery

EGP50.00

Out of stock

Out of stock

15 People watching this product now!
  • Pick up from the Ekostra Store

To pick up today

Free

  • Courier delivery

Our courier will deliver to the specified address

1-3 Days

50 LE

  • Free 14-Day returns

Payment Methods:

Description

This is HX1838 VS1838 NEC Infrared IR Wireless Remote Control Sensor Module For Arduino. The sensor uses HX1838, with high sensitivity and Operating voltage 5V. Output form Digital output. VCC: 3.3V-5V external voltage (can be directly connected to the 5v microcontroller and 3.3v microcontroller).

Kit theory test distance of about 5-8 meters, but the practical application depends on the ambient factors you use, as well as the middle barrier (such as diaphragm, glass, obstructions or other material blocking),

Receiving head with HX1838 with power work instructions lights, receive 38K frequency any remote coding data.

This is new ultra-thin 38K universal infrared IR Remote Control , NEC encoding format 1-21-key remote control, USB port stereo, car MP3, foot bath, lighting, digital photo frame, microcontroller development board, learning board, etc.

Note: IR Remote does not come with Battery (CR2025) you have to buy it separately.


Features:

  1. Crystal: the oscillation frequency of 455
  2. Encoding: the encoding format of the NEC, upd6122 encoding scheme, the user code 00FF, key coding below
  3. Button: free height is less than 3mm, the force 200-350g, the life of more than 200 000
  4. Photo-detector and preamplifier in one package
  5. Internal filter for PCM frequency
  6. Improved shielding against EMI

Package Includes:

1 x IR Remote Control Module

1 x IR Telecontrol

1x Receiver.


Tutorial

Arduino Infrared Remote Tutorial

Specification

Shipping Info

Weight 0.0000 g

Library + Code

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