diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | adafruit-pitft.sh | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -10,3 +10,5 @@ Then just reboot the system and wait for the interface to load. If you are using You also need to install libraries for GPIO pins and the therm sensors: sudo aptitude install python3-rpi.gpio sudo pip3 install w1thermsensor +If you are using Raspbian Buster before its official release date, and you have a PiTFT from Adafruit, PiTFT script might not work correctly. Instead of the official script, please use the one included in this git repository, running: +sudo ./adafruit-pitft.sh diff --git a/adafruit-pitft.sh b/adafruit-pitft.sh index dbac144..8bb1d62 100644 --- a/adafruit-pitft.sh +++ b/adafruit-pitft.sh @@ -6,6 +6,9 @@ # chmod +x adafruit-pitft.sh # sudo ./adafruit-pitft.sh +echo "WARNING:" +echo "This script should only be used with the Raspbian Buster beta image by codice-sorgente.it (https://www.codice-sorgente.it/raspbian-buster-pyside2-lxqt/#English)" + if [ $(id -u) -ne 0 ]; then echo "Installer must be run as root." echo "Try 'sudo bash $0'" |