Arduino + Adresovatelný RGB pásek s čipem APA102

Na ebay se dají koupit různé RGB pásky. Mě zaujal s čipem APA102. Lze zde totiž u každé LED nastavit jednouduše i intenzitu svitu.

Pásek je napájen 5V a má 2 datové vodiče (Hodinový signál a DATA).

Použita je knihovna bežně stažitelná z Arduino IDE:

 

Ukázka kód – Vybarví celý pásek jednou barvou:

/* This example shows how to make an LED pattern with a large
 * dynamic range using the the extra 5-bit brightness register in
 * the APA102.
 *
 * It sets every LED on the strip to white, with the dimmest
 * possible white at the input end of the strip and the brightest
 * possible white at the other end, and a smooth logarithmic
 * gradient between them.
 *
 * The dimmest possible white is achieved by setting the red,
 * green, and blue color channels to 1, and setting the
 * brightness register to 1.  The brightest possibe white is
 * achieved by setting the color channels to 255 and setting the
 * brightness register to 31.
 */

/* By default, the APA102 library uses pinMode and digitalWrite
 * to write to the LEDs, which works on all Arduino-compatible
 * boards but might be slow.  If you have a board supported by
 * the FastGPIO library and want faster LED updates, then install
 * the FastGPIO library and uncomment the next two lines: */
// #include <FastGPIO.h>
// #define APA102_USE_FAST_GPIO

#include <APA102.h>

// Define which pins to use.
const uint8_t dataPin = 11;
const uint8_t clockPin = 12;
APA102<dataPin, clockPin> ledStrip;

// ledCount = počet LED na pásku
const uint16_t ledCount = 30;
rgb_color colors[ledCount];


void setup()
{
}



void loop()
{

//zahájení posílání
ledStrip.startFrame();

for(uint16_t i = 0; i < ledCount; i++)
{
  // poslat barvu na jednu LED:  Červená(0-255), Zelená(0-255), Modrá(0-255), Intenzita svitu (0-31)
  ledStrip.sendColor(0, 0, 255, 31);
}

//ukončení posílání
ledStrip.endFrame(ledCount);



}

 

Ukázka kódu: Náhodně rozvědcuje pásek barvami i s náhodnou intenzitou

 

// #include <FastGPIO.h>
// #define APA102_USE_FAST_GPIO

#include <APA102.h>

// Define which pins to use.
const uint8_t dataPin = 11;
const uint8_t clockPin = 12;
APA102<dataPin, clockPin> ledStrip;

// ledCount = počet LED na pásku
const uint16_t ledCount = 30;
rgb_color colors[ledCount];


void setup()
{
  
}



void loop()
{
  
int Red = random(0,255);
int Green = random(0,255);
int Blue = random(0,255);
int Alfa = random(1,31); // O = nesviti


  //zahájení posílání
  ledStrip.startFrame();
    for(uint16_t i = 0; i < ledCount; i++)
    {
      // poslat barvu na jednu LED:  Červená(0-255), Zelená(0-255), Modrá(0-255), Intenzita svitu (0-31)
      ledStrip.sendColor(Red, Green, Blue, Alfa);
    }

 
   //ukončení posílání
   ledStrip.endFrame(ledCount);

   delay(1500);


}

 

 

Napsat komentář