Activity Board Toník v.1 final

// Zapojení APA102 + rotačního enkoderu KY-040 // při rotaci se posouvá barevná LED (stále dokola) // po necinnosti zhasne // #include <FastGPIO.h> // #define APA102_USE_FAST_GPIO #include <APA102.h> // Define which pins to use. const uint8_t dataPin = 7; const uint8_t clockPin = 8; APA102<dataPin, clockPin> ledStrip; unsigned long nic_nedela=0; unsigned long timeout_zhasnuti= 200000; // … Číst dál

Posuvný HAD (APA102 + Enkoder) / Arduino

Opět taková legrácka – pomocí rotačního endodéru (nekonečný potenciometr) posouváme barevnou LED na pásku, až dojde na konec, tak přeskočí na začátek 🙂 Použit pásek APA 102 a enkoder KY-040 // Zapojení APA102 + rotačního enkoderu KY-040 // při rotaci se posouvá barevná LED (stále dokola) // #include <FastGPIO.h> // #define APA102_USE_FAST_GPIO #include <APA102.h> // … Číst dál

APA102 – sude, liche

Bikání na střídačku (sudé, liché).   #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() { //reset pasku ledStrip.startFrame(); for(uint16_t i = 0; i < ledCount; i++) … Číst dál

APA102 – HAD

1 ledka obíhá dokola   /* 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 … Číst dál

APA102 – modrý maják

Blikající efekt ala “ modrý maják“ . Střídavé zesílení a zeslabení svítivosti (alfy).   /* 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 … Číst dál

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: /* … Číst dál