Scrolling Text - Easy
Displaying "hello" on the LED matrices

In this project we will be displaying text onto the LED matrix display. However, it will not be scrolling. For text that is scrolling, see hard.

How it works:

Drawing the text on the LED matrix is a 2 step process:

  1. First we must draw the text on the screen with led_matrix.text()
  2. Then we must tell the Raspberry Pi that we want to show what we have drawn on the LED matrices, with led_matrix.show().

Try This: