

The Grove Infrared Emitter, manufactured by Seeed Studio, is a compact and efficient device designed to emit infrared (IR) light. It is commonly used in remote control systems, proximity sensing, and data transmission applications. The module is part of the Grove ecosystem, making it easy to integrate with other Grove-compatible devices and microcontrollers like Arduino.
This component is ideal for projects requiring wireless communication or object detection, such as TV remote controls, IR beacons, or obstacle detection systems.








The Grove Infrared Emitter is designed for simplicity and reliability. Below are its key technical details:
The Grove Infrared Emitter uses a standard 4-pin Grove connector. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | Power supply (3.3V or 5V) |
| 2 | GND | Ground |
| 3 | NC | Not connected (reserved) |
| 4 | Signal | Control signal for IR emission |
The Grove Infrared Emitter is straightforward to use in a circuit. Below are the steps and best practices for integrating it into your project:
The following example demonstrates how to use the Grove Infrared Emitter with an Arduino UNO to send IR signals.
/*
Example: Sending IR signals using the Grove Infrared Emitter
This code demonstrates how to toggle the IR emitter on and off.
Connect the Grove Infrared Emitter to D3 on the Arduino UNO.
*/
#define IR_EMITTER_PIN 3 // Define the GPIO pin connected to the IR emitter
void setup() {
pinMode(IR_EMITTER_PIN, OUTPUT); // Set the IR emitter pin as an output
}
void loop() {
digitalWrite(IR_EMITTER_PIN, HIGH); // Turn on the IR emitter
delay(1000); // Keep it on for 1 second
digitalWrite(IR_EMITTER_PIN, LOW); // Turn off the IR emitter
delay(1000); // Keep it off for 1 second
}
No IR Emission Detected
IR Signal Not Recognized by Receiver
Overheating
Q: Can I use the Grove Infrared Emitter with a Raspberry Pi?
A: Yes, the Grove Infrared Emitter can be used with a Raspberry Pi. Use a Grove HAT or connect the Signal pin to a GPIO pin on the Raspberry Pi. Ensure the voltage levels are compatible.
Q: How can I test if the IR emitter is working?
A: You can use a smartphone camera to check for IR light. Point the camera at the emitter while it is active, and you should see a faint purple light.
Q: Is the Grove Infrared Emitter compatible with all IR receivers?
A: The emitter operates at a wavelength of 940nm, which is standard for most IR receivers. However, ensure the receiver supports this wavelength for optimal performance.