Screen Wiring & Configuration
info
- FLY-TOOLS requires the host computer to be connected to the network, then access via
IP+:9999
- For example:
192.168.6.110:9999
- TFT Wiring
- HDMI Wiring
- Configure the screen in FLY TOOLS and enable KS as shown below
- FLY-Pi V2 TFT screen wiring
- Configure the screen in FLY TOOLS and enable KS as shown below
- Use the FPC to HDMI module
- Please ensure you connect a data-capable type-c cable to the module
- FLY-Pi v2 HDMI screen wiring
TFT Screen Configuration
- TFT Screen
- Enable KS in FLY TOOLS
- TFT Capacitive Screen Configuration
- TFT Resistive Screen Configuration
Method 1
- For capacitive configuration, use the following command to set to
fly-tft-v1
sudo sed '11s/screen=none/screen=fly-tft-v1/' -i /boot/FlyOS-Env.txt
- Please make sure 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 from capacitive to resistive configuration, use the following command:
sudo sed -i '11{/^#/!s/screen=fly-tft-v2-c/screen=fly-tft-v1/}' /boot/FlyOS-Env.txt
Method 2
- For resistive configuration, use the following command to set to
fly-tft-v1
sudo sed '11s/screen=none/screen=fly-tft-v1/' -i /boot/FlyOS-Env.txt
- Please make sure 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 from resistive to capacitive configuration, use the following command:
sudo sed -i '11{/^#/!s/screen=fly-tft-v2-r/screen=fly-tft-v1/}' /boot/FlyOS-Env.txt