Screen Wiring and Configuration
info
- FLY-TOOLS requires the host computer to be connected to the internet and then access it by entering the host's
IP+:9999
- For example
192.168.6.110:9999
- TFT Wiring
- HDMI Wiring
- You need to configure the screen in FLY TOOLS as shown below and open KS
- FLY-Pi TFT screen wiring
- You need to configure the screen in FLY TOOLS as shown below and open KS
- You need to use an FPC to HDMI converter board
- Please note that you need to connect a Type-C with data transfer function to the module
TFT Screen Configuration
- TFT Screen
- You need to open KS in FLY TOOLS
- TFT Capacitive Screen Configuration
- TFT Resistive Screen Configuration
Method One
- Capacitive configuration requires the following command to set to
fly-tft-v2-c
sudo sed '11s/screen=none/screen=fly-tft-v2-c/' -i /boot/FlyOS-Env.txt
- Please confirm that the dip switch on the back of the screen is set to
Cap
- Use the following command to check if the modification was successful
sed -n '9,11p' /boot/FlyOS-Env.txt | grep -v '^#'
- To change capacitive screen to resistive screen configuration use the following command
sudo sed -i '11{/^#/!s/screen=fly-tft-v2-c/screen=fly-tft-v2-r/}' /boot/FlyOS-Env.txt
Method One
- Resistive screen configuration requires the following command to set to
fly-tft-v2-r
sudo sed '11s/screen=none/screen=fly-tft-v2-r/' -i /boot/FlyOS-Env.txt
- Please confirm that the dip switch on the back of the screen is set to
Resi
- Use the following command to check if the modification was successful
sed -n '9,11p' /boot/FlyOS-Env.txt | grep -v '^#'
- To change resistive screen to capacitive screen configuration use the following command
sudo sed -i '11{/^#/!s/screen=fly-tft-v2-r/screen=fly-tft-v2-c/}' /boot/FlyOS-Env.txt