From 78b767196532507efd94e2fc4882bf8035fa3951 Mon Sep 17 00:00:00 2001 From: Bill Zimmerman Date: Mon, 9 Mar 2020 13:28:54 +0100 Subject: [PATCH] Created Mini PiTFT stats display (markdown) --- Mini-PiTFT-stats-display.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Mini-PiTFT-stats-display.md diff --git a/Mini-PiTFT-stats-display.md b/Mini-PiTFT-stats-display.md new file mode 100644 index 0000000..b9a2d8b --- /dev/null +++ b/Mini-PiTFT-stats-display.md @@ -0,0 +1,33 @@ +### Overview + +The [Adafruit Mini PiTFT](https://www.adafruit.com/product/4393) is an affordable 135x240 color TFT display for the Raspberry Pi. The PiTFT connects to the 'top' 2x12 headers on the Pi's 2x20 GPIO header connection. It comes pre-assembled and tested so it can simply be attached to the Pi's header pins (no soldering required). Its low cost, form factor and bright display make it well suited as an add-on for RaspAP. + +Using the display is straightforward with Adafruit's Python library for the ST7789 chipset. For this application we will use the Python imaging library (PIL) to output some useful stats for RaspAP. The Mini PiTFT's small size complements the Pi Zero W, although for this example we're using a Pi Model 4. + +![Adafruit Mini PiTFT](https://i.imgur.com/kxVSWH4.jpg) + +### Setup +With the Mini PiTFT attached to your Pi's GPIO pins, follow Adafruit's [setup guide for Python](https://learn.adafruit.com/adafruit-mini-pitft-135x240-color-tft-add-on-for-raspberry-pi/python-setup). You will need to verify that Serial Peripheral Interface (SPI) is enabled on your Pi and that you are running Python 3. + +Check that SPI is enabled on your Pi with `grep "^dt.*" /boot/config.txt`: +``` +dtparam=spi=on +... +``` +If you don't see the above, edit this file with `sudo nano /boot/config.txt`, add this line, save the file and reboot your Pi. + +With the preliminary setup done, execute RaspAP's [stats.py](https://github.com/billz/raspap-webgui/blob/master/app/pitft/stats.py) with: `sudo python3 stats.py`. Your Mini PiTFT should output a summary of RaspAP's status, like so: + +![](https://i.imgur.com/7Bfz6jL.jpg) + +This program updates the display every 100 milliseconds until exited. Interrupt its execution with CTRL+C. + +### Running on boot +It's easy to run this each time your Pi starts up. There are a few ways to do this, but the simplest method is to edit `/etc/rc.local`. Assuming a typical install of RaspAP, the stats.py path is `/var/www/html/app/pitft/stats.py`. In the example below, we've copied this to Pi user's home directory with `cp stats.py /home/pi`. You may then edit rc.local with `sudo nano /etc/rc.local` and add the line below before `exit 0`: + +``` +sudo /usr/bin/python3 /home/pi/stats.py & +exit 0 +``` + +Save and exit, then reboot your Pi to confirm that the stats display runs on boot. \ No newline at end of file