Max7219 side-by-side arrangement (#14702)
This commit is contained in:
parent
a7c41d28af
commit
5c3ec6306f
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -48,6 +48,28 @@
|
||||||
#include "../Marlin.h"
|
#include "../Marlin.h"
|
||||||
#include "../HAL/shared/Delay.h"
|
#include "../HAL/shared/Delay.h"
|
||||||
|
|
||||||
|
#define HAS_SIDE_BY_SIDE (ENABLED(MAX7219_SIDE_BY_SIDE) && MAX7219_NUMBER_UNITS > 1)
|
||||||
|
|
||||||
|
#if _ROT == 0 || _ROT == 180
|
||||||
|
#if HAS_SIDE_BY_SIDE
|
||||||
|
#define MAX7219_X_LEDS 8
|
||||||
|
#define MAX7219_Y_LEDS MAX7219_LINES
|
||||||
|
#else
|
||||||
|
#define MAX7219_Y_LEDS 8
|
||||||
|
#define MAX7219_X_LEDS MAX7219_LINES
|
||||||
|
#endif
|
||||||
|
#elif _ROT == 90 || _ROT == 270
|
||||||
|
#if HAS_SIDE_BY_SIDE
|
||||||
|
#define MAX7219_Y_LEDS 8
|
||||||
|
#define MAX7219_X_LEDS MAX7219_LINES
|
||||||
|
#else
|
||||||
|
#define MAX7219_X_LEDS 8
|
||||||
|
#define MAX7219_Y_LEDS MAX7219_LINES
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
#error "MAX7219_ROTATE must be a multiple of +/- 90°."
|
||||||
|
#endif
|
||||||
|
|
||||||
Max7219 max7219;
|
Max7219 max7219;
|
||||||
|
|
||||||
uint8_t Max7219::led_line[MAX7219_LINES]; // = { 0 };
|
uint8_t Max7219::led_line[MAX7219_LINES]; // = { 0 };
|
||||||
|
@ -59,25 +81,40 @@ uint8_t Max7219::led_line[MAX7219_LINES]; // = { 0 };
|
||||||
#else
|
#else
|
||||||
#define _LED_BIT(Q) ((Q) & 0x7)
|
#define _LED_BIT(Q) ((Q) & 0x7)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (_ROT == 0 || _ROT == 270) == ENABLED(MAX7219_REVERSE_ORDER)
|
|
||||||
#define _LED_UNIT(Q) ((MAX7219_NUMBER_UNITS - 1 - ((Q) >> 3)) << 3)
|
|
||||||
#else
|
|
||||||
#define _LED_UNIT(Q) ((Q) & ~0x7)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if _ROT < 180
|
|
||||||
#define _LED_IND(P,Q) (_LED_UNIT(P) + (Q))
|
|
||||||
#else
|
|
||||||
#define _LED_IND(P,Q) (_LED_UNIT(P) + (7 - ((Q) & 0x7)))
|
|
||||||
#endif
|
|
||||||
#if _ROT == 0 || _ROT == 180
|
#if _ROT == 0 || _ROT == 180
|
||||||
#define LED_IND(X,Y) _LED_IND(X,Y)
|
|
||||||
#define LED_BIT(X,Y) _LED_BIT(X)
|
#define LED_BIT(X,Y) _LED_BIT(X)
|
||||||
#elif _ROT == 90 || _ROT == 270
|
#else
|
||||||
#define LED_IND(X,Y) _LED_IND(Y,X)
|
|
||||||
#define LED_BIT(X,Y) _LED_BIT(Y)
|
#define LED_BIT(X,Y) _LED_BIT(Y)
|
||||||
#endif
|
#endif
|
||||||
|
#if _ROT == 0 || _ROT == 90
|
||||||
|
#define _LED_IND(P,Q) (_LED_TOP(P) + ((Q) & 0x7))
|
||||||
|
#else
|
||||||
|
#define _LED_IND(P,Q) (_LED_TOP(P) + (7 - ((Q) & 0x7)))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if HAS_SIDE_BY_SIDE
|
||||||
|
#if (_ROT == 0 || _ROT == 90) == DISABLED(MAX7219_REVERSE_ORDER)
|
||||||
|
#define _LED_TOP(Q) ((MAX7219_NUMBER_UNITS - 1 - ((Q) >> 3)) << 3)
|
||||||
|
#else
|
||||||
|
#define _LED_TOP(Q) ((Q) & ~0x7)
|
||||||
|
#endif
|
||||||
|
#if _ROT == 0 || _ROT == 180
|
||||||
|
#define LED_IND(X,Y) _LED_IND(Y,Y)
|
||||||
|
#elif _ROT == 90 || _ROT == 270
|
||||||
|
#define LED_IND(X,Y) _LED_IND(X,X)
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
#if (_ROT == 0 || _ROT == 270) == DISABLED(MAX7219_REVERSE_ORDER)
|
||||||
|
#define _LED_TOP(Q) ((Q) & ~0x7)
|
||||||
|
#else
|
||||||
|
#define _LED_TOP(Q) ((MAX7219_NUMBER_UNITS - 1 - ((Q) >> 3)) << 3)
|
||||||
|
#endif
|
||||||
|
#if _ROT == 0 || _ROT == 180
|
||||||
|
#define LED_IND(X,Y) _LED_IND(X,Y)
|
||||||
|
#elif _ROT == 90 || _ROT == 270
|
||||||
|
#define LED_IND(X,Y) _LED_IND(Y,X)
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#define XOR_7219(X,Y) do{ led_line[LED_IND(X,Y)] ^= _BV(LED_BIT(X,Y)); }while(0)
|
#define XOR_7219(X,Y) do{ led_line[LED_IND(X,Y)] ^= _BV(LED_BIT(X,Y)); }while(0)
|
||||||
#define SET_7219(X,Y) do{ led_line[LED_IND(X,Y)] |= _BV(LED_BIT(X,Y)); }while(0)
|
#define SET_7219(X,Y) do{ led_line[LED_IND(X,Y)] |= _BV(LED_BIT(X,Y)); }while(0)
|
||||||
|
|
|
@ -53,16 +53,6 @@
|
||||||
#endif
|
#endif
|
||||||
#define MAX7219_LINES (8 * (MAX7219_NUMBER_UNITS))
|
#define MAX7219_LINES (8 * (MAX7219_NUMBER_UNITS))
|
||||||
|
|
||||||
#if _ROT == 0 || _ROT == 180
|
|
||||||
#define MAX7219_Y_LEDS 8
|
|
||||||
#define MAX7219_X_LEDS MAX7219_LINES
|
|
||||||
#elif _ROT == 90 || _ROT == 270
|
|
||||||
#define MAX7219_X_LEDS 8
|
|
||||||
#define MAX7219_Y_LEDS MAX7219_LINES
|
|
||||||
#else
|
|
||||||
#error "MAX7219_ROTATE must be a multiple of +/- 90°."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// MAX7219 registers
|
// MAX7219 registers
|
||||||
//
|
//
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2437,6 +2437,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2438,6 +2438,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2442,6 +2442,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2437,6 +2437,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2433,6 +2433,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2442,6 +2442,7 @@
|
||||||
#define MAX7219_ROTATE -90 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE -90 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2438,6 +2438,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2448,6 +2448,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2443,6 +2443,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2433,6 +2433,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2439,6 +2439,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2439,6 +2439,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2435,6 +2435,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2430,6 +2430,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2447,6 +2447,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2436,6 +2436,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2434,6 +2434,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
|
@ -2435,6 +2435,7 @@
|
||||||
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
#define MAX7219_ROTATE 0 // Rotate the display clockwise (in multiples of +/- 90°)
|
||||||
// connector at: right=0 bottom=-90 top=90 left=180
|
// connector at: right=0 bottom=-90 top=90 left=180
|
||||||
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
//#define MAX7219_REVERSE_ORDER // The individual LED matrix units may be in reversed order
|
||||||
|
//#define MAX7219_SIDE_BY_SIDE // Big chip+matrix boards can be chained side-by-side
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sample debug features
|
* Sample debug features
|
||||||
|
|
Loading…
Reference in a new issue