

The LED Sequin - Royal Blue (Manufacturer Part ID: 1757) by Adafruit is a compact, decorative light-emitting diode (LED) designed for creative projects. Its vibrant royal blue color makes it ideal for adding illumination and sparkle to crafts, wearable electronics, and fashion designs. The LED Sequin is pre-mounted on a small PCB, making it easy to integrate into circuits without requiring additional soldering or resistors.








The following table outlines the key technical details of the LED Sequin - Royal Blue:
| Parameter | Value |
|---|---|
| Operating Voltage | 3V to 6V |
| Typical Current Draw | ~5mA |
| LED Color | Royal Blue |
| Dimensions | 0.5" x 0.3" (12.7mm x 7.6mm) |
| Mounting Holes | 2 x 1mm diameter |
| PCB Material | FR4 |
The LED Sequin has two solder pads for easy connection. The pin configuration is as follows:
| Pin Name | Description |
|---|---|
| + (Positive) | Connect to the positive voltage supply (3V to 6V). |
| - (Negative) | Connect to ground (GND). |
+ and - pads on the PCB.+ pad to the positive voltage supply and the - pad to ground.The LED Sequin can be easily controlled using an Arduino UNO. Below is an example of how to blink the LED Sequin using digital pin 9.
+ pad of the LED Sequin to Arduino pin 9.- pad of the LED Sequin to the Arduino GND pin.// Example code to blink the LED Sequin - Royal Blue
// Connect the + pad to pin 9 and the - 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:
+ to positive voltage, - to ground).LED Flickers or Is Dim:
LED Overheats:
Q: Can I connect multiple LED Sequins in parallel?
A: Yes, you can connect multiple LED Sequins in parallel. Ensure that the power supply can handle the total current draw (approximately 5mA per LED).
Q: Do I need an external resistor?
A: No, the LED Sequin has a built-in resistor, so no additional resistor is required.
Q: Can I use the LED Sequin with a 9V battery?
A: No, the maximum operating voltage is 6V. Using a 9V battery may damage the LED.
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 - Royal Blue into your projects and troubleshoot any issues that arise.