Datasheet
Table Of Contents

Finally, we'll tell the Pi to use the attached DPI display. The following will work for our 5" and 7" 800x480 displays. Both
touch and non-touch displays use the same setup here
Start by editing with
and add the following lines at the bottom
For 4.3" TFT use the following:
sudo nano /boot/config.txt
# Disable spi and i2c, we need these pins.
dtparam=spi=off
dtparam=i2c_arm=off
# Set screen size and any overscan required
overscan_left=0
overscan_right=0
overscan_top=0
overscan_bottom=0
framebuffer_width=800
framebuffer_height=480
# enable the DPI display
enable_dpi_lcd=1
display_default_lcd=1
# set up the size to 800x480
dpi_group=2
dpi_mode=87
# set up the hsync/vsync/clock polarity and format
dpi_output_format=454661
# set up the size to 800x480
hdmi_timings=800 0 40 48 88 480 0 13 3 32 0 0 0 60 0 32000000 6
© Adafruit Industries https://learn.adafruit.com/adafruit-dpi-display-kippah-ttl-tft Page 12 of 20










