Filter
%
110x Smart RGB mini Platinen (9x17mm) mit je 1x WS2812B LED
110 rechteckige 9x17mm Platinen mit je einer separat ansteuerbaren WS2812B LED. Kompatibel mit der Adafruit NeoPixel Library. Nutzengröße: 11x10 Platinen Hinweis: Die Stiftleisten (3 Pins, Abstand 2,54mm) sind nicht im Lieferumfang enthalten. Geeignet für z.B.:Arduino (Nano, Uno, Mega etc)Raspberry PIESP32 YouTube-Video .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; } .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

28,90 €* 36,30 €* (20.39% gespart)
%
121x Smart RGB micro Platinen (9x9mm) mit je 1x WS2812B LED
121 quadratische 9x9mm Platinen im Nutzen mit je einer separat ansteuerbaren WS2812B LED. Kompatibel mit der Adafruit NeoPixel Library. Nutzengröße: 11x11 Platinen Geeignet für z.B.:Arduino (Nano, Uno, Mega etc)Raspberry PIESP32 YouTube-Video .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; } .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

24,90 €* 31,86 €* (21.85% gespart)
%
25x Smart RGB Matrix Platinen 30x30mm mit je 9x WS2812B LEDs
25 quadratische 30x30mm Platinen mit je 9x separat ansteuerbaren WS2812B LEDs. Kompatibel mit der Adafruit NeoPixel Library. Nutzengröße: 5x5 Platinen Geeignet für z.B.:Arduino (Nano, Uno, Mega etc)Raspberry PIESP32 YouTube-Video .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; } .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

39,90 €* 49,75 €* (19.8% gespart)
3x Smart RGB Matrix Platine 30x30mm mit 9x WS2812B LEDs
Aktionsartikel - Rabatt nur einmal gültig. Danach wird der reguläre Preis in Höhe von 5,97€ angezeigt und berechnet.Einzelartikel ist hier zu finden: Smart RGB Matrix Platine 30x30Quadratische 30x30mm Platine mit 9 separat ansteuerbaren WS2812B LEDs. Kompatibel mit der Adafruit NeoPixel Library. Geeignet für z.B.:Arduino (Nano, Uno, Mega etc)Raspberry PIESP32 YouTube-Video .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; } .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

0,00 €*
3x Smart RGB micro Platine 9x9mm mit 1x WS2812B LED
Aktionsartikel - Rabatt nur einmal gültig. Danach wird der reguläre Preis in Höhe von 0,79€ angezeigt und berechnet.Quadratische 9x9mm Platine mit einer separat ansteuerbaren WS2812B LED. Kompatibel mit der Adafruit NeoPixel Library. Geeignet für z.B.:Arduino (Nano, Uno, Mega etc)Raspberry PIESP32 YouTube-Video .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; } .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

0,00 €*
3x Smart RGB mini Platine 9x17 mm mit 1x WS2812B LED
Aktionsartikel - Rabatt nur einmal gültig. Danach wird der reguläre Preis in Höhe von 0,99€ angezeigt und berechnet.Rechteckige 9x17mm Platine mit einer separat ansteuerbaren WS2812B LED. Kompatibel mit der Adafruit NeoPixel Library. Hinweis: Die Stiftleisten (3 Pins, Abstand 2,54mm) sind nicht im Lieferumfang enthalten.Geeignet für z.B.:Arduino (Nano, Uno, Mega etc)Raspberry PIESP32 YouTube-Video .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; } .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

