Forum
  • Search
  • Member List
  • Calendar
Hello There, Guest! Login Register — Login with Facebook

eGalax touchscreen calibration
Thank you for your donation

Post Reply 
 
Thread Rating:
  • 5 Votes - 4.2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode | Linear Mode
eGalax touchscreen calibration
27th Aug, 2013, 02:05 AM
Post: #191
ph87 Offline
Registered
Posts: 20
Joined: Aug 2013
Reputation: 1
Possible Solution to make it work on N-TRIG Multitouchscreens
Hello guys,

finally I've got make it work on my Multitouchscreen (same type as you can get from chalc-elec [10"]). While swiping the pointer is a bit laggy but it works great with a Touch-skin where you don't have to swipe Blush

At first this is not my work!!! Nearly all scripts and hints were made my brantje and Markamc (thank you very much for your very good and fast support!)
-Thank you very much!!!!

So that is what you have to do (this worked for me):

Terminal

wget https://github.com/brantje/xbian-touch/raw/master/install.sh

sudo sh install.sh

stop uimapper
stop xbmc

wget --no-check -O uimapper.tar.gz "https://docs.google.com/uc?export=download&id=0B4lrG9aRe-8MWXUtaktRbWVFdDA"

sudo mkdir -p /scripts && tar -zxvf uimapper.tar.gz -C /scripts

Next step:
Terminal

evtest

No device specified, trying to scan all of /dev/input/event*
Not running as root, no devices may be available.
Available devices:
/dev/input/event0: Chicony USB Keyboard
/dev/input/event1: Chicony USB Keyboard
/dev/input/event2: N-Trig Pen
/dev/input/event3: N-Trig MultiTouch
/dev/input/event4: N-Trig Touchscreen
Select the device event number [0-4]:
And keep the event numbers for Mltitouch and Touchscreen in you mind (for me 3 & 4)

Now open uimapper.conf:
Terminal
sudo nano /etc/init/uimapper.conf
Edit it as shown:
Terminal
#!upstart
description "uimapper"


env UIMAPPER_DEV="/dev/input/event3" <-------- Put in here your event Number for Multitouch
env UIMAPPER_CONF="configs/multitouch.py" <-------- change to multitouch.py
env UIMAPPER_DIR="/scripts/uinput-mapper"

start on (input-device-added SUBSYSTEM=input)

stop on input-device-removed

nice -10

kill timeout 1

expect fork

script
chdir $UIMAPPER_DIR
exec ./input-read.py $UIMAPPER_DEV -D | ./input-create.py $UIMAPPER_CONF &
exec ./input-read.py "/dev/input/event4" -D & <--------Add this line with your event Number for Touchscreen

end script
respawn

Now we have to reduce the tine for the touch-events (it's a capacitive touchscreen so it's more sensitive):
Terminal
nano /scripts/uinput-mapper/input-create.py
and change a value at nearly end of the script:
Terminal
if inrange <= 400:
if holdtime > 0.02 and holdtime <= 0.50:

Okay that must be all...
Now just run:
Terminal
cd ~
sudo sh install.sh

XBian touch installer by brantje
Already installed... Recalibrating
Listing event devices
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-Chicony_USB_Keyboard-event-if01 -> ../event1
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-Chicony_USB_Keyboard-event-kbd -> ../event0
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-N-trig_DuoSense_11.20.10.53.16-event-if01 -> ../event3
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-N-trig_DuoSense_11.20.10.53.16-event-mouse -> ../event2
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-N-trig_DuoSense_11.20.10.53.16-if01-event-mouse -> ../event2
What is the event number of the touchscreen? eg: event0 then you type 0, followed by [ENTER]
Type always the event Number of the Multitouch which you have in your mind and follow the instructions on the screen. Sometimes for me the install.sh showed the wrong event Number and also you can't really recognize which one the Multitouch is - don't know why!
Calibrating does only work with the event Number which I've mentioned above...

Hope this works for you ----

