Hardware known to work with KlipperScreen

Elecrow 5 inch Resistive Touchscreen

Generic Chinese 5" Screen, pretty low form factor with Pi mounts on the back.

It’s a bit of a process, but it’ll work in the end. The below instructions will install the drivers correctly and rotate the screen 180.Leave out the #Rotate Screen# section if you don’t need it.

#change wpa supp right after writing the OS to the SD card#

#Install SD card into Pi and boot up, allow Pi to connect to network#

#SSH to Pi#

#run driver install #
git clone https://github.com/goodtft/LCD-show.git
sudo chmod -R 755 LCD-show
cd LCD-show/
sudo ./LCD5-show

#rotate display 180#
cd LCD-show/
sudo ./LCD5-show 180

#Install Kiauh

sudo apt-get update && sudo apt-get install git
&& git clone https://github.com/dw-0/kiauh.git

#Install KlipperScreen with Kiauh
./kiauh/kiauh.sh

#paste last part of the below mainsail config into config.txt, all the way at the end#

####################################################
####     MainsailOS specific configurations     ####
####################################################
####      DO NOT CHANGE SECTION BELOW !!!       ####
####   UNLESS YOU KNOW WHAT YOU ARE DOING !!!   ####
####################################################

## For more options and information see
## https://www.raspberrypi.com/documentation/computers/config_txt.html
## Some settings may impact device functionality. See link above for details

## For additional information about device filters see
## https://www.raspberrypi.com/documentation/computers/config_txt.html#model-filters


[pi0]
## This affects Pi Zero(W) and Pi Zero2
## Due lag of RAM, limit GPU RAM
gpu_mem=128

[pi2]
gpu_mem=256

[pi3]
## Use 256 if 1Gb Ram Model!
gpu_mem=128
# gpu_mem=256

[pi4]
## Do not use more than 256Mb on Pi Model 4, it uses its own Management.
gpu_mem=256

[all]

## SPI Interface is enabled by default for Input Shaper
## This colides with Hyperpixel Display!
## Hyperpixel Screen uses the same Pin for Backlight.
dtparam=spi=on


## Enable Hardware UART for Serial Communication
## This also disables Bluetooth!
enable_uart=1
dtoverlay=disable-bt

## Enable I2C by default.
## This is used by Klipper's Host MCU
## See https://www.klipper3d.org/RPi_microcontroller.html#optional-enabling-i2c
## for destails.
## For MPU Accelrometer please use
## dtparam=i2c_arm=on,i2c_arm_baudrate=400000
dtparam=i2c_arm=on


### EXPERIMENTAL - Enable 64bit Kernel
### The 64-bit kernel will only work on:
### Raspberry Pi 3, 3+, 4, 400, Zero 2 W and 2B rev 1.2
### and Raspberry Pi Compute Modules 3, 3+ and 4.
# arm_64bit=1

####################################################

#Run:

sudo mv /usr/share/X11/xorg.conf.d/99-fbturbo.conf ~