注意: 如果想翻转屏幕后触摸正常,那么需要在翻转前进行触摸校准。
修改之前界面显示如下图:
1.打开配置文件
root@ELF1:~# vi /etc/X11/xorg.conf
2.添加如下标红内容
Section "Device"
Identifier "Kernel Framebuffer Device"
Driver "fbdev"
Option "fbdev" "/dev/fb0"
Option "Rotate" "UD" //显示旋转 180°
EndSection
Section "ServerFlags"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
EndSection
Section "InputClass"
Identifier "calibration"
MatchProduct "goodix-ts" //设置当前触摸设备
MatchDevicePath "/dev/input/event*" //设备节点
Option "InvertY" "1" //翻转 Y 轴
Option "InvertX" "1" //翻转 X 轴
EndSection
效果如下:
保存退出。
3.断电,连接屏幕,上电,等待系统启动完成,此时可以看到qt界面已经翻转180度。
更多回帖