The Adafruit LED Sequin is a compact, sewable electronics component that brings a touch of light to wearable projects. It features a single warm white LED that is designed for integration into textiles and wearable accessories. This versatile component can be used to add lighting effects to costumes, clothing, soft toys, and other fabric-based projects.
Pin Name | Description |
---|---|
+ | Positive power supply (Anode) |
- | Ground (Cathode) |
// Define the pin connected to the LED Sequin
const int ledPin = 9; // PWM pin for brightness control
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
analogWrite(ledPin, 127); // Set the brightness to 50%
delay(1000); // Wait for 1 second
analogWrite(ledPin, 255); // Set the brightness to 100%
delay(1000); // Wait for 1 second
}
Q: Can I wash garments with LED Sequins attached? A: Yes, but hand washing is recommended. Ensure the power supply is removed, and the garment is completely dry before reapplying power.
Q: How many LED Sequins can I connect to a single power source? A: This depends on the power source's capacity. Calculate the total current draw and ensure it does not exceed the power source's maximum current rating.
Q: Can I control the brightness of the LED Sequin? A: Yes, you can use a PWM-capable pin on a microcontroller like the Arduino UNO to control the brightness with analogWrite() as shown in the example code.
Remember to always follow safety guidelines when working with electronics and to consult an expert if you are unsure about any aspect of your project.