Changing Colors
#define NUM_COLOURS 6
const uint16_t colours[NUM_COLOURS][3] = {
{255,0,0}, // Red
{0,255,0}, // Green
{0,0,255}, // Blue
{255,255,0}, // Yellow
{255,0,255}, // Magenta
{0,255,255}, // Cyan
};Last updated
#define NUM_COLOURS 6
const uint16_t colours[NUM_COLOURS][3] = {
{255,0,0}, // Red
{0,255,0}, // Green
{0,0,255}, // Blue
{255,255,0}, // Yellow
{255,0,255}, // Magenta
{0,255,255}, // Cyan
};Last updated