• Part: KY-016
  • Description: RGB 5mm LED module
  • Manufacturer: Joy-IT
  • Size: 593.91 KB
Download KY-016 Datasheet PDF
Joy-IT
KY-016
KY-016 is RGB 5mm LED module manufactured by Joy-IT.
- Part of the KY-016-Joy comparator family.
description 1 3 Pinout 2 4 Code example Arduino 2 5 Code example Raspberry Pi 4 Picture Technical data / Short description LED-module which includes a red, blue and green LED. These are connected by a mon cathode. An additional resistor might be necessary for some voltages. Vf [Red]= 1,8V Vf [Green,Blue]= 2,8V If= 20m A Vorwiderstände: Export: 16.06.2017 Copyright by Joy-IT - Published under CC BY-NC-SA 3.0 Page 65 of 214 KY-016 RGB 5mm LED module Rf (3,3V) [Green]= 100Ω Rf (3,3V) [Red]= 180Ω Rf (3,3V) [Blue]= 100Ω [e.g. by using with ARM CPU-core based microcontroller like Raspberry-Pi] Rf (5V) [Green] = 100Ω  Rf (5V) [Red] = 180Ω  Rf (5V) [Blue] = 100Ω  [e.g. by using with Atmel Atmega based mocrocontroller like Arduino] Pinout Code example Arduino Code example ON/OFF In this example you will see how the LED is turned on by an output pin, in a 3 second clock pulse. int Led_Red = 10; int Led_Green = 11; int Led_Blue = 12; void setup () { // Output pin initialization for the LEDs pin Mode (Led_Red, OUTPUT); pin Mode (Led_Green, OUTPUT); pin Mode (Led_Blue, OUTPUT); } void loop () //main program loop { digital Write (Led_Red, HIGH); // LED will be switched ON digital Write (Led_Green, LOW); // LED will be switched OFF digital Write (Led_Blue, LOW); // LED will be switched OFF delay (3000); // Waitmode for 3 seconds Export: 16.06.2017 Copyright by Joy-IT - Published under CC BY-NC-SA 3.0 Page 66 of 214 KY-016 RGB 5mm LED...