Description
5mm LED RGB Common anode
– Forward Voltage:
R: 1.9-2.1V
G 3.1-3.3V
B:3.0-3.2V
– Luminous intensity:
R:3000-4000MCD
G:18000-2000MCD
B:5000-6000MCD
– Dominant wave:
R: 625-630NM
G:520-525NM
B:460-470NM
– Viewing Angle: 20-25 degree
Arduino code example:
int redPin = 11;
int greenPin = 10;
int bluePin = 9;
#define COMMON_ANODE
void setup()
{
pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
pinMode(bluePin, OUTPUT);
}
void loop()
{
setColor(255, 0, 0); // red
delay(1000);
setColor(0, 255, 0); // green
delay(1000);
setColor(0, 0, 255); // blue
delay(1000);
setColor(255, 255, 0); // yellow
delay(1000);
setColor(80, 0, 80); // purple
delay(1000);
setColor(0, 255, 255); // aqua
delay(1000);
}
void setColor(int red, int green, int blue)
{
#ifdef COMMON_ANODE
red = 255 - red;
green = 255 - green;
blue = 255 - blue;
#endif
analogWrite(redPin, red);
analogWrite(greenPin, green);
analogWrite(bluePin, blue);
}
Only logged in customers who have purchased this product may leave a review.
Shipping within the Netherlands
This product will be delivered via PostNL letter post in a bubble envelope.- €3.45 shipping costs for orders under €25.
- €2.95 shipping costs for orders between €25 - €45.
- Orders above € 45,- will be
free of charge sent by PostNL letter post.
Ordered before 16:30 PM on workdays, shipped the same day!
Click here for costs outside the Netherlands.
Electronics4Fun (verified owner) -
For use of separate colors red, green and blue this led is very suitable. Gives bright and intense light. For mixing colors I do not recommend this led, take a diffuse rgb led for that. Considering the very sharp price, still five stars.
Electronics4Fun (verified owner) -
I find the 8mm RGB LED in this shop very suitable for mixing colours, as all neopixel LEDs mix colours very well.