#include <Adafruit_NeoPixel.h>
#include <math.h>
#define PIN_WS2812B 2
#define NUM_PIXELS 64
Adafruit_NeoPixel ws2812b(NUM_PIXELS, PIN_WS2812B, NEO_GRB + NEO_KHZ800);
byte canvas[] = {
0, 60, 0, 60, 0, 60, 0, 60,
60, 0, 60, 0, 60, 0, 60, 0,
0, 60, 0, 60, 0, 60, 0, 60,
60, 0, 60, 0, 60, 0, 60, 0,
0, 60, 0, 60, 0, 60, 0, 60,
60, 0, 60, 0, 60, 0, 60, 0,
0, 60, 0, 60, 0, 60, 0, 60,
60, 0, 60, 0, 60, 0, 60, 0
};
void setup() {
pinMode (PIN_WS2812B, OUTPUT);
ws2812b.begin();
}
void loop() {
for(int x = 0; x < 8; x++){
for(int y = 0; y < 8; y++){
}
}
}