The Power LED 12V 10W 0.8-0.9A is a high-brightness light-emitting diode designed for high-power applications. This component is ideal for use in spotlights, decorative lighting, DIY projects, and as a part of larger lighting solutions. Its high power output makes it suitable for applications requiring intense illumination while maintaining the energy efficiency characteristic of LED technology.
Pin Number | Description | Notes |
---|---|---|
1 | Anode (+) | Connect to positive voltage |
2 | Cathode (-) | Connect to ground/negative side |
The following example demonstrates how to use the Power LED with an Arduino UNO for simple on/off control using a MOSFET as a switch.
// Define the pin connected to the MOSFET gate
const int mosfetPin = 3;
void setup() {
// Set the MOSFET pin as an output
pinMode(mosfetPin, OUTPUT);
}
void loop() {
// Turn on the LED
digitalWrite(mosfetPin, HIGH);
delay(1000); // Keep the LED on for 1 second
// Turn off the LED
digitalWrite(mosfetPin, LOW);
delay(1000); // Keep the LED off for 1 second
}
Note: This code assumes the use of a MOSFET compatible with the 5V logic level of the Arduino UNO and that the MOSFET is capable of handling the current required by the LED. The actual connection to the LED must include a current-limiting solution as per the usage instructions.
This documentation provides a comprehensive guide to using the Power LED 12V 10W 0.8-0.9A. For further assistance or advanced applications, consult with an electronics professional.