RGB full color LED module
Module Parameters:
1.PCB Size: 15mm * 10.6mm
2.PCB Color: Green
3 bright LED using 5050 full-color Doppler
4 with a current limiting resistor to prevent burn LED
5 can be accessed by a variety of microcontroller
6 high light LED
7 Operating voltage: 3.3V/5V
8 Weight:. 4g
9 can be directly plugged into the Arduino motherboard without Dupont cable
Shipping list:
1 RGB module
2 4 Connector cable
Sample Coding
/*LED Blink Test*/
void setup()
{
pinMode(11,OUTPUT);
pinMode(12,OUTPUT);
pinMode(13,OUTPUT);
}
void loop()
{
digitalWrite(11,HIGH);
delay(1000);
digitalWrite(11,LOW);
delay(1000);
digitalWrite(12,HIGH);
delay(1000);
digitalWrite(12,LOW);
delay(1000);
digitalWrite(13,HIGH);
delay(1000);
digitalWrite(13,LOW);
delay(1000);
}