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...
Need help?
Do you have a question about the RB-See-185 and is the answer not in the manual?
Questions and answers