removed display images from github

This commit is contained in:
Neythen 2021-12-01 15:57:44 +00:00
parent faf5a4acdc
commit 8654b369fc
44 changed files with 39 additions and 6 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 821 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 821 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -1,4 +1,5 @@
sudo ./setup_config_files.sh sudo ./setup_config_files.sh
sudo apt-get install python3-pip sudo apt-get install python3-pip
pip3 install finnhub-python pip3 install finnhub-python
pip3 install flask pip3 install flask
@ -10,7 +11,7 @@ pip3 install geopy
sudo apt-get install libopenjp2-7 sudo apt-get install libopenjp2-7
sudo apt-get install libtiff5 sudo apt-get install libtiff5
sudo chmod -R ugo+rwx display_images
cd rpi-rgb-led-matrix cd rpi-rgb-led-matrix
sudo apt-get update && sudo apt-get install python3-dev python3-pillow -y sudo apt-get update && sudo apt-get install python3-dev python3-pillow -y
make build-python PYTHON=$(which python3) make build-python PYTHON=$(which python3)

View File

@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
rm -rf csv rm -rf csv
mkdir csv mkdir csv
cd csv cd csv
@ -39,7 +41,7 @@ mkdir 'Premier League'
cd NBA cd NBA
touch future_games.json live_games.json past_games.json team_info.csv team_stats.json touch future_games.json live_games.json past_games.json team_info.csv team_stats.json
echo [] >> touch future_games.json echo [] >> future_games.json
echo [] >> live_games.json echo [] >> live_games.json
echo [] >> past_games.json echo [] >> past_games.json
echo [] >> team_info.csv echo [] >> team_info.csv
@ -48,7 +50,7 @@ echo [] >> team_stats.json
cd .. cd ..
cd NFL cd NFL
touch future_games.json live_games.json past_games.json team_info.csv team_stats.json touch future_games.json live_games.json past_games.json team_info.csv team_stats.json
echo [] >> touch future_games.json echo [] >> future_games.json
echo [] >> live_games.json echo [] >> live_games.json
echo [] >> past_games.json echo [] >> past_games.json
echo [] >> team_info.csv echo [] >> team_info.csv
@ -57,7 +59,7 @@ echo [] >> team_stats.json
cd .. cd ..
cd NHL cd NHL
touch future_games.json live_games.json past_games.json team_info.csv team_stats.json touch future_games.json live_games.json past_games.json team_info.csv team_stats.json
echo [] >> touch future_games.json echo [] >> future_games.json
echo [] >> live_games.json echo [] >> live_games.json
echo [] >> past_games.json echo [] >> past_games.json
echo [] >> team_info.csv echo [] >> team_info.csv
@ -66,7 +68,7 @@ echo [] >> team_stats.json
cd .. cd ..
cd 'Premier League' cd 'Premier League'
touch future_games.json live_games.json past_games.json team_info.csv team_stats.json touch future_games.json live_games.json past_games.json team_info.csv team_stats.json
echo [] >> touch future_games.json echo [] >> future_games.json
echo [] >> live_games.json echo [] >> live_games.json
echo [] >> past_games.json echo [] >> past_games.json
echo [] >> team_info.csv echo [] >> team_info.csv
@ -75,3 +77,33 @@ echo [] >> team_stats.json
cd ../../.. cd ../../..
sudo chmod -R ugo+rwx csv sudo chmod -R ugo+rwx csv
rm -rf display_images
mkdir display_images
cd display_images
touch 'Crypto Prof.ppm'
touch 'Crypto.ppm'
touch 'Current Weather Prof.ppm'
touch 'Current Weather.ppm'
touch 'Custom GIFs.gif'
touch 'Custom Images.ppm'
touch 'Custom Messages.ppm'
touch 'Daily Forecast.ppm'
touch 'Forex Prof.ppm'
touch 'Forex.ppm'
touch 'News Prof.ppm'
touch 'News.ppm'
touch 'Sports (Live Games).ppm'
touch 'Sports (Past Games).ppm'
touch 'Sports (Team Stats).ppm'
touch 'Sports (Upcoming Games).ppm'
touch 'Stocks Prof.ppm'
touch 'Stocks.ppm'
touch 'daily_weather.ppm'
touch 'display_gif.gif'
touch 'display_gif.ppm'
touch 'display_image.ppm'
cd ..
sudo chmod -R ugo+rwx display_images

View File

@ -1,4 +1,4 @@
git pull origin master git pull origin master
./setup.sh