RGB LED

As we know, light can be superimposed. For example, mix blue light and green light give cyan light, red light and green light give yellow light. This is called “The additive method of color mixing”.

Based on this method, we can use the three primary colors to mix the visible light of any color according to different specific gravity. For example, orange can be produced by more red and less green.

In this chapter, we will use RGB LED to explore the mystery of additive color mixing!

RGB LED is equivalent to encapsulating Red LED, Green LED, Blue LED under one lamp cap, and the three LEDs share one cathode pin. Since the electric signal is provided for each anode pin, the light of the corresponding color can be displayed. By changing the electrical signal intensity of each anode, it can be made to produce various colors.

Schematic

../_images/9_colorful_light.png

Wiring

Put the RGB LED flat on the table, we can see that it has 4 leads of different lengths. Find the longest one (GND) and turn it sideways to the left. Now, the order of the four leads is Red, GND, Green, Blue from left to right.

../_images/rgb_pin.jpg ../_images/wiring_colorful_light.png
  1. Connect the GND pin of the Pico to the negative power bus of the breadboard.

  2. Insert the RGB LED into the breadboard so that its four pins are in different rows.

  3. Connect the red lead to the GP13 pin via a 330Ω resistor. When using the same power supply intensity, the Red LED will be brighter than the other two, and a slightly larger resistor needs to be used to reduce its brightness.

  4. Connect the Green lead to the GP14 pin via a 220Ω resistor.

  5. Connect the Blue lead to the GP15 pin via a 220Ω resistor.

  6. Connect the GND lead to the negative power bus.

  7. Connect the negative power bus to Pico’s GND.

Note

  • The color ring of the 220Ω resistor is red, red, black, black and brown.

  • The color ring of the 330Ω resistor is orange, orange, black, black and brown.

Code

Here, we can choose our favorite color in drawing software and display it with RGB LED.

../_images/edit_colors.png

Write the RGB value into color(), you will be able to see the RGB light up the colors you want.

How it works?

void color (unsigned char red, unsigned char green, unsigned char blue)// the color generating function
{
    analogWrite(redPin, red);
    analogWrite(greenPin, green);
    analogWrite(bluePin, blue);
}

We defined a color() function to let the three primary colors work together.

At present, pixels in computer hardware usually adopt a 24-bit representation method. The three primary colors are divided into 8 bits, and the color value range is 0 to 255. With 256 possible values for each of the three primary colors (don’t forget to count 0!), that 256 x 256 x 256 = 16,777,216 colors can be combined in this way. The color() function also follows the 24-bit notation, which makes it easier for us to select the desired color.

analogWrite(pin, value) Writes an analog value (PWM wave) to a pin. Can be used to light a LED at varying brightnesses or drive a motor at various speeds. After a call to analogWrite(), the pin will generate a steady rectangular wave of the specified duty cycle until the next call to analogWrite() (or a call to digitalRead() or digitalWrite()) on the same pin.

pin: the Arduino pin to write to. Allowed data types: int.

value: the duty cycle: between 0 (always off) and 255 (always on). Allowed data types: int.