RGB SMD 5050 LED module 3-5V, DIP pins
zoom_out_map
chevron_left chevron_right

Product images are for informational purposes only and may vary slightly depending on the batch and supplier. Product specifications and prices may be subject to change without notice. We do our best to provide accurate and complete product specifications, but they may not be completely accurate. If you encounter any such situation, please let us know.

The product is intended for specialists and requires qualified and authorized personnel. The product does not include assembly/use instructions . Putting the product into operation by unqualified persons leads to the loss of the warranty according to the Terms and Conditions on the site.

The specified technical parameters (current, power, etc.) represent maximum allowable values under ideal operating conditions. For safe use and optimal lifespan, it is recommended to operate the product continuously at no more than 50% of the specified maximum values.

RGB LED module, SMD, 5050, 3-5V

Compact RGB 5050 SMD LED board for signaling and color effects in Arduino and automation projects. It operates at 3-5V, is easily controlled via PWM on the R, G, B channels, has integrated resistors for current limitation, and the DIP pins allow for quick assembly on breadboard or in prototypes.

1.08 € Tax included

0.89 € Tax excluded

No reviews yet
1-2 zile
check In Stoc

Shipping by Thursday 27 August

Close

This product has a warranty of 2 years.

INTERNATIONAL DELIVERY
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
FAST DISPATCH 24H
We ship from our stock within 24H
LOYALTY POINTS
You earn points with every order, worth 5%.

The RGB SMD 5050 module is a compact board with a high brightness full color RGB LED, designed for direct control from a microcontroller via PWM signals, compatible with Arduino and other development boards both at 5V and 3.3V.

It has current limiting resistors on each channel, thus eliminating the risk of LED burnout and allowing you to quickly connect the R, G, and B pins to digital outputs.

The module is suitable for signaling, lighting effects, Arduino projects, and simple automation, and combining the red, green, and blue channels allows you to obtain multiple colors in the RGB range.

The pins are output on a DIP header, so installation on a breadboard or in a project is quick.

 

Specifications:

Operating voltage: 3.3V-5V

Consumption: <20mA per channel

LED type: RGB 5050 SMD full color

Current limiting: integrated resistors on RGB channels

Control: PWM on R, G, B

Connector: DIP pins

Channels: 3 channels red, green, blue

Dimensions mm: 12 x 15mm

 

Pinout:

Pin Name Role
R Red Red channel control
G Green Green channel control
B Blue Blue channel control
GND Ground Common ground

 

Usage:

Connect GND to the ground of your board, Arduino, or other MCU.

Connect R, G, and B to the microcontroller's digital PWM pins.

For a single color, activate only one channel.

For mixed colors, activate two or three channels simultaneously.

For fade effects, use PWM and gradually vary the intensity of each channel.

If you use 3.3V logic, the module generally works without adaptation, but brightness may differ compared to 5V.

88255

Produs destinat utilizarii in proiecte electronice, automatizari, prototipare, educatie si cercetare.

Produsul trebuie utilizat numai conform specificatiilor tehnice mentionate in descriere si/sau in documentatia produsului.

Avertismente generale de siguranta:

Nu utilizati produsul la tensiuni, curenti sau temperaturi peste valorile specificate.

Montajul si conectarea trebuie realizate de persoane cu cunostinte tehnice minime in domeniul electric/electronic.

Evitati scurtcircuitele, inversarea polaritatii si conectarea gresita a alimentarii.

Nu lasati produsul alimentat nesupravegheat in timpul testelor.

Produsul nu este jucarie si nu este destinat copiilor.

Pentru modulele electronice, se recomanda utilizarea in carcase, panouri sau montaje protejate, dupa caz.

Identificare produs:

Denumirea produsului, codul/SKU-ul si caracteristicile tehnice sunt mentionate in pagina produsului si/sau pe eticheta ambalajului.

Producator / Importator / Distribuitor:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Website: www.sigmanortec.ro

Persoana responsabila in UE:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Documentatie si siguranta:

Pentru informatii suplimentare, fise tehnice, declaratii de conformitate sau instructiuni, ne puteti contacta la [email protected].

// Example connection
// R to D9
// G to D10
// B to D11
// GND to GND

const int PIN_R = 9;
const int PIN_G = 10;
const int PIN_B = 11;

void setup() {
  pinMode(PIN_R, OUTPUT);
  pinMode(PIN_G, OUTPUT);
  pinMode(PIN_B, OUTPUT);
}

void setColor(int r, int g, int b) {
  analogWrite(PIN_R, r);
  analogWrite(PIN_G, g);
  analogWrite(PIN_B, b);
}

void loop() {
  // Red
  setColor(255, 0, 0);
  delay(500);

  // Green
  setColor(0, 255, 0);
  delay(500);

  // Blue
  setColor(0, 0, 255);
  delay(500);

  // Red fade
  for (int i = 0; i <= 255; i++) {
    setColor(i, 0, 0);
    delay(5);
  }

  // Approximate white
  setColor(255, 255, 255);
  delay(500);

  // Off
  setColor(0, 0, 0);
  delay(500);
}