Use zip files for drivers

Using zip files instead of unzipped folders to reduce size of repo.
Added demo image which is shown on successfull installs for the 9.7" E-Paper
This commit is contained in:
Ace
2020-12-07 10:40:01 +01:00
parent 661ac6e7ab
commit 4ecb778812
66 changed files with 19 additions and 45731 deletions

View File

@@ -1,14 +1,31 @@
#!/bin/bash
# Installs drivers for 9.7" ePaper display
cd bcm2835-1.58
# Unzip C++ SPI library and driver files
echo "Unzipping files"
unzip bcm2835-1.68.zip
unzip IT8951.zip
rm bcm2835-1.68.zip
rm IT8951.zip
# Install C++ SPI library for Raspberry
echo "Installing C++ SPI library"
cd bcm2835-1.68
chmod +x configure
./configure
make
sudo make check
sudo make install
# Install 9.7" E-Paper drivers
echo "Installing 9.7inch E-Paper drivers"
cd ..
cd IT8951
make clean
make
# Show image to check if it works
echo "Showing demo image"
sudo ./IT8951 0 0 pika.bmp
echo "If you see a pikachu on the E-Paper, the install"
echo "was successfull. If not, please report this issue."