Regards,
ph87
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Messages In This Thread
eGalax touchscreen calibration - raspuca - 24th Apr, 2013, 04:40 PM
RE: eGalax touchscreen calibration - Markamc - 25th Apr, 2013, 07:32 AM
RE: eGalax touchscreen calibration - brantje - 12th May, 2013, 11:19 PM
RE: eGalax touchscreen calibration - CurlyMo - 25th Apr, 2013, 07:38 AM
RE: eGalax touchscreen calibration - raspuca - 25th Apr, 2013, 08:07 AM
RE: eGalax touchscreen calibration - Markamc - 25th Apr, 2013, 08:11 AM
RE: eGalax touchscreen calibration - CurlyMo - 25th Apr, 2013, 08:19 AM
RE: eGalax touchscreen calibration - Markamc - 25th Apr, 2013, 08:26 AM
RE: eGalax touchscreen calibration - CurlyMo - 25th Apr, 2013, 09:30 AM
RE: eGalax touchscreen calibration - Markamc - 25th Apr, 2013, 09:37 AM
RE: eGalax touchscreen calibration - CurlyMo - 25th Apr, 2013, 05:28 PM
RE: eGalax touchscreen calibration - Koenkk - 25th Apr, 2013, 05:39 PM
RE: eGalax touchscreen calibration - CurlyMo - 25th Apr, 2013, 05:44 PM
RE: eGalax touchscreen calibration - Koenkk - 25th Apr, 2013, 05:48 PM
RE: eGalax touchscreen calibration - CurlyMo - 25th Apr, 2013, 05:51 PM
RE: eGalax touchscreen calibration - Koenkk - 25th Apr, 2013, 06:31 PM
RE: eGalax touchscreen calibration - CurlyMo - 25th Apr, 2013, 06:43 PM
RE: eGalax touchscreen calibration - raspuca - 26th Apr, 2013, 09:18 PM
RE: eGalax touchscreen calibration - Markamc - 27th Apr, 2013, 09:46 AM
RE: eGalax touchscreen calibration - raspuca - 12th May, 2013, 07:00 PM
RE: eGalax touchscreen calibration - Markamc - 13th May, 2013, 04:22 AM
RE: eGalax touchscreen calibration - brantje - 13th May, 2013, 05:01 AM
RE: eGalax touchscreen calibration - Markamc - 13th May, 2013, 05:10 AM
RE: eGalax touchscreen calibration - brantje - 13th May, 2013, 10:35 PM
RE: eGalax touchscreen calibration - Markamc - 13th May, 2013, 11:04 PM
RE: eGalax touchscreen calibration - raspuca - 18th May, 2013, 09:34 AM
RE: eGalax touchscreen calibration - Markamc - 18th May, 2013, 09:57 AM
RE: eGalax touchscreen calibration - raspuca - 18th May, 2013, 06:35 PM
eGalax touchscreen calibration - Koenkk - 18th May, 2013, 06:41 PM
RE: eGalax touchscreen calibration - Markamc - 18th May, 2013, 11:04 PM
RE: eGalax touchscreen calibration - Markamc - 19th May, 2013, 12:34 AM
RE: eGalax touchscreen calibration - raspuca - 19th May, 2013, 01:46 AM
RE: eGalax touchscreen calibration - Koenkk - 19th May, 2013, 03:20 AM
eGalax touchscreen calibration - Koenkk - 19th May, 2013, 08:04 AM
RE: eGalax touchscreen calibration - Markamc - 19th May, 2013, 08:11 AM
RE: eGalax touchscreen calibration - raspuca - 19th May, 2013, 09:20 AM
RE: eGalax touchscreen calibration - Markamc - 19th May, 2013, 09:25 AM
eGalax touchscreen calibration - Koenkk - 19th May, 2013, 05:19 PM
RE: eGalax touchscreen calibration - raspuca - 19th May, 2013, 06:25 PM
RE: eGalax touchscreen calibration - Markamc - 19th May, 2013, 06:33 PM
RE: eGalax touchscreen calibration - TobyM - 21st May, 2013, 01:31 AM
RE: eGalax touchscreen calibration - Markamc - 22nd May, 2013, 07:00 AM
RE: eGalax touchscreen calibration - raspuca - 22nd May, 2013, 07:46 PM
RE: eGalax touchscreen calibration - Markamc - 22nd May, 2013, 09:18 PM
RE: eGalax touchscreen calibration - TobyM - 23rd May, 2013, 04:53 AM
RE: eGalax touchscreen calibration - robosphere - 23rd May, 2013, 05:21 AM
RE: eGalax touchscreen calibration - Markamc - 23rd May, 2013, 06:32 AM
RE: eGalax touchscreen calibration - brantje - 23rd May, 2013, 09:19 AM
RE: eGalax touchscreen calibration - Markamc - 23rd May, 2013, 09:45 AM
RE: eGalax touchscreen calibration - robosphere - 24th May, 2013, 09:32 PM
RE: eGalax touchscreen calibration - Markamc - 24th May, 2013, 10:44 PM
RE: eGalax touchscreen calibration - raspuca - 25th May, 2013, 07:35 PM
RE: eGalax touchscreen calibration - Markamc - 25th May, 2013, 08:19 PM
RE: eGalax touchscreen calibration - raspuca - 25th May, 2013, 11:10 PM
RE: eGalax touchscreen calibration - brantje - 25th May, 2013, 11:37 PM
RE: eGalax touchscreen calibration - Markamc - 26th May, 2013, 01:29 AM
RE: eGalax touchscreen calibration - Markamc - 26th May, 2013, 02:30 AM
RE: eGalax touchscreen calibration - TobyM - 26th May, 2013, 07:22 PM
RE: eGalax touchscreen calibration - Markamc - 27th May, 2013, 11:55 AM
RE: eGalax touchscreen calibration - TobyM - 28th May, 2013, 12:44 AM
eGalax touchscreen calibration - Koenkk - 28th May, 2013, 05:04 AM
RE: eGalax touchscreen calibration - TobyM - 28th May, 2013, 03:43 PM
RE: eGalax touchscreen calibration - brantje - 29th May, 2013, 08:39 PM
RE: eGalax touchscreen calibration - Markamc - 29th May, 2013, 09:38 PM
RE: eGalax touchscreen calibration - brantje - 29th May, 2013, 10:26 PM
RE: eGalax touchscreen calibration - Markamc - 29th May, 2013, 10:47 PM
RE: eGalax touchscreen calibration - brantje - 29th May, 2013, 11:25 PM
RE: eGalax touchscreen calibration - robosphere - 1st Jun, 2013, 03:57 AM
RE: eGalax touchscreen calibration - Markamc - 1st Jun, 2013, 05:12 AM
RE: eGalax touchscreen calibration - brantje - 6th Jun, 2013, 06:33 PM
RE: eGalax touchscreen calibration - Markamc - 6th Jun, 2013, 09:50 PM
RE: eGalax touchscreen calibration - brantje - 6th Jun, 2013, 11:35 PM
RE: eGalax touchscreen calibration - Markamc - 7th Jun, 2013, 12:34 AM
RE: eGalax touchscreen calibration - brantje - 7th Jun, 2013, 01:01 AM
RE: eGalax touchscreen calibration - Markamc - 7th Jun, 2013, 01:18 AM
RE: eGalax touchscreen calibration - brantje - 7th Jun, 2013, 02:36 AM
RE: eGalax touchscreen calibration - Markamc - 7th Jun, 2013, 03:47 AM
RE: eGalax touchscreen calibration - brantje - 7th Jun, 2013, 05:20 PM
RE: eGalax touchscreen calibration - Markamc - 7th Jun, 2013, 06:37 PM
RE: eGalax touchscreen calibration - brantje - 8th Jun, 2013, 09:49 PM
RE: eGalax touchscreen calibration - brantje - 10th Jun, 2013, 08:51 PM
RE: eGalax touchscreen calibration - Markamc - 11th Jun, 2013, 01:54 PM
RE: eGalax touchscreen calibration - brantje - 11th Jun, 2013, 05:30 PM
RE: eGalax touchscreen calibration - Markamc - 11th Jun, 2013, 07:49 PM
RE: eGalax touchscreen calibration - brantje - 11th Jun, 2013, 10:06 PM
RE: eGalax touchscreen calibration - Markamc - 11th Jun, 2013, 11:14 PM
RE: eGalax touchscreen calibration - brantje - 11th Jun, 2013, 11:40 PM
RE: eGalax touchscreen calibration - Markamc - 12th Jun, 2013, 12:03 AM
RE: eGalax touchscreen calibration - brantje - 12th Jun, 2013, 04:40 AM
RE: eGalax touchscreen calibration - Markamc - 12th Jun, 2013, 04:42 AM
RE: eGalax touchscreen calibration - brantje - 12th Jun, 2013, 04:55 AM
RE: eGalax touchscreen calibration - brantje - 12th Jun, 2013, 06:19 AM
RE: eGalax touchscreen calibration - Markamc - 12th Jun, 2013, 06:43 AM
RE: eGalax touchscreen calibration - brantje - 12th Jun, 2013, 08:00 AM
RE: eGalax touchscreen calibration - Markamc - 12th Jun, 2013, 08:33 AM
RE: eGalax touchscreen calibration - brantje - 12th Jun, 2013, 08:13 PM
RE: eGalax touchscreen calibration - Markamc - 14th Jun, 2013, 06:28 AM
RE: eGalax touchscreen calibration - brantje - 14th Jun, 2013, 07:59 PM
RE: eGalax touchscreen calibration - Markamc - 19th Jun, 2013, 02:29 PM
RE: eGalax touchscreen calibration - brantje - 20th Jun, 2013, 09:50 PM
RE: eGalax touchscreen calibration - raspuca - 20th Jun, 2013, 03:58 AM
RE: eGalax touchscreen calibration - Markamc - 20th Jun, 2013, 07:54 AM
RE: eGalax touchscreen calibration - raspuca - 20th Jun, 2013, 05:49 PM
RE: eGalax touchscreen calibration - raspuca - 20th Jun, 2013, 10:38 PM
RE: eGalax touchscreen calibration - Markamc - 20th Jun, 2013, 11:13 PM
RE: eGalax touchscreen calibration - brantje - 21st Jun, 2013, 08:25 AM
RE: eGalax touchscreen calibration - Markamc - 22nd Jun, 2013, 11:25 AM
RE: eGalax touchscreen calibration - brantje - 23rd Jun, 2013, 06:14 PM
RE: eGalax touchscreen calibration - Markamc - 23rd Jun, 2013, 09:19 PM
RE: eGalax touchscreen calibration - Markamc - 28th Jun, 2013, 12:09 PM
RE: eGalax touchscreen calibration - Markamc - 1st Jul, 2013, 07:18 PM
RE: eGalax touchscreen calibration - raspuca - 1st Jul, 2013, 08:40 PM
RE: eGalax touchscreen calibration - bboyandru - 8th Jul, 2013, 04:17 PM
RE: eGalax touchscreen calibration - Markamc - 8th Jul, 2013, 06:56 PM
RE: eGalax touchscreen calibration - brantje - 8th Jul, 2013, 09:05 PM
RE: eGalax touchscreen calibration - bboyandru - 8th Jul, 2013, 09:52 PM
RE: eGalax touchscreen calibration - Markamc - 8th Jul, 2013, 10:41 PM
RE: eGalax touchscreen calibration - bboyandru - 8th Jul, 2013, 10:50 PM
RE: eGalax touchscreen calibration - Markamc - 8th Jul, 2013, 11:05 PM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 01:53 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 02:21 AM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 02:57 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 04:46 AM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 05:09 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 05:21 AM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 05:44 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 05:56 AM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 06:01 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 06:18 AM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 06:21 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 06:43 AM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 07:03 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 07:04 AM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 07:15 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 07:29 AM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 07:32 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 07:35 AM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 07:47 AM
RE: eGalax touchscreen calibration - MangoCat - 23rd Jul, 2016, 05:09 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 08:01 AM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 08:44 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 08:57 AM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 10:06 AM
RE: eGalax touchscreen calibration - bboyandru - 9th Jul, 2013, 04:33 PM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 05:45 PM
RE: eGalax touchscreen calibration - bboyandru - 9th Jul, 2013, 06:36 PM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 06:42 PM
RE: eGalax touchscreen calibration - bboyandru - 9th Jul, 2013, 07:14 PM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 09:31 PM
RE: eGalax touchscreen calibration - bboyandru - 9th Jul, 2013, 10:02 PM
RE: eGalax touchscreen calibration - Markamc - 9th Jul, 2013, 10:23 PM
RE: eGalax touchscreen calibration - bboyandru - 9th Jul, 2013, 11:07 PM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 10:05 PM
RE: eGalax touchscreen calibration - brantje - 9th Jul, 2013, 11:57 PM
RE: eGalax touchscreen calibration - Markamc - 10th Jul, 2013, 01:42 AM
RE: eGalax touchscreen calibration - bboyandru - 10th Jul, 2013, 06:03 AM
RE: eGalax touchscreen calibration - brantje - 12th Jul, 2013, 05:17 AM
RE: eGalax touchscreen calibration - bboyandru - 13th Jul, 2013, 02:33 AM
RE: eGalax touchscreen calibration - Markamc - 13th Jul, 2013, 03:05 AM
RE: eGalax touchscreen calibration - bboyandru - 13th Jul, 2013, 05:27 AM
RE: eGalax touchscreen calibration - Markamc - 13th Jul, 2013, 06:09 AM
RE: eGalax touchscreen calibration - Markamc - 13th Jul, 2013, 07:31 AM
RE: eGalax touchscreen calibration - raspuca - 28th Jul, 2013, 09:47 PM
RE: eGalax touchscreen calibration - brantje - 29th Jul, 2013, 10:27 PM
RE: eGalax touchscreen calibration - raspuca - 30th Jul, 2013, 12:20 AM
RE: eGalax touchscreen calibration - brantje - 30th Jul, 2013, 02:48 AM
RE: eGalax touchscreen calibration - raspuca - 30th Jul, 2013, 07:39 AM
RE: eGalax touchscreen calibration - brantje - 16th Aug, 2013, 12:24 AM
RE: eGalax touchscreen calibration - ph87 - 15th Aug, 2013, 09:46 AM
RE: eGalax touchscreen calibration - Markamc - 15th Aug, 2013, 06:21 PM
RE: eGalax touchscreen calibration - ph87 - 15th Aug, 2013, 08:55 PM
RE: eGalax touchscreen calibration - ph87 - 16th Aug, 2013, 07:31 AM
RE: eGalax touchscreen calibration - Markamc - 16th Aug, 2013, 08:33 AM
RE: eGalax touchscreen calibration - ph87 - 16th Aug, 2013, 09:22 AM
RE: eGalax touchscreen calibration - Markamc - 16th Aug, 2013, 09:29 AM
RE: eGalax touchscreen calibration - ph87 - 16th Aug, 2013, 09:37 AM
RE: eGalax touchscreen calibration - Markamc - 16th Aug, 2013, 09:40 AM
RE: eGalax touchscreen calibration - ph87 - 16th Aug, 2013, 09:42 AM
RE: eGalax touchscreen calibration - Markamc - 16th Aug, 2013, 09:48 AM
RE: eGalax touchscreen calibration - ph87 - 16th Aug, 2013, 09:56 AM
RE: eGalax touchscreen calibration - Markamc - 16th Aug, 2013, 10:08 AM
RE: eGalax touchscreen calibration - ph87 - 16th Aug, 2013, 10:12 AM
RE: eGalax touchscreen calibration - Markamc - 16th Aug, 2013, 10:18 AM
RE: eGalax touchscreen calibration - ph87 - 16th Aug, 2013, 10:22 AM
RE: eGalax touchscreen calibration - Markamc - 16th Aug, 2013, 10:35 AM
RE: eGalax touchscreen calibration - ph87 - 16th Aug, 2013, 10:40 AM
RE: eGalax touchscreen calibration - Markamc - 16th Aug, 2013, 10:43 AM
RE: eGalax touchscreen calibration - brantje - 17th Aug, 2013, 06:51 PM
RE: eGalax touchscreen calibration - Markamc - 18th Aug, 2013, 02:35 AM
RE: eGalax touchscreen calibration - brantje - 20th Aug, 2013, 10:28 PM
RE: eGalax touchscreen calibration - raspuca - 26th Aug, 2013, 12:10 AM
Possible Solution to make it work on N-TRIG Multitouchscreens - ph87 - 27th Aug, 2013 02:05 AM
RE: eGalax touchscreen calibration - brantje - 27th Aug, 2013, 08:55 PM
RE: eGalax touchscreen calibration - Markamc - 27th Aug, 2013, 09:49 PM
AW: eGalax touchscreen calibration - ph87 - 28th Aug, 2013, 12:46 AM
RE: eGalax touchscreen calibration - Markamc - 28th Aug, 2013, 02:39 AM
RE: eGalax touchscreen calibration - brantje - 28th Aug, 2013, 03:27 AM
RE: eGalax touchscreen calibration - Markamc - 28th Aug, 2013, 05:25 AM
RE: eGalax touchscreen calibration - brantje - 28th Aug, 2013, 11:07 AM
AW: RE: eGalax touchscreen calibration - ph87 - 30th Aug, 2013, 10:45 PM
RE: eGalax touchscreen calibration - brantje - 8th Sep, 2013, 11:33 PM
RE: eGalax touchscreen calibration - Markamc - 9th Sep, 2013, 04:08 AM
RE: eGalax touchscreen calibration - brantje - 10th Sep, 2013, 09:51 PM
RE: eGalax touchscreen calibration - mk01 - 11th Sep, 2013, 01:20 AM
RE: eGalax touchscreen calibration - Markamc - 11th Sep, 2013, 10:28 AM
RE: eGalax touchscreen calibration - mk01 - 11th Sep, 2013, 11:44 AM
RE: eGalax touchscreen calibration - Markamc - 11th Sep, 2013, 06:11 PM
RE: eGalax touchscreen calibration - Markamc - 13th Sep, 2013, 07:30 AM
RE: eGalax touchscreen calibration - brantje - 15th Sep, 2013, 08:19 PM
RE: eGalax touchscreen calibration - mk01 - 15th Sep, 2013, 09:57 AM
RE: eGalax touchscreen calibration - Markamc - 15th Sep, 2013, 09:27 PM
RE: eGalax touchscreen calibration - brantje - 16th Sep, 2013, 07:10 PM
RE: eGalax touchscreen calibration - Markamc - 16th Sep, 2013, 07:33 PM
RE: eGalax touchscreen calibration - brantje - 1st Oct, 2013, 09:06 PM
RE: eGalax touchscreen calibration - Markamc - 1st Oct, 2013, 11:04 PM
RE: eGalax touchscreen calibration - Aweponken - 21st Mar, 2014, 04:32 AM
RE: eGalax touchscreen calibration - mapomme1108 - 20th Mar, 2014, 07:21 PM
RE: eGalax touchscreen calibration - stevePIman - 27th Jun, 2014, 12:17 AM
RE: eGalax touchscreen calibration - ph87 - 27th Jun, 2014, 06:25 AM
RE: eGalax touchscreen calibration - stevePIman - 27th Jun, 2014, 06:35 PM
AW: eGalax touchscreen calibration - ph87 - 27th Jun, 2014, 10:07 PM
RE: eGalax touchscreen calibration - stevePIman - 27th Jun, 2014, 10:18 PM
RE: eGalax touchscreen calibration - mk01 - 6th Aug, 2014, 10:40 AM
RE: eGalax touchscreen calibration - stevePIman - 26th Jul, 2014, 01:46 AM
RE: eGalax touchscreen calibration - tuongnguyen - 4th Dec, 2015, 02:41 PM

Possibly Related Threads...
Thread: Author Replies Views: Last Post
  [PROBLEM] Touchscreen calibration is wrong and i'm going crazy. wash 5 19,838 17th Jan, 2015 10:34 PM
Last Post: wash
  Tutorial: Touchscreen calibration & extra features Markamc 0 7,559 2nd Jul, 2013 12:11 AM
Last Post: Markamc

  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread
Forum Jump:

Current time: 22nd May, 2025, 01:26 PM Powered By MyBB, © 2002-2025 MyBB Group.