Screen Wiring and Configuration
info
- FLY-TOOLS needs to be connected to the network and input
IP+:9999
of the host machine to access. - For example,
192.168.6.110:9999
- TFT Wiring
- HDMI Wiring
- The screen needs to be configured in FLY TOOLS and KS opened.
- FLY-Pi V2 TFT screen wiring
- The screen needs to be configured in FLY TOOLS and KS opened.
- Use an FPC to HDMI module.
- Please note that a data transmission type-C cable needs to be connected to the module.
- FLY-Pi v2 HDMI screen wiring
TFT Screen Configuration
- TFT Screen
- KS needs to be opened in FLY TOOLS.
- TFT Capacitive Screen Configuration
- TFT Resistive Screen Configuration
Method One
- Capacitive configuration requires using the following command to configure as
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 a capacitive screen to a resistive screen, 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 using the following command to configure as
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 a resistive screen to a capacitive screen, use the following command
sudo sed -i '11{/^#/!s/screen=fly-tft-v2-r/screen=fly-tft-v2-c/}' /boot/FlyOS-Env.txt