こんにちは、最近奇妙なデバイスを作業しています。デフォルトの解像度が800×1280のタブレットです。はい、逆さまです。ディスプレイは縦モードで、画面を回転させてタッチスクリーンを回転させるためにxorg設定を編集する必要がありました。デフォルトの解像度を使用すると正常に動作しますが、768x1024の解像度を使用しようとしています。次のコマンドを使用して、タブレットで4:3モードで768×1024の解像度を正常に表示しました(両側に黒いバーがあり、これが私が望むものです)。
user1:~ # xrandr --newmode "768x1024_60.00" 65.25 768 816 896 1024 1024 1027 1037 1063 -hsync +vsync
user1:~ # xrandr --addmode DSI-1 768x1024_60.00
user1:~ # xrandr -s 768x1024_60.00
私が経験している問題は、実際のタッチスクリーンデジタイザをまだ16:10に停止しているかのように整列させる方法です。これは私のxorg設定ファイルです。
user1:~ # cat /etc/X11/xorg.conf.d/99-touchscreen.conf
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "SwapAxes" "true"
Option "InvertY" "true"
EndSection
user1:~ # cat /etc/X11/xorg.conf.d/50-monitor.conf
Section "Monitor"
Identifier "DSI-1"
Option "Rotate" "right"
EndSection
タッチスクリーンのプロパティは次のとおりです。
Device 'Goodix Capacitive TouchScreen':
Device Enabled (152): 1
Coordinate Transformation Matrix (154): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
Device Accel Profile (284): 0
Device Accel Constant Deceleration (285): 1.000000
Device Accel Adaptive Deceleration (286): 1.000000
Device Accel Velocity Scaling (287): 10.000000
Device Product ID (276): 1046, 9111
Device Node (275): "/dev/input/event2"
Evdev Axis Inversion (288): 0, 1
Evdev Axis Calibration (289): <no items>
Evdev Axes Swap (290): 1
Axis Labels (291): "Abs MT Position X" (282), "Abs MT Position Y" (283), "Abs MT Touch Major" (280), "Abs MT Width Major" (281), "None" (0), "None" (0)
Button Labels (292): "Button Unknown" (277), "Button Unknown" (277), "Button Unknown" (277), "Button Wheel Up" (158), "Button Wheel Down" (159)
Evdev Scrolling Distance (293): 0, 0, 0
Evdev Middle Button Emulation (294): 0
Evdev Middle Button Timeout (295): 50
Evdev Third Button Emulation (296): 0
Evdev Third Button Emulation Timeout (297): 1000
Evdev Third Button Emulation Button (298): 3
Evdev Third Button Emulation Threshold (299): 20
Evdev Wheel Emulation (300): 0
Evdev Wheel Emulation Axes (301): 0, 0, 4, 5
Evdev Wheel Emulation Inertia (302): 10
Evdev Wheel Emulation Timeout (303): 200
Evdev Wheel Emulation Button (304): 4
Evdev Drag Lock Buttons (305): 0
Evdev Kiosk Touch Mode (306): 0
Evdev Kiosk Touch Button (307): 1
Evdev Kiosk Touch Button Delay (308): 0
それでは、タッチマトリックスを編集する必要がありますか?どんなアドバイスやより簡単な方法がありますか?助けてくれてありがとう。
ベストアンサー1
xinput_calibrator
私は正しいxorg校正データを提供するxorgを使ってこの問題を解決することができました。
デフォルトでは、ターミナルウィンドウを開き、xinput_calibratorを起動し、タッチするようにポイントをタッチします。完了すると、ターミナルウィンドウにxorgで使用する情報が表示されます。
user1:~> xinput_calibrator
Calibrating EVDEV driver for "Goodix Capacitive TouchScreen" id=11
current calibration values (from XInput): min_x=66, max_x=725 and min_y=-5, max_y=1284
Doing dynamic recalibration:
Setting new calibration data: 61, 730, -3, 1272
--> Making the calibration permanent <--
copy the snippet below into '/etc/X11/xorg.conf.d/99-calibration.conf'
Section "InputClass"
Identifier "calibration"
MatchProduct "Goodix Capacitive TouchScreen"
Option "Calibration" "61 730 -3 1272"
EndSection