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
11th Jun, 2013, 01:54 PM
Post: #82
Markamc Offline
Registered
Posts: 94
Joined: Apr 2013
Reputation: 4
RE: eGalax touchscreen calibration
(##Disclaimer .....works with 1a5 and beta1 for me)

Ok, this is a long process atm, but does work, for me at least.

I was originally looking into changing the xbmc patch, but not had the time yet.

Method : TS_CALIBRATE

Enter the following, line by line and obviously follow the instructions:

Terminal

sudo su
stop xbmc
apt-get install libtool automake build-essential git
git clone git://github.com/kergoth/tslib.git
cd tslib
./autogen.sh
./configure
make
make install

edit the ts.conf file and remove the '# ' from '# module-raw input' on line:2 using:

Terminal

nano /usr/local/etc/ts.conf
(NB remove the space too, it will give a 'segmentation fault')
Close and save the ts.conf file

Next enter the following at the prompt......

Terminal

ls -l /dev/input/by-id

The output shows the input event that your touchscreen is linked to, My egalax TS is on /dev/input/event2

Terminal

root@xbian:/home/xbian/tslib# ls -l /dev/input/by-id
total 0
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-Riitek_Micro_Keyboard-event-kbd -> ../event0
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-Riitek_Micro_Keyboard-event-mouse -> ../event1
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-Riitek_Micro_Keyboard-if01-event-mouse -> ../event1
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-Riitek_Micro_Keyboard-if01-mouse -> ../mouse0
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-Riitek_Micro_Keyboard-mouse -> ../mouse0
lrwxrwxrwx 1 root root 9 Jan 1 1970 usb-eGalax_Inc._Touch-event-if00 -> ../event2
root@xbian:/home/xbian/tslib#

Paste the following lines at the prompt......

*** NB. change export TSLIB_TSDEVICE=/dev/input/eventX to suit your device event no. where 'X' is your value.

Terminal

export LD_LIBRARY_PATH=/usr/local/lib
export TSLIB_CONSOLEDEVICE=none
export TSLIB_FBDEVICE=/dev/fb0
export TSLIB_TSDEVICE=/dev/input/event2 <----***
export TSLIB_CALIBFILE=/etc/pointercal
export TSLIB_CONFFILE=/usr/local/etc/ts.conf
export TSLIB_PLUGINDIR=/usr/local/lib/ts

and then

Terminal

ts_calibrate

Terminal

root@xbian:/home/xbian/tslib# ts_calibrate
xres = 1280, yres = 720
Took 16 samples...
Top left : X = 317 Y = 108
Took 34 samples...
Top right : X = 324 Y = 1937
Took 16 samples...
Bot right : X = 1863 Y = 1933
Took 19 samples...
Bot left : X = 1856 Y = 113
Took 11 samples...
Center : X = 1067 Y = 1028
-21.938232 -0.000184 0.646745
-75.615356 0.402788 -0.001534
Calibration constants: -1437744 -12 42385 -4955528 26397 -100 65536
root@xbian:/home/xbian/tslib#

The information you want is from the end of the output

Terminal

Center : X = 1067 Y = 1028
-21.938232 -0.000184 0.646745
-75.615356 0.402788 -0.001534

Top line is X, bottom Y
x offest is -21.938232 , x scale factor is 0.646745
y offest is -75.615356 , y scale factor is 0.402788

so for our calib file we need this:

Code:
calib_x_d=1302;calib_x_fact=-0.647;calib_y_d=796;calib_y_fact=-0.402;swap_axes=1;

Create the calib file and enter the above calibration into the editor with:

Terminal

mkdir /usr/share/eGalaxCalibration
nano /usr/share/eGalaxCalibration/touchscreen_axes_calib


As you can see, I needed to change the direction of both axes by changing the sign on the scale factor and I also needed to swap the axes too, swap_axes=1.
ThHe offset values need to be "subtracted" from those already "programmed" into xbmc patch, hence (1280 -) -22 = 1302 (approx) and (720 -) -76 = 796

Hope it helps

bye y'all

(##Disclaimer .....works with 1a5 and beta1 for me)
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,893 17th Jan, 2015 10:34 PM
Last Post: wash
  Tutorial: Touchscreen calibration & extra features Markamc 0 7,580 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: 2nd Jun, 2025, 10:47 AM Powered By MyBB, © 2002-2025 MyBB Group.