Skip to content

Commit 4a2b339

Browse files
updated license
1 parent 50ba68d commit 4a2b339

21 files changed

+109
-109
lines changed

src/BaseLEDMatrix.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// RGB Matrix Project - BaseLEDMatrix
1+
// Shift Register LED Matrix Project - BaseLEDMatrix
22
// Copyright (C) 2017 Michael Kamprath
33
//
4-
// This file is part of RGB Matrix Project.
4+
// This file is part of Shift Register LED Matrix Project.
55
//
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
77
// it under the terms of the GNU General Public License as published by
88
// the Free Software Foundation, either version 3 of the License, or
99
// (at your option) any later version.
1010
//
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,
1212
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
// GNU General Public License for more details.
1515
//
1616
// 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/>.
1818

1919
#include "BaseLEDMatrix.h"
2020
#ifndef ICACHE_RAM_ATTR

src/BaseLEDMatrix.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// RGB Matrix Project - BaseLEDMatrix
1+
// Shift Register LED Matrix Project - BaseLEDMatrix
22
// Copyright (C) 2017 Michael Kamprath
33
//
4-
// This file is part of RGB Matrix Project.
4+
// This file is part of Shift Register LED Matrix Project.
55
//
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
77
// it under the terms of the GNU General Public License as published by
88
// the Free Software Foundation, either version 3 of the License, or
99
// (at your option) any later version.
1010
//
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,
1212
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
// GNU General Public License for more details.
1515
//
1616
// 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/>.
1818

1919
#ifndef __BASELEDMATRIX_H__
2020
#define __BASELEDMATRIX_H__

src/Glyph.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// RGB Matrix Project - Glyph
1+
// Shift Register LED Matrix Project - Glyph
22
// Copyright (C) 2017 Michael Kamprath
33
//
4-
// This file is part of RGB Matrix Project.
4+
// This file is part of Shift Register LED Matrix Project.
55
//
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
77
// it under the terms of the GNU General Public License as published by
88
// the Free Software Foundation, either version 3 of the License, or
99
// (at your option) any later version.
1010
//
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,
1212
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
// GNU General Public License for more details.
1515
//
1616
// 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/>.
1818

1919
#include <Arduino.h>
2020
#if defined ( ESP8266 )
@@ -23,7 +23,7 @@
2323
#include <avr/pgmspace.h>
2424
#endif
2525
#include "Glyph.h"
26-
#include "RGBLEDMatrixUtils.h"
26+
#include "SRLEDMatrixUtils.h"
2727

2828
// pre-calculate the bit masks to speed up over 1<<(7-bitIdx%8)
2929
const unsigned char BIT_MASKS[8] = {

src/Glyph.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// RGB Matrix Project - Glyph
1+
// Shift Register LED Matrix Project - Glyph
22
// Copyright (C) 2017 Michael Kamprath
33
//
4-
// This file is part of RGB Matrix Project.
4+
// This file is part of Shift Register LED Matrix Project.
55
//
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
77
// it under the terms of the GNU General Public License as published by
88
// the Free Software Foundation, either version 3 of the License, or
99
// (at your option) any later version.
1010
//
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,
1212
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
// GNU General Public License for more details.
1515
//
1616
// 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/>.
1818

1919
#ifndef __GLYPH_H__
2020
#define __GLYPH_H__

src/LEDMatrix.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// RGB Matrix Project - LEDMatrix
1+
// Shift Register LED Matrix Project - LEDMatrix
22
// Copyright (C) 2017 Michael Kamprath
33
//
4-
// This file is part of RGB Matrix Project.
4+
// This file is part of Shift Register LED Matrix Project.
55
//
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
77
// it under the terms of the GNU General Public License as published by
88
// the Free Software Foundation, either version 3 of the License, or
99
// (at your option) any later version.
1010
//
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,
1212
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
// GNU General Public License for more details.
1515
//
1616
// 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/>.
1818

1919
#include <Arduino.h>
2020
#include "LEDMatrix.h"

src/LEDMatrix.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// RGB Matrix Project - RGBLEDMatrix
1+
// Shift Register LED Matrix Project - RGBLEDMatrix
22
// Copyright (C) 2017 Michael Kamprath
33
//
4-
// This file is part of RGB Matrix Project.
4+
// This file is part of Shift Register LED Matrix Project.
55
//
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
77
// it under the terms of the GNU General Public License as published by
88
// the Free Software Foundation, either version 3 of the License, or
99
// (at your option) any later version.
1010
//
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,
1212
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
// GNU General Public License for more details.
1515
//
1616
// 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/>.
1818

1919
#ifndef __LEDMATRIX_H__
2020
#define __LEDMATRIX_H__

src/LEDMatrixBits.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// RGB Matrix Project - LEDMatrixBits
1+
// Shift Register LED Matrix Project - LEDMatrixBits
22
// Copyright (C) 2017 Michael Kamprath
33
//
4-
// This file is part of RGB Matrix Project.
4+
// This file is part of Shift Register LED Matrix Project.
55
//
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
77
// it under the terms of the GNU General Public License as published by
88
// the Free Software Foundation, either version 3 of the License, or
99
// (at your option) any later version.
1010
//
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,
1212
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
// GNU General Public License for more details.
1515
//
1616
// 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/>.
1818
#include "LEDMatrixBits.h"
1919
#ifndef ICACHE_RAM_ATTR
2020
#define ICACHE_RAM_ATTR

src/LEDMatrixBits.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// RGB Matrix Project - LEDMatrixBits
1+
// Shift Register LED Matrix Project - LEDMatrixBits
22
// Copyright (C) 2017 Michael Kamprath
33
//
4-
// This file is part of RGB Matrix Project.
4+
// This file is part of Shift Register LED Matrix Project.
55
//
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
77
// it under the terms of the GNU General Public License as published by
88
// the Free Software Foundation, either version 3 of the License, or
99
// (at your option) any later version.
1010
//
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,
1212
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
// GNU General Public License for more details.
1515
//
1616
// 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/>.
1818
#ifndef __LEDMATRIXBITTS_H__
1919
#define __LEDMATRIXBITTS_H__
2020
// Represents bits of each row of a LED matrix controlled by 74HC595 shift registers.

src/RGBAnimation.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// RGB Matrix Project - RGBAnimation
1+
// Shift Register LED Matrix Project - RGBAnimation
22
// Copyright (C) 2017 Michael Kamprath
33
//
4-
// This file is part of RGB Matrix Project.
4+
// This file is part of Shift Register LED Matrix Project.
55
//
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
77
// it under the terms of the GNU General Public License as published by
88
// the Free Software Foundation, either version 3 of the License, or
99
// (at your option) any later version.
1010
//
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,
1212
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
// GNU General Public License for more details.
1515
//
1616
// 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/>.
1818

1919
#include <Arduino.h>
2020
#include "RGBAnimation.h"

src/RGBAnimation.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// RGB Matrix Project - RGBAnimation
1+
// Shift Register LED Matrix Project - RGBAnimation
22
// Copyright (C) 2017 Michael Kamprath
33
//
4-
// This file is part of RGB Matrix Project.
4+
// This file is part of Shift Register LED Matrix Project.
55
//
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
77
// it under the terms of the GNU General Public License as published by
88
// the Free Software Foundation, either version 3 of the License, or
99
// (at your option) any later version.
1010
//
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,
1212
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
// GNU General Public License for more details.
1515
//
1616
// 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/>.
1818

1919
#ifndef __RGBANIMATION_H__
2020
#define __RGBANIMATION_H__

0 commit comments

Comments
 (0)