These docs are public and open source.Edit on GitHub
THE DOT MATRIX
The dot matrix is an 8 by 8 LED display at the back of the car.
USING THE DISPLAY
The MAX7219 is a common LED driver module. It works with many microcontrollers, so the same panel can be wired to an Arduino or an ESP32 in your own projects. On the NeoRacer the driver runs it for you, and your code writes to it through rc.display:
pythonrc.display.show_text("NEORACER") # text wider than the panel scrolls rc.display.clear() # return to the idle frame

