|
1 | | -// RGB Matrix Project - Glyph |
| 1 | +// Shift Register LED Matrix Project - Glyph |
2 | 2 | // Copyright (C) 2017 Michael Kamprath |
3 | 3 | // |
4 | | -// This file is part of RGB Matrix Project. |
| 4 | +// This file is part of Shift Register LED Matrix Project. |
5 | 5 | // |
6 | | -// RGB Matrix Project is free software: you can redistribute it and/or modify |
| 6 | +// Shift Register LED Matrix Project is free software: you can redistribute it and/or modify |
7 | 7 | // it under the terms of the GNU General Public License as published by |
8 | 8 | // the Free Software Foundation, either version 3 of the License, or |
9 | 9 | // (at your option) any later version. |
10 | 10 | // |
11 | | -// RGB Matrix Project is distributed in the hope that it will be useful, |
| 11 | +// Shift Register LED Matrix Project is distributed in the hope that it will be useful, |
12 | 12 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | 13 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | 14 | // GNU General Public License for more details. |
15 | 15 | // |
16 | 16 | // You should have received a copy of the GNU General Public License |
17 | | -// along with RGB Matrix Project. If not, see <http://www.gnu.org/licenses/>. |
| 17 | +// along with Shift Register LED Matrix Project. If not, see <http://www.gnu.org/licenses/>. |
18 | 18 |
|
19 | 19 | #include <Arduino.h> |
20 | 20 | #if defined ( ESP8266 ) |
|
23 | 23 | #include <avr/pgmspace.h> |
24 | 24 | #endif |
25 | 25 | #include "Glyph.h" |
26 | | -#include "RGBLEDMatrixUtils.h" |
| 26 | +#include "SRLEDMatrixUtils.h" |
27 | 27 |
|
28 | 28 | // pre-calculate the bit masks to speed up over 1<<(7-bitIdx%8) |
29 | 29 | const unsigned char BIT_MASKS[8] = { |
|
0 commit comments