Updated: October 28, 2024 |
You can calibrate your screen using a few different methods.
Setting the mode parameter in your scaling configuration file determines the type of configuration. Depending on your touch display, you need to set the mode parameter to either direct or scaled. Your scaling configuration file is the scaling.conf file located at /etc/system/config, see Scaling configuration file for more information.
This calibration method is useful for resistive touch displays or displays that can scale values on the hardware (e.g., Atmel controller).
This calibration method works with capacitive touch displays. Once they are mounted, the values are static and don't skew over time.
Scaling mode maps the touch area to the display resolution. To use this method, you need to find the display resolution and the matrix size of your touch display.
First, set the scaling mode to scale and include your display's resolution. The resolution is obtained from the graphics.conf and needs to be set in the scaling configuration file. For example, your graphics.conf may look like this:
begin display 1 cursor=on video-mode = 800 x 480 @ 60 formats = rgb565 rgba8888 rgb888 yuy2 end display
In this example, the resolution is 800x480. Update the scaling mode in the scaling.conf file and set it to scale:
800x480:mode=scale
Next, set the width and height properties to the maximum X and Y values of your touch area. Place these values in your touch.conf file located at /etc/system/config. Your configuration may look like this:
begin mtouch driver = hid options = width=4095,height=4095,your_other_options end mtouch
The width and height options do not refer to your display resolution. They refer to the maximum X and Y values from your touch area. How to find these values is described below.
USB/HID based touch controllers:
Use the output from hidview -R to search for the Usage(X/Y) and the associated Logical Max(value). On some systems, the Logical Max(value) is referred to as the Physical Max(value). In the following output example, both the X and Y values are 4095:
... Logical Max(4095) Report Size(16) Report Count(1) PUSH Unit Exponent(14) Unit(51) Usage(X) ... Logical Max(4095) Usage(Y) ...
Other Controllers:
Please refer to your controller documentation.
Finding the maximum values using the touch display is imprecise. If you are unable to find the maximum X and Y using the above instructions, do the following:
800x480:mode=direct
mtouch &
screeninfo -w -input /dev/screen/input
begin mtouch driver = hid options = width=4095,height=4095,your_other_options end mtouch
800x480:mode=scale
It's important to mention that this method doesn't correct misaligned touch displays, but if the origin isn't in the upper-left corner of the display, you can use the invert_x and invert_y options to reverse the directions of the coordinates. For more information, see Settings for various HID displays in the mtouch section of this guide.