Description
8×8 WS2812 Led matrix with 64 leds. This can be controlled with an Arduino and the neopixel library, only 1 pin needed. The leds can be controlled individually: on/off/color. Multiple matrices can be linked by connecting the Dout, 5V and Gnd to the Din, 5V and GND of the next matrix. Also works with wemos D1 or other esp boards such as the nodemcu. Can also be used with a firmware specifically for leds such as Wled. Can be connected via pin headers.
8×8 WS2812 Led matrix specifications:
– Supply voltage: 5V DC
– Signal voltage: 5V
– Maximum current:
– Per LED: ~60mA
– Entire matrix: ~3.8A
– LED chip: WS2812
– Color: RGB
– Number of LEDs: 64 (8×8)
Arduino code example:
#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);
}
Only logged in customers who have purchased this product may leave a review.
Shipping within the Netherlands
This product will be delivered via PostNL letter post in a bubble envelope.- €3.45 shipping costs for orders under €25.
- €2.95 shipping costs for orders between €25 - €45.
- Orders above € 45,- will be
free of charge sent by PostNL letter post.
Ordered before 16:30 PM on workdays, shipped the same day!
Click here for costs outside the Netherlands.
Reviews
There are no reviews yet.