Axiometa
NeoPixel Matrix (5x5)
NeoPixel Matrix (5x5)
SKU:AX22-0028
Regular price
$3.99
Regular price
Sale price
$3.99
Unit price
per
Taxes included.
Shipping calculated at checkout.
Couldn't load pickup availability



-
Pinout
-
Interface
PCB Design
-
Top
-
Bottom
Arduino Example Code
#include <Adafruit_NeoPixel.h>
#define NEOPIXEL_PIN 15
#define NUM_PIXELS 25
Adafruit_NeoPixel matrix(NUM_PIXELS, NEOPIXEL_PIN, NEO_GRB + NEO_KHZ800);
const uint8_t heartPixels[] = {
1, 3,
5, 6, 7, 8, 9,
10, 11, 12, 13, 14,
16, 17, 18,
22
};
void setup() {
matrix.begin();
matrix.show();
matrix.setBrightness(30);
}
void loop() {
drawHeart();
}
void drawHeart() {
// First turn all pixels off
for (int i = 0; i < NUM_PIXELS; i++) {
matrix.setPixelColor(i, 0);
}
// Set heart pixels red
for (int i = 0; i < sizeof(heartPixels); i++) {
matrix.setPixelColor(heartPixels[i], matrix.Color(255, 0, 0));
}
matrix.show();
}
void clearMatrix() {
for (int i = 0; i < NUM_PIXELS; i++) {
matrix.setPixelColor(i, 0);
}
matrix.show();
}
Guides and Blogs
-
First time setup
Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.
-
Automatic Street Lights
Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.
-
How Does an LDR work ?
Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.