blinkenPi/README.md

37 lines
775 B
Markdown
Raw Normal View History

blinkenPi
---------
Because LEDs are fun.
2015-03-01 20:24:16 +01:00
Initiall this will display the space status on our small jumbotron but will also reflect current space life in the future
Dependencies
------------
```
sudo apt-get install python-imaging python3-pip python-requests python3-requests
sudo pip-3.2 install pillow
2015-03-01 20:24:16 +01:00
2015-03-08 20:46:48 +01:00
mkdir ~/bin
2015-03-01 20:24:16 +01:00
# Initialize submodules in repo
git submodule update --init
2015-03-08 19:48:30 +01:00
cd rpi-rgb-led-matrix/
make
cp rgbmatrix.so ../
2015-03-08 20:46:48 +01:00
cp led-matrix text-example ~/bin
# testing time
2015-03-08 19:48:30 +01:00
sudo ./minimal-example
sudo ./led-matrix -D 0
sudo python matrixtest.py
```
2020-01-28 22:47:59 +01:00
```
# the current convoluted way to start the script is:
# crontab starts ~/bin/tm.sh with a @reboot entry
# tm.sh starts tmux
# tmux starts ~/bin/lcd.sh as root
# lcd.sh starts the matrix display in an endless loop
```