

The LED Sequin - Emerald Green (Manufacturer Part ID: 1756) by Adafruit is a decorative light-emitting diode (LED) designed for use in creative projects, crafts, and electronics. This compact and easy-to-use component emits a vibrant emerald green light, making it ideal for adding visual appeal and illumination to your designs. Its small size and built-in resistor make it beginner-friendly and perfect for wearable electronics, art installations, and hobbyist projects.








The following table outlines the key technical details of the LED Sequin - Emerald Green:
| Parameter | Value |
|---|---|
| Manufacturer | Adafruit |
| Manufacturer Part ID | 1756 |
| LED Color | Emerald Green |
| Operating Voltage | 3V to 6V |
| Forward Current | ~5mA |
| Built-in Resistor | Yes (limits current to safe levels) |
| Dimensions | 0.28" x 0.35" (7mm x 9mm) |
| Mounting Type | Solderable pads |
The LED Sequin has two solderable pads for easy connection. The table below describes the pin configuration:
| Pin Name | Description |
|---|---|
| Positive (+) | Connect to the positive terminal of the power source |
| Negative (-) | Connect to the ground (GND) of the circuit |
The LED Sequin can be easily controlled using an Arduino UNO. Below is an example of how to connect and program the LED Sequin:
// Example code to blink the LED Sequin - Emerald Green
// Connect the Positive (+) pad to pin 9 and the Negative (-) pad to GND
const int ledPin = 9; // Pin connected to the LED Sequin
void setup() {
pinMode(ledPin, OUTPUT); // Set pin 9 as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(500); // Wait for 500 milliseconds
digitalWrite(ledPin, LOW); // Turn the LED off
delay(500); // Wait for 500 milliseconds
}
LED Does Not Light Up:
LED Flickers or Is Dim:
LED Overheats:
Q: Can I use the LED Sequin with a 9V battery?
A: No, the LED Sequin is designed for a maximum voltage of 6V. Using a 9V battery without additional current-limiting components may damage the LED.
Q: Do I need an external resistor for the LED Sequin?
A: No, the LED Sequin has a built-in resistor, so no additional resistor is required.
Q: Can I use multiple LED Sequins in a single circuit?
A: Yes, you can connect multiple LED Sequins in parallel. Ensure your power source can supply sufficient current for all LEDs.
Q: Is the LED Sequin waterproof?
A: No, the LED Sequin is not waterproof. If you need to use it in a wet environment, consider applying a waterproof coating or enclosing it in a protective case.
By following this documentation, you can effectively integrate the LED Sequin - Emerald Green into your projects and enjoy its vibrant illumination!