Difference between revisions of "Lighting the RGB LED"

From Banana Pi Wiki
Jump to: navigation, search
(Install Library)
(Programe Code)
Line 17: Line 17:
  
 
* Open Arduino IDE
 
* Open Arduino IDE
click 'file'->'Example'->'Adafruit NeoPixel'->'simple'  to open the example  
+
click 'file'->'Example'->'NeoPixel Bus'->'simple'  to open the example  
  
[[File:LightingLED-2.png]]
+
[[File:LightingLED-7.png]]
  
  

Revision as of 00:33, 10 September 2018

How to lighting the RGB LED

Install Library

  1. Install library from github:
  • Librarys:[NeoPixel_Bus] from Makuna
  • Download libraries and put it in the libraries folder in the installation directory of the Arduino IDE
 LightingLED-1.png


  1. Install Library by Manage Libraries:
 LightingLED-4.png
 LightingLED-6.png

Programe Code

  • Open Arduino IDE

click 'file'->'Example'->'NeoPixel Bus'->'simple' to open the example

LightingLED-7.png


  • We need to change some code,Find the code below in the code
 #define PIN            6
 #define NUMPIXELS      16
  • change to
 #define PIN            4
 #define NUMPIXELS      25
 #define LED_POWER      2
  • Then add the following code to void setup()
  pinMode(LED_POWER, OUTPUT);
  digitalWrite(LED_POWER, HIGH);
  • Compile this program

LightingLED-3.png

And download it(Set the serial port and board)