.. note:: Hello, welcome to the SunFounder Raspberry Pi & Arduino & ESP32 Enthusiasts Community on Facebook! Dive deeper into Raspberry Pi, Arduino, and ESP32 with fellow enthusiasts. **Why Join?** - **Expert Support**: Solve post-sale issues and technical challenges with help from our community and team. - **Learn & Share**: Exchange tips and tutorials to enhance your skills. - **Exclusive Previews**: Get early access to new product announcements and sneak peeks. - **Special Discounts**: Enjoy exclusive discounts on our newest products. - **Festive Promotions and Giveaways**: Take part in giveaways and holiday promotions. 👉 Ready to explore and create with us? Click [|link_sf_facebook|] and join today! .. _ar_rgb: 2.4 - Colorful Light ============================================== 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". * `Additive color - Wikipedia `_ 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. * :ref:`cpn_rgb` **Schematic** |sch_rgb| The PWM pins GP13, GP14 and GP15 control the Red, Green and Blue pins of the RGB LED respectively, and connect the common cathode pin to GND. This allows the RGB LED to display a specific color by superimposing light on these pins with different PWM values. **Wiring** |img_rgb_pin| An RGB LED has 4 pins: the longest pin is the common cathode pin, which is usually connected to GND, the left pin next to the longest pin is Red, and the 2 pins on the right are Green and Blue. |wiring_rgb| .. 1. Connect the GND pin of the Pico to the negative power bus of the breadboard. .. #. Insert the RGB LED into the breadboard so that its four pins are in different rows. .. #. 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. .. #. Connect the Green lead to the GP14 pin via a 220Ω resistor. .. #. Connect the Blue lead to the GP15 pin via a 220Ω resistor. .. #. Connect the GND lead to the negative power bus. .. #. 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 (such as paint) and display it with RGB LED. .. note:: * You can open the file ``2.4_colorful_light.ino`` under the path of ``euler-kit/arduino/2.4_colorful_light``. * Or copy this code into **Arduino IDE**. * Then select the Raspberry Pi Pico board and the correct port before clicking the Upload button. .. raw:: html |img_take_color| Write the RGB value into ``color_set()``, you will be able to see the RGB light up the colors you want. **How it works?** In this example, the function used to assign values to the three pins of RGB is packaged in an independent subfunction ``color()``. .. code-block:: C void color (unsigned char red, unsigned char green, unsigned char blue) { analogWrite(redPin, red); analogWrite(greenPin, green); analogWrite(bluePin, blue); } In ``loop()``, RGB value works as an input argument to call the function ``color()`` to realize that the RGB can emit different colors. .. code-block:: C void loop() { color(255, 0, 0); // red delay(1000); color(0,255, 0); // green delay(1000); color(0, 0, 255); // blue delay(1000); }