Skip to content
desertgreg edited this page Oct 20, 2021 · 10 revisions

Hello World

Open the Arduino IDE and create a new sketch

Add the following code at the top of the file:

#include "PixelGrid.h

In the setup function, add the following code:

PixelGrid.setup();

In the loop function, add the following:

PixelGrid.setPixel(6,6,PGCOLOR(10,10,10));
PixelGrid.update();

Clone this wiki locally