SeeedStudio RB-See-185 Quick Start Manual

Grove infrared receiver

Advertisement

RB-See-185
Seeedstudio Grove Infrared Receiver
Grove - Infrared Receiver

Introduction

The Infrared Receiver is used to receive infrared signals and also used for remote control detection.
There is a IR detector on the Infrared Receiver which is used to get the infrared light emitted by the
Infrared Emitter. The IR detector have a demodulator inside that looks for modulated IR at 38 KHz. The
Infrared Receiver can receive signals well within 10 meters. If more than 10 meters , the receiver may
not get the signals. We often use the two Groves-the Infrared Receiver and the Grove - Infrared Emitter
to work together.

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the RB-See-185 and is the answer not in the manual?

Questions and answers

Summary of Contents for SeeedStudio RB-See-185

  • Page 1 RB-See-185 Seeedstudio Grove Infrared Receiver Grove - Infrared Receiver Introduction The Infrared Receiver is used to receive infrared signals and also used for remote control detection. There is a IR detector on the Infrared Receiver which is used to get the infrared light emitted by the Infrared Emitter.
  • Page 2 Features:  Grove compatible interface.  Supports 3.3V and 5V supply voltages. Application Ideas  Remote Control of robots, relays or other things Mechanic Dimensions  20mm by 24mm Usage Hardware Installation Connect the Transmitter module to Digital I/O 10 of the Grove - Base Shield on the receiving arduino. Programming The demo below is the IRrecvDemo.pde example provided by the IRremote library.
  • Page 3 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...

Table of Contents