시작 시 Lubuntu에서 터치스크린 ELO(터치)가 인식되지 않습니다.

시작 시 Lubuntu에서 터치스크린 ELO(터치)가 인식되지 않습니다.

/etc/rc.local에 다음 명령을 추가했습니다.

/usr/bin/inputattach --daemon --always -elo /dev/ttyS4

하지만 시작 시 로드되지 않습니다. 모드가 지원되는지 확인했으며 lxterminal에서 호출하거나 sudo sh /etc/rc.local을 입력하면 작동합니다.

mtouch 또는 elo3b를 사용하여 다음 명령 중 하나를 추가하면 시작 시 작동합니다(그러나 교정기를 실행한 후에도 정확도가 정말 나쁩니다).

/usr/bin/inputattach --daemon --always -mtouch /dev/ttyS4
/usr/bin/inputattach --daemon --always -elo3b /dev/ttyS4

-elo3b 및 -mtouch가 있는 경우 시작 시 -elo가 로드되지 않는 이유는 무엇일까요?

로그에는 오류가 발생하는 항목이 없습니다.

또는 lubuntu에서 터치스크린을 활성화하는 다른 (더 쉬운) 방법이 있습니까? 멀티 터치 제스처가 아닌 화면 탭이 작동하는지에만 관심이 있습니다.

답변1

3일 동안 해결책을 찾고 있었습니다. 아래 소스 덕분에 드디어 찾았습니다. 비슷한 문제에 직면한 사람을 위해. /lib/udev/rules.d/40-inputattach.rules에 다음 규칙을 추가해야 합니다.

SUBSYSTEM=="tty", KERNEL=="ttyS4", ACTION=="add|change", RUN+="/lib/udev/inputattach --elotouch /dev/%k"

http://who-t.blogspot.nl/2012/07/elographics-touchscreen-setup.html

https://wiki.ubuntu.com/Touchscreen

https://help.ubuntu.com/community/EloTouchScreen

관련 정보