The Adafruit LED Sequin - Royal Blue is a compact, sewable electronics component that integrates a bright royal blue LED with a built-in resistor. This component is designed for wearable projects, allowing users to add light and color to textiles and clothing. It can be controlled by a microcontroller, such as an Arduino, to create various lighting effects including blinking, fading, or patterned sequences.
Pin Name | Description |
---|---|
+ | Anode (positive side, connect to power supply) |
- | Cathode (negative side, connect to ground) |
Power Supply: Connect the '+' pin of the LED Sequin to a power supply between 3.0V and 5.5V. For use with an Arduino, you can connect it to one of the digital pins set to HIGH, or to the 3.3V or 5V output pin for a constant light.
Ground Connection: Connect the '-' pin to the ground (GND) of your power source or microcontroller.
Sewing into Fabric: Use conductive thread to sew the LED Sequin into your textile project. Ensure that the conductive thread does not short-circuit by crossing over itself or other conductive threads.
Microcontroller Control: To control the LED with an Arduino, connect the '+' pin to a digital output pin and use code to turn the LED on and off.
// Define the pin where the LED Sequin is connected
const int ledPin = 9; // PWM pin for dimming capability
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
analogWrite(ledPin, 127); // Set the brightness to 50% (value between 0 and 255)
delay(1000); // Wait for 1 second
analogWrite(ledPin, 0); // Turn off the LED
delay(1000); // Wait for 1 second
}
Q: Can I wash garments with LED Sequins sewn into them?
A: Hand washing is possible, but you should remove any power sources (like batteries) and be cautious not to damage the electronics. Air dry completely before powering again.
Q: How many LED Sequins can I connect to a single microcontroller pin?
A: It depends on the current limit of the microcontroller pin. For an Arduino, it's safe to connect one LED Sequin per pin without exceeding the 40 mA per pin limit.
Q: Can I use the LED Sequin with a 3V coin cell battery?
A: Yes, the LED Sequin can operate at 3V, making it suitable for use with a coin cell battery for small projects or wearables.