Raspberry Pi drive 1.44inch LCD HAT with fbtft
The hardware: Raspberry Pi 3B 1.44inch LCD HAT The software: Raspbian fbtft Some users feedback that this LCD less of instruction and some of them like to use it as a monitor of Pi. So, this article Let's learn how to port fbtft for displaying with Raspberry Pi. Framebuffer uses an buffer to store the data for displaying, if you want to change the display you just need to change the data on buffer. There is an open source project on github: https://github.com/notro/fbtft . Thanks to its contributors. With this project, Raspberry Pi could supports TFT LCD perfectly. Let's do it. Framebuffer 1. Open and edit module file to enable modules sudo nano /etc/modules Append two statement below to the file . The first one is to enable the SPI of Pi and the second is used to start the fbtft device. spi-bcm2835 fbtft_device 2. Creating a new file for fbtft configuration sudo nano /et...