The Keyestudio Super-bright White LED Module is an innovative lighting solution designed for various Arduino projects. This module is easy to use and integrates seamlessly with your Arduino setup to provide bright, reliable illumination.
Key Features
- Super-bright LED: Emits intense white light, making it perfect for lighting applications.
- Simple Controlled Interface: Utilizes a digital control interface for effortless operation.
- Versatile Voltage Range: Operates on a wide voltage range of 3.3V to 5V, making it adaptable for different projects.
- Compact Design: Small footprint with a 2.54mm pin pitch for easy connectivity.
Specifications
- Control Interface: Digital
- Working Voltage: DC 3.3V to 5V
- LED Color: White
- Dimensions: 34mm x 20mm x 11.5mm
- Weight: 2.7 g
- Size: Fits easily in various setups
Upload the Code
int led = 7; void setup() { pinMode(led, OUTPUT); //Set Pin7 as output } void loop() { digitalWrite(led, HIGH); //Turn off led delay(1000); digitalWrite(led, LOW); //Turn on led delay(1000); } |
What You Should See
The LED will flash on for one second, then off for one second, repeatedly and alternately.
If it doesn’t, make sure you have assembled the circuit correctly and verified and uploaded the code to your board.