Example
This example shows how to display a number on the LED dot matrix in landscape mode.
#include <NanoPlayBoard.h>
NanoPlayBoard board;
void setup() {
}
void loop() {
int number = board.potentiometer.scaleTo(0, 99);
board.ledmatrix.printInLandscape(number);
}
The source code of this example is available on GitHub.