The LED module is a component that integrates LED lamp beads, drive circuits, and housing. Used to provide lighting, indication, or display functions. According to the specific application requirements, the LED module can be a wide variety of shapes, sizes and colors, while its color depends on the material and the light emitting principle.
Application reference: warning lights, floodlights, etc.
2.Parameter Specification
Parameter | Value//Description |
---|---|
Operating voltage | 3.3V~5V |
Operating temperature | -25°C~+85°C |
Color of light | Blue |
Control signal | Digital signal /PWM signal |
Lamp bead diameter | 5MM |
Size | 3.16cm*2.38cm |
3.Wiring Diagram

LED Motion Sensor | UNO |
---|---|
VCC | 5V |
GND | GND |
S | Digital Pin 11 |
4.Sample Code
1//www.acebott.com
2void setup(){
3 pinMode(11, OUTPUT); // Set pin 11 as an output pin
4}
5void loop(){
6 digitalWrite(11, HIGH); // Turn on the LED connected to pin 11
7 delay(1000); // Wait for 1 second
8 digitalWrite(11, LOW); // Turn off the LED connected to pin 11
9 delay(1000); // Wait for 1 second
10}
5.Test Result
When you have successfully connected the line according to the wiring diagram and successfully uploaded the correct program, your light will come on and blink.

6.Related Resources