Neo
Public Member Functions | List of all members
Neo Class Reference

Yet Another Matrix Library. More...

#include <Neo.h>

Public Member Functions

 Neo (uint8_t displayCount, uint8_t cs, uint8_t din=0, uint8_t clk=0)
 Instantiates a new Neo class. More...
 
void begin ()
 Setups the Pins, SPI and Display.
 
void setBrightness (uint8_t value)
 Sets the display brightness. More...
 
void displayTest ()
 Turns on every pixel for 100ms.
 
void append (byte frame[8])
 Append a character frame to the internal display buffer. More...
 
void renderDisplay (uint8_t disp, byte frame[8])
 Renders a character frame to a particular display position. More...
 
void renderRow (uint8_t disp, uint8_t row, byte data)
 Renders a row of a display. More...
 
void clearDisplay ()
 Turns off all the pixels of the display(s)
 
void fillDisplay ()
 Turns on all the pixels of the display(s)
 
void shiftLeft ()
 Shifts the entire display buffer left by 1bit and re-renders the display.
 
void render ()
 Renders the content of the display buffer to the display.
 

Detailed Description

Yet Another Matrix Library.

Small library to be used with one or more 8x8 Dot Matrix displays.

Version
0.0.1
Date
2018/06/13

Constructor & Destructor Documentation

◆ Neo()

Neo::Neo ( uint8_t  displayCount,
uint8_t  cs,
uint8_t  din = 0,
uint8_t  clk = 0 
)

Instantiates a new Neo class.

Parameters
displayCountNumber of 8x8 Matrix Display to use.
csThe CS / LOAD pin number.
dinThe DIN pin number if SPI not used, else not required.
clkThe CLK pin number if SPI not used, else not required.

Member Function Documentation

◆ setBrightness()

void Neo::setBrightness ( uint8_t  value)

Sets the display brightness.

Parameters
valueBrightness intensity from 0 - 15

◆ append()

void Neo::append ( byte  frame[8])

Append a character frame to the internal display buffer.

Parameters
framebyte array of length 8.

◆ renderDisplay()

void Neo::renderDisplay ( uint8_t  disp,
byte  frame[8] 
)

Renders a character frame to a particular display position.

Parameters
dispThe position of the display to render the frame.
framebyte array of length 8.

◆ renderRow()

void Neo::renderRow ( uint8_t  disp,
uint8_t  row,
byte  data 
)

Renders a row of a display.

Parameters
dispThe position of the display to render.
rowThe row index (Starts from 1).
dataA byte representing the state of the row.

The documentation for this class was generated from the following files: