The Adafruit LED Sequin in Emerald Green is a compact, surface-mount LED module designed to add a touch of light to your electronic projects. These tiny LEDs are perfect for creating wearable electronics, adding visual indicators to your projects, or simply providing decorative lighting with a vibrant emerald green hue. Their small size and easy-to-use design make them suitable for hobbyists and professionals alike.
Pin Number | Name | Description |
---|---|---|
1 | + | Anode (positive side) |
2 | - | Cathode (negative side) |
Power Supply: Ensure that your power supply is within the operating voltage range of 3.0V to 3.6V. Exceeding this voltage can damage the LED.
Current Limiting Resistor: Always use a current-limiting resistor in series with the LED to prevent it from drawing too much current. A resistor value of 150Ω to 220Ω is typically used when powered by a 3.3V source.
Soldering: The LED sequin has small pads for soldering to your circuit. Use a fine-tip soldering iron and be careful not to overheat the LED.
Polarity: Pay attention to the polarity of the LED. The '+' pad should be connected to the positive side of the power supply, and the '-' pad to the negative side or ground.
// 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 brightness to approximately 50%
delay(1000); // Wait for 1 second
analogWrite(ledPin, 255); // Set brightness to 100%
delay(1000); // Wait for 1 second
}
Note: When connecting the LED Sequin to an Arduino, ensure you use a current-limiting resistor and that the Arduino's output does not exceed the LED's maximum voltage.
Q: Can I chain multiple LED Sequins together? A: Yes, you can chain them in parallel, ensuring each LED has its own current-limiting resistor.
Q: How do I attach the LED Sequin to fabric? A: You can sew the LED Sequin onto fabric using conductive thread, but ensure there are no short circuits.
Q: Are these LEDs washable? A: The LED Sequins are not designed to be washed. If they are part of a wearable project, remove the electronics before washing the fabric.
For further assistance or questions, please contact Adafruit customer support or refer to the community forums.