Beschrijving
8×8 WS2812 Led matrix met 64 leds. Deze is aan te sturen met een Arduino en de neopixel library, maar 1 pin nodig. De leds zijn individueel te controleren: aan/uit/kleur. Meerdere matrixen zijn te koppelen door de Dout, 5V en Gnd te koppelen naar de Din, 5V en GND van de volgende matrix. Werkt ook met wemos D1 of andere esp borden zoals de nodemcu. Ook te gebruiken met een firmware specifiek voor led’s zoals Wled. Aan te sluiten via pin headers.
8×8 WS2812 Led matrix specificaties:
– Voedingsspanning: 5V DC
– Signaalspanning: 5V
– Maximale stroom:
– Per LED: ~60mA
– Hele matrix: ~3.8A
– LED chip: WS2812
– Kleur: RGB
– Aantal LEDs: 64 (8×8)
Arduino code voorbeeld:
#include <Adafruit_NeoPixel.h>
// Which pin on the Arduino is connected to the NeoPixels?
// On a Trinket or Gemma we suggest changing this to 1
#define PIN 3
// How many NeoPixels are attached to the Arduino?
#define NUMPIXELS 64
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);
int delayval = 10; // delay for half a second
void setup()
{
pixels.begin(); // This initializes the NeoPixel library.
}
void loop() {
// For a set of NeoPixels the first NeoPixel is 0, second is 1, all the way up to the count of pixels minus one.
for(int i=0;i<NUMPIXELS;i++)
{
// pixels.Color takes RGB values, from 0,0,0 up to 255,255,255
pixels.setPixelColor(i, pixels.Color(1,0,0)); // Moderately bright green color.
pixels.show(); // This sends the updated pixel color to the hardware.
//delay(delayval);
}
delay(1000);
for(int i=0;i<NUMPIXELS;i++)
{
// pixels.Color takes RGB values, from 0,0,0 up to 255,255,255
pixels.setPixelColor(i, pixels.Color(0,1,0)); // Moderately bright green color.
pixels.show(); // This sends the updated pixel color to the hardware.
//delay(delayval);
}
delay(1000);
for(int i=0;i<NUMPIXELS;i++)
{
// pixels.Color takes RGB values, from 0,0,0 up to 255,255,255
pixels.setPixelColor(i, pixels.Color(0,0,1)); // Moderately bright green color.
pixels.show(); // This sends the updated pixel color to the hardware.
//delay(delayval);
}
delay(1000);
}
Enkel ingelogde klanten die dit product gekocht hebben, kunnen een beoordeling schrijven.
Verzending binnen Nederland
Dit product word bezorgd via PostNL briefpost in een bubbel envelop.- € 3.45 verzendkosten voor orders onder de € 25,-.
- € 2.95 verzendkosten voor orders tussen € 25 - 45,-.
- Orders boven de € 45,- worden
gratis verstuurd per PostNL briefpost.
Op werkdagen voor 16:30 uur besteld, zelfde dag verzonden!
Klik hier voor de kosten buiten Nederland.
Beoordelingen
Er zijn nog geen beoordelingen.