Neo
Neo.h
1 #ifndef NEO_H
2 #define NEO_H
3 
4 #include <SPI.h>
5 
6 #define MAX7219_REG_NOOP 0x00
7 // codes 1 to 8 are digit positions 1 to 8
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
13 
26 class Neo {
27  public:
28  Neo(uint8_t displayCount, uint8_t cs, uint8_t din = 0, uint8_t clk = 0);
29 
30  void begin();
31  void setBrightness(uint8_t value);
32  void displayTest();
33  void append(byte frame[8]);
34  void renderDisplay(uint8_t disp, byte frame[8]);
35  void renderRow(uint8_t disp, uint8_t row, byte data);
36  void clearDisplay();
37  void fillDisplay();
38  void shiftLeft();
39  void render();
40 
41  private:
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);
46 
47  uint8_t _display_count;
48  uint8_t _din;
49  uint8_t _cs;
50  uint8_t _clk;
51  bool _SPI;
52  uint8_t DP;
53  uint8_t RP;
54  byte buffer[80];
55 };
56 
57 #endif
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