[+] NEC LCD19wv - kalibracja ekranu dotykowego

Wszystko związane z jądrem systemowym, sterownikami, sprzętem itp.
Kamzor
Posty: 63
Rejestracja: 28 kwietnia 2010, 05:01
Lokalizacja: Zieleniec/Wrocław

[+] NEC LCD19wv - kalibracja ekranu dotykowego

Post autor: Kamzor »

Hej
Używam Debiana testowego. Podłączyłem do niego monitor dotykowy NEC LCD19wv. Sam obraz działa, jednakże mysz nie. Gdy dotykam ekranu to wskaźnik reaguje ale w całkiem innym miejscu. Kombinowałem z biblioteką libts oraz ts_calibrate, ale te zaliczało krach.

Ktoś miał może styczność z ekranami dotykowymi?
Pozdrawiam!

Dodane:
Fascynujące, że Google nie wie nic na temat evdev.
Ostatecznie wystarczyło doprowadzić plik /usr/share/X11/xorg.conf.d/10-evdev.conf do takiego stanu:

Kod: Zaznacz cały

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
        Option "SwapAxes" "True"
        Option "GrabDevice" "True"
        Option "InvertY" "True"
        Option "Calibration" "71 1937 132 1860"
EndSection
I działa prawie tak jak powinno.
ODPOWIEDZ