Browse Source

readme and license

Thomas Buck 1 year ago
parent
commit
f1f630e3bc
8 changed files with 73 additions and 1 deletions
  1. 24
    1
      README.md
  2. 7
    0
      draw.py
  3. 7
    0
      life.py
  4. 7
    0
      manager.py
  5. 7
    0
      pi.py
  6. 7
    0
      solid.py
  7. 7
    0
      splash.py
  8. 7
    0
      test.py

+ 24
- 1
README.md View File

1
-Included font from https://github.com/farsil/ibmfonts
1
+# RGB Matrix Visualizer
2
+
3
+Render various content to various output devices.
4
+
5
+## Quick Start
6
+
7
+Just run
8
+
9
+    ./manager.py
10
+
11
+and go from there.
12
+
13
+## Licensing
14
+
15
+This project is licensed as beer-ware:
16
+
17
+    ----------------------------------------------------------------------------
18
+    "THE BEER-WARE LICENSE" (Revision 42):
19
+    <xythobuz@xythobuz.de> wrote this file.  As long as you retain this notice
20
+    you can do whatever you want with this stuff. If we meet some day, and you
21
+    think this stuff is worth it, you can buy me a beer in return.   Thomas Buck
22
+    ----------------------------------------------------------------------------
23
+
24
+The included font from [farsil/ibmfonts](https://github.com/farsil/ibmfonts) is licensed as `CC-BY-SA-4.0`.

+ 7
- 0
draw.py View File

1
 #!/usr/bin/env python3
1
 #!/usr/bin/env python3
2
 
2
 
3
+# ----------------------------------------------------------------------------
4
+# "THE BEER-WARE LICENSE" (Revision 42):
5
+# <xythobuz@xythobuz.de> wrote this file.  As long as you retain this notice
6
+# you can do whatever you want with this stuff. If we meet some day, and you
7
+# think this stuff is worth it, you can buy me a beer in return.   Thomas Buck
8
+# ----------------------------------------------------------------------------
9
+
3
 from bdfparser import Font
10
 from bdfparser import Font
4
 from PIL import Image
11
 from PIL import Image
5
 import os
12
 import os

+ 7
- 0
life.py View File

1
 #!/usr/bin/env python3
1
 #!/usr/bin/env python3
2
 
2
 
3
+# ----------------------------------------------------------------------------
4
+# "THE BEER-WARE LICENSE" (Revision 42):
5
+# <xythobuz@xythobuz.de> wrote this file.  As long as you retain this notice
6
+# you can do whatever you want with this stuff. If we meet some day, and you
7
+# think this stuff is worth it, you can buy me a beer in return.   Thomas Buck
8
+# ----------------------------------------------------------------------------
9
+
3
 import time
10
 import time
4
 import random
11
 import random
5
 
12
 

+ 7
- 0
manager.py View File

1
 #!/usr/bin/env python3
1
 #!/usr/bin/env python3
2
 
2
 
3
+# ----------------------------------------------------------------------------
4
+# "THE BEER-WARE LICENSE" (Revision 42):
5
+# <xythobuz@xythobuz.de> wrote this file.  As long as you retain this notice
6
+# you can do whatever you want with this stuff. If we meet some day, and you
7
+# think this stuff is worth it, you can buy me a beer in return.   Thomas Buck
8
+# ----------------------------------------------------------------------------
9
+
3
 import time
10
 import time
4
 
11
 
5
 class Manager:
12
 class Manager:

+ 7
- 0
pi.py View File

1
 #!/usr/bin/env python3
1
 #!/usr/bin/env python3
2
 
2
 
3
+# ----------------------------------------------------------------------------
4
+# "THE BEER-WARE LICENSE" (Revision 42):
5
+# <xythobuz@xythobuz.de> wrote this file.  As long as you retain this notice
6
+# you can do whatever you want with this stuff. If we meet some day, and you
7
+# think this stuff is worth it, you can buy me a beer in return.   Thomas Buck
8
+# ----------------------------------------------------------------------------
9
+
3
 from rgbmatrix import RGBMatrix, RGBMatrixOptions
10
 from rgbmatrix import RGBMatrix, RGBMatrixOptions
4
 from PIL import Image
11
 from PIL import Image
5
 
12
 

+ 7
- 0
solid.py View File

1
 #!/usr/bin/env python3
1
 #!/usr/bin/env python3
2
 
2
 
3
+# ----------------------------------------------------------------------------
4
+# "THE BEER-WARE LICENSE" (Revision 42):
5
+# <xythobuz@xythobuz.de> wrote this file.  As long as you retain this notice
6
+# you can do whatever you want with this stuff. If we meet some day, and you
7
+# think this stuff is worth it, you can buy me a beer in return.   Thomas Buck
8
+# ----------------------------------------------------------------------------
9
+
3
 import time
10
 import time
4
 
11
 
5
 class Solid:
12
 class Solid:

+ 7
- 0
splash.py View File

1
 #!/usr/bin/env python3
1
 #!/usr/bin/env python3
2
 
2
 
3
+# ----------------------------------------------------------------------------
4
+# "THE BEER-WARE LICENSE" (Revision 42):
5
+# <xythobuz@xythobuz.de> wrote this file.  As long as you retain this notice
6
+# you can do whatever you want with this stuff. If we meet some day, and you
7
+# think this stuff is worth it, you can buy me a beer in return.   Thomas Buck
8
+# ----------------------------------------------------------------------------
9
+
3
 class SplashScreen:
10
 class SplashScreen:
4
     def __init__(self, g, width = 32, height = 32):
11
     def __init__(self, g, width = 32, height = 32):
5
         self.gui = g
12
         self.gui = g

+ 7
- 0
test.py View File

1
 #!/usr/bin/env python3
1
 #!/usr/bin/env python3
2
 
2
 
3
+# ----------------------------------------------------------------------------
4
+# "THE BEER-WARE LICENSE" (Revision 42):
5
+# <xythobuz@xythobuz.de> wrote this file.  As long as you retain this notice
6
+# you can do whatever you want with this stuff. If we meet some day, and you
7
+# think this stuff is worth it, you can buy me a beer in return.   Thomas Buck
8
+# ----------------------------------------------------------------------------
9
+
3
 import pygame
10
 import pygame
4
 
11
 
5
 class TestGUI:
12
 class TestGUI:

Loading…
Cancel
Save