

The LED Sequin - Rose Pink (Manufacturer Part ID: 1792) by Adafruit is a decorative light-emitting diode (LED) designed for creative projects. This compact and stylish LED emits a soft rose pink glow, making it ideal for applications in crafts, wearable electronics, and fashion. Its small size and ease of use allow it to be integrated into a variety of projects, from illuminated clothing to artistic displays.








The following table outlines the key technical details of the LED Sequin - Rose Pink:
| Parameter | Value |
|---|---|
| Manufacturer | Adafruit |
| Part ID | 1792 |
| LED Color | Rose Pink |
| Operating Voltage | 3V to 6V |
| Typical Current Draw | ~5mA |
| Dimensions | 0.28" x 0.75" (7mm x 19mm) |
| Mounting Holes | 2 x 1.5mm diameter |
The LED Sequin has two solder pads for electrical connections. The table below describes the pin configuration:
| Pin | Label | Description |
|---|---|---|
| 1 | (+) | Positive terminal (connect to power supply or GPIO) |
| 2 | (-) | Negative terminal (connect to ground) |
The LED Sequin can be easily controlled using an Arduino UNO. Below is an example code to blink the LED Sequin:
// Example code to blink the LED Sequin - Rose Pink
// Connect the (+) pad of the LED Sequin to Arduino pin 9
// Connect the (-) pad of the LED Sequin 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:
Cause: Incorrect polarity.
Solution: Double-check the connections. Ensure the (+) pad is connected to the positive terminal and the (-) pad to ground.
Cause: Insufficient voltage.
Solution: Verify that the power source provides at least 3V.
LED Flickers or Is Dim:
Cause: Loose connections.
Solution: Ensure all connections are secure, especially when using conductive thread.
Cause: Low battery power.
Solution: Replace or recharge the power source.
LED Overheats:
Q: Can I use multiple LED Sequins in a single project?
A: Yes, you can connect multiple LED Sequins in parallel. Ensure your power source can supply sufficient current for all LEDs.
Q: Do I need an external resistor for the LED Sequin?
A: No, the LED Sequin includes an onboard resistor, so no additional resistor is required.
Q: Can I control the brightness of the LED Sequin?
A: Yes, you can use PWM (Pulse Width Modulation) on a microcontroller like Arduino to adjust the brightness.
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 enclosure.
This concludes the documentation for the LED Sequin - Rose Pink. For additional support, refer to Adafruit's official resources or community forums.