Calibrar a tela sensível ao toque

1

Estou tendo problemas com a calibração de uma tela de toque para o sistema de quiosque. Eu instalei xinput_calibrator e executei:

$ xinput_calibrator -v
DEBUG: XInputExtension version is 2.3
DEBUG: Skipping virtual master devices and devices without axis valuators.
DEBUG: Skipping device 'Virtual core XTEST pointer' id=4, does not report Absolute events.
DEBUG: Skipping device 'PS/2 Generic Mouse' id=12, does not report Absolute events.
DEBUG: Selected device: MicroTouch Systems, Inc. MicroTouch USB Touchscreen - EX II
DEBUG: Not usbtouchscreen calibrator: Not a usbtouchscreen device
DEBUG: Not evdev calibrator: Evdev: invalid "Evdev Axis Calibration" property format
Calibrating standard Xorg driver "MicroTouch Systems, Inc. MicroTouch USB Touchscreen - EX II"
current calibration values: min_x=0, max_x=65535 and min_y=0, max_y=65535
If these values are estimated wrong, either supply it manually with the --precalib option, or run the 'get_precalib.sh' script to automatically get it (through HAL).
DEBUG: Found that 'MicroTouch Systems, Inc. MicroTouch USB Touchscreen - EX II' is a sysfs name.
DEBUG: Adding click 0 (X=323, Y=768)
DEBUG: Adding click 1 (X=970, Y=766)
DEBUG: Adding click 2 (X=321, Y=253)
DEBUG: Adding click 3 (X=969, Y=247)
--> Making the calibration permanent <--
DEBUG: Found that 'MicroTouch Systems, Inc. MicroTouch USB Touchscreen - EX II' is a sysfs name.
copy the snippet below into '/etc/X11/xorg.conf.d/99-calibration.conf' (/usr/share/X11/xorg.conf.d/ in some distro's)
Section "InputClass"
  Identifier    "calibration"
  MatchProduct  "MicroTouch Systems, Inc. MicroTouch USB Touchscreen - EX II"
  Option    "MinX"  "10961"
  Option    "MaxX"  "55163"
  Option    "MinY"  "54602"
  Option    "MaxY"  "10485"
  Option    "SwapXY"    "0" # unless it was already set to 1
  Option    "InvertX"   "0"  # unless it was already set
  Option    "InvertY"   "0"  # unless it was already set
EndSection

Mas isso não altera a miscalibração da tela e eu acho que preciso usar a opção xinput_calibrator --precalib , já que os valores gerados estão errados.

Como posso obter esses valores para colocar nesse comando?

UPDATE

Devido aos comentários, aqui mais alguns detalhes:

  1. A saída acima é salva em /etc/X11/xorg.conf.d/99-calibration.conf
  2. Encontre as partes relevantes do conteúdo do arquivo .local/share/xorg/Xorg.0.log antes e depois da aplicação da configuração acima - > aqui < -
por philipp 17.08.2018 / 14:29

1 resposta

0

xinput_calibrator é para calibrar telas de toque usando o evdev. O driver usado para a sua tela sensível ao toque é libinput. Então você precisa usar o Options CalibrationMatrix ou TransformationMatrix.

    
por 16.10.2018 / 14:08