8x8 Led Matrix Library 1.0.0
This is a library for the 8x8 Led Matrix by Soldered
Loading...
Searching...
No Matches
Led-Matrix-SOLDERED.h
Go to the documentation of this file.
1
12#ifndef __MAX7219_SOLDERED__
13#define __MAX7219_SOLDERED__
14
15#include "Arduino.h"
17
18class Led_Matrix : public MD_MAX72XX
19{
20 public:
21 Led_Matrix(int csPin, int maxDevices) : MD_MAX72XX(GENERIC_HW, csPin, maxDevices)
22 {
23 }
24
25 Led_Matrix(moduleType_t mod, int csPin, int maxDevices) : MD_MAX72XX(mod, csPin, maxDevices)
26 {
27 }
28
29 Led_Matrix(int dataPin, int clkPin, int csPin, int maxDevices)
30 : MD_MAX72XX(GENERIC_HW, dataPin, clkPin, csPin, maxDevices)
31 {
32 }
33};
34
35#endif
Main header file for the MD_MAX72xx library.
Definition Led-Matrix-SOLDERED.h:19
Led_Matrix(int csPin, int maxDevices)
Definition Led-Matrix-SOLDERED.h:21
Led_Matrix(moduleType_t mod, int csPin, int maxDevices)
Definition Led-Matrix-SOLDERED.h:25
Led_Matrix(int dataPin, int clkPin, int csPin, int maxDevices)
Definition Led-Matrix-SOLDERED.h:29
Definition MD_MAX72xx.h:326
moduleType_t
Definition MD_MAX72xx.h:337
@ GENERIC_HW
Use 'generic' style hardware modules commonly available.
Definition MD_MAX72xx.h:338