LED Matrix - print

How to display a pattern on the LED matrix

Example

This example shows how to display a pattern on the LED dot matrix.

#include <NanoPlayBoard.h>

NanoPlayBoard board;

void setup() {

}

void loop() {
  byte pattern[5] = {16, 72, 8, 72, 16};
  board.ledmatrix.print(pattern);  
}

The source code of this example is available on GitHub.