0,00 €*
%
MakerTeam - Smart RGB Cube Bausatz
Smart RGB Cube BausatzLieferumfang:05x Smart RGB Matrix Platine 30x30mm mit 9x WS2812B LEDs10x Blechschraube Torx 2,2 x 9,5mm10x Drahtbrücke 0.6mm01x 3D Base (PLA Galaxy Black)01x 3D Holder (PLA schwarz)03x 100cm Kabel 0,25mm² (je 1x schwarz, grün, rot) Anschlussschema YouTube-Video .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; } .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } Codebeispiel mit der Adafruit Neopixel Bibliothek auf einen Arduino Nano: #include <Adafruit_NeoPixel.h>#ifdef __AVR__#include <avr/power.h>#endif#define PIN 6#define LEDAMOUNT 45#define CUBES 5Adafruit_NeoPixel strip = Adafruit_NeoPixel(LEDAMOUNT, PIN, NEO_GRB + NEO_KHZ800);void setup() {  #if defined (__AVR_ATtiny85__)    if (F_CPU == 16000000) clock_prescale_set(clock_div_1);  #endif  strip.begin();  strip.setBrightness(255);  strip.show();}void loop() {  int delaytime = 40;    uint32_t color = strip.Color(random(255), random(255), random(255));  uint32_t off = strip.Color(0, 0, 0);  ring1(color);  strip.show();  delay(delaytime);  ring2(color);  strip.show();  delay(delaytime);  ring3(color);  strip.show();  delay(delaytime);  cubeInOneColor(color, 2);  delay(delaytime);    cubeInOneColor(off, 2);  delay(delaytime);  ring3(off);  strip.show();  delay(delaytime);  ring2(off);  strip.show();  delay(delaytime);  ring1(off);  strip.show();  delay(delaytime);  ring1(color);  strip.show();  delay(delaytime);  ring2(color);  strip.show();  delay(delaytime);  ring3(color);  strip.show();  delay(delaytime);  cubeInOneColor(color, 2);  delay(delaytime);  ring1(off);  strip.show();  delay(delaytime);  ring2(off);  strip.show();  delay(delaytime);  ring3(off);  strip.show();  delay(delaytime);  cubeInOneColor(off, 2);  delay(delaytime);  lineFade(255,255,255);  lineFade(255,255,0);  lineFade(255,0,0);  lineFade(255,0,255);  lineFade(0,0,255);  lineFade(0,255,0);}void lineFade(int r, int g, int b){    int row1[12] = {0,1,2, 35,34,33, 26,25,24, 44,43,42};  int row2[12] = {3,4,5, 32,31,30, 23,22,21, 41,40,39};  int row3[12] = {6,7,8, 29,28,27, 20,19,18, 38,37,36};    for(int i=0; i<12; i++){    strip.clear();    strip.setPixelColor(row1[i], strip.Color(r, g, b));     strip.setPixelColor(row2[i], strip.Color(r, g, b));     strip.setPixelColor(row3[i], strip.Color(r, g, b));     strip.show();    delay(30);  }}void ring1(uint32_t color){  strip.setPixelColor(0, color);  strip.setPixelColor(1, color);  strip.setPixelColor(2, color);  strip.setPixelColor(24, color);  strip.setPixelColor(25, color);  strip.setPixelColor(26, color);  strip.setPixelColor(33, color);  strip.setPixelColor(34, color);  strip.setPixelColor(35, color);  strip.setPixelColor(42, color);  strip.setPixelColor(43, color);  strip.setPixelColor(44, color);}void ring2(uint32_t color){  strip.setPixelColor(3, color);  strip.setPixelColor(4, color);  strip.setPixelColor(5, color);  strip.setPixelColor(21, color);  strip.setPixelColor(22, color);  strip.setPixelColor(23, color);  strip.setPixelColor(30, color);  strip.setPixelColor(31, color);  strip.setPixelColor(32, color);  strip.setPixelColor(39, color);  strip.setPixelColor(40, color);  strip.setPixelColor(41, color);}void ring3(uint32_t color){  strip.setPixelColor(6, color);  strip.setPixelColor(7, color);  strip.setPixelColor(8, color);  strip.setPixelColor(18, color);  strip.setPixelColor(19, color);  strip.setPixelColor(20, color);  strip.setPixelColor(27, color);  strip.setPixelColor(28, color);  strip.setPixelColor(29, color);  strip.setPixelColor(36, color);  strip.setPixelColor(37, color);  strip.setPixelColor(38, color);}/*  *  For Random  Flashlight */void randomFlash(){  strip.clear();  strip.setPixelColor(random(LEDAMOUNT), strip.Color(255, 255, 255));  strip.show();  delay(10);}void cubeInOneColor(uint32_t color, int cubeNo) {  for (int i = 0; i < 9; i++) {    strip.setPixelColor(i + cubeNo * 9 - 9, color);  }  strip.show();}void cubeRadialColor(uint32_t color, int cubeNo, int delayTime) {  strip.setPixelColor(0 + cubeNo * 9 - 9 , color);  strip.show();  delay(delayTime);  strip.setPixelColor(1 + cubeNo * 9 - 9 , color);  strip.show();  delay(delayTime);  strip.setPixelColor(2 + cubeNo * 9 - 9 , color);  strip.show();  delay(delayTime);  strip.setPixelColor(5 + cubeNo * 9 - 9 , color);  strip.show();  delay(delayTime);  strip.setPixelColor(8 + cubeNo * 9 - 9 , color);  strip.show();  delay(delayTime);  strip.setPixelColor(7 + cubeNo * 9 - 9 , color);  strip.show();  delay(delayTime);  strip.setPixelColor(6 + cubeNo * 9 - 9 , color);  strip.show();  delay(delayTime);  strip.setPixelColor(3 + cubeNo * 9 - 9 , color);  strip.show();  delay(delayTime);  strip.setPixelColor(4 + cubeNo * 9 - 9 , color);  strip.show();  delay(delayTime);}

12,90 €* 15,90 €* (18.87% gespart)