IR Infrared 38KHz Shielded Receiver 3-pin VS1838B
- Was RM2.20
-
RM1.00
- Product Code: IR VS1838B
- Availability: In Stock
Miniaturized receivers for infrared remote control systems. PIN diode and preamplifier are assembled on lead frame, the epoxy package is designed as IR filter. The demodulated output signal can directly be decoded by a microprocessor. is a standard IR remote control receiver series for 3V supply voltage with excellent suppression of disturbance signals.
Specifications:
Document: VS1838B data sheet link
Arduino Sketch:
#include <IRremote.h> int RECEIVE_PIN= 3; //Connect Pin OUT to Arduino Pin 3; IRrecv irreceiver(RECEIVE_PIN); decode_results results; void setup(){ Serial.begin(9600); irreceiver.enableIRIn(); // Start the receiver } void loop() { if (irreceiver.decode(&results)) { Serial.println(results.value, HEX); } }