Search code examples
raspberry-piscreen-resolution

How to change screen resolution of Raspberry Pi


I am using 7" TFT LCD Display with the Raspberry pi, can anyone tell how i can change the screen resolution of Raspberry Pi and what should be the resolution for the 7" TFT LCD Display.


Solution

  • I made the following changes in the /boot/config.txt file, to support my 7" TFT LCD.

    Uncomment "disable_overscan=1"

    overscan_left=24
    overscan_right=24
    Overscan_top=10
    Overscan_bottom=24
    
    Framebuffer_width=480
    Framebuffer_height=320
    
    Sdtv_mode=2
    Sdtv_aspect=2
    

    I used this video as a guide.