6 #define MAX7219_REG_NOOP 0x00 8 #define MAX7219_REG_DECODEMODE 0x09 9 #define MAX7219_REG_INTENSITY 0x0A 10 #define MAX7219_REG_SCANLIMIT 0x0B 11 #define MAX7219_REG_SHUTDOWN 0x0C 12 #define MAX7219_REG_DISPLAYTEST 0x0F 28 Neo(uint8_t displayCount, uint8_t cs, uint8_t din = 0, uint8_t clk = 0);
33 void append(byte frame[8]);
35 void renderRow(uint8_t disp, uint8_t row, byte data);
42 void spiTransfer(uint8_t address, uint8_t value);
43 void transfer(uint8_t address, uint8_t value);
44 void transferToAll(uint8_t address, uint8_t value);
45 void transferToDisp(uint8_t disp, uint8_t address, uint8_t value);
47 uint8_t _display_count;
void append(byte frame[8])
Append a character frame to the internal display buffer.
Definition: Neo.cpp:142
void render()
Renders the content of the display buffer to the display.
Definition: Neo.cpp:179
void displayTest()
Turns on every pixel for 100ms.
Definition: Neo.cpp:23
void shiftLeft()
Shifts the entire display buffer left by 1bit and re-renders the display.
Definition: Neo.cpp:165
void clearDisplay()
Turns off all the pixels of the display(s)
Definition: Neo.cpp:121
void renderRow(uint8_t disp, uint8_t row, byte data)
Renders a row of a display.
Definition: Neo.cpp:201
void setBrightness(uint8_t value)
Sets the display brightness.
Definition: Neo.cpp:33
void renderDisplay(uint8_t disp, byte frame[8])
Renders a character frame to a particular display position.
Definition: Neo.cpp:155
void fillDisplay()
Turns on all the pixels of the display(s)
Definition: Neo.cpp:132
Yet Another Matrix Library.
Definition: Neo.h:26
void begin()
Setups the Pins, SPI and Display.
Definition: Neo.cpp:43
Neo(uint8_t displayCount, uint8_t cs, uint8_t din=0, uint8_t clk=0)
Instantiates a new Neo class.
Definition: Neo.cpp:12