Screen Wiring and Configuration
c8 v1.0-1.2 Screen Wiring and Configuration
- Wiring diagram for c8 v1.0-1.2

c8 v1.3 Screen Wiring
- Wiring diagram for c8 v1.3

c8 v1.0-1.2 G2T Installation and Configuration Reference
- G2T
-
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
- You need to configure the screen in FLY TOOLS and turn on KS
- FLY-Pi TFT screen wiring
- You need to configure the screen in FLY TOOLS and turn on KS
- Use FPC to HDMI module
- Please note that you need to connect a type-C with data transmission function to the module
TFT Screen Configuration
- TFT Screen
- You need to turn on KS 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 it was successfully modified
sed -n '9,11p' /boot/FlyOS-Env.txt | grep -v '^#'
- To change from capacitive screen to 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 it was successfully modified
sed -n '9,11p' /boot/FlyOS-Env.txt | grep -v '^#'
- To change from resistive screen to 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