The Adafruit LED Sequin - Rose Pink is a compact, sewable electronic component that integrates a single LED with a built-in resistor. This component is specifically designed for wearable projects, allowing designers and hobbyists to add light and color to textiles and clothing. The LED Sequin can be controlled by a microcontroller, such as an Arduino, to create various lighting effects including blinking, fading, or color-changing patterns.
Pin | Description |
---|---|
+ | Positive power supply (Anode) |
- | Ground (Cathode) |
// Define the pin connected to the LED Sequin
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%
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 sewn in? A: Yes, but hand washing is recommended, and the power supply should be removed before washing. Ensure the garment is completely dry before reconnecting the power.
Q: How many LED Sequins can I connect to a single Arduino pin? A: It depends on the current limit of the Arduino pin (typically 20-40mA). As each LED Sequin draws approximately 5mA, you can connect up to 4-8 LED Sequins in parallel to a single pin without exceeding the current limit.