Khadas Docs

Amazing Khadas, always amazes you!

User Tools

Site Tools


products:sbc:vim4:add-ons:ts050-touchscreen

This is an old revision of the document!


VIM4 TS050 Touchscreen

TS050 Touchscreen

Introduction

This document mainly introduces the connection and usage of TS050. The first part of the document is about how to connect TS050, the second part is about some related operations under Ubuntu, and the third part is about some related operations under Android.

Hardware Connection

VIM4

VIM3 VIM3L

Edge1

Ubuntu

Rotate

Only suitable for VIM3/3L, you can refer to the system settings to rotate the screen easily for VIM4.

TS050 is portrait mode by default, here is a guide to rotate the screen to landscape mode.

These configurations will also effect the HDMI display, so if you want to use HDMI display, you need to remove them.

You need to create Xorg configuration file and autostart script for setting the resolution.

1. Create Xorg configuration file /etc/X11/xorg.conf.d/10-ts050-fbdev-rotate.conf.

Section "Device"
    Identifier "Configured Video Device"
    # Rotate off
#   Option "Rotate" "off"
    # Rotate Right / clockwise, 90 degrees
    Option "Rotate" "CW"
    # Rotate upside down, 180 degrees
#   Option "Rotate" "UD"
    # Rotate counter clockwise, 270 degrees
#   Option "Rotate" "CCW"
 
EndSection
 
Section "InputClass"
    Identifier "Coordinate Transformation Matrix"
    MatchIsTouchscreen "on"
    MatchProduct "EP0000M09"
    MatchDriver "libinput"
    # Rotate Right / clockwise, 90 degrees 
    Option "CalibrationMatrix" "0 1 0 -1 0 1 0 0 1"
    # Rotate upside down, 180 degrees
#   Option "CalibrationMatrix" "-1 0 1 0 -1 1 0 0 1"
    # otate counter clockwise, 270 degrees 
#   Option "CalibrationMatrix" "0 -1 1 1 0 0 0 0 1"
EndSection

2. Create Resolution setting autostart file /etc/xdg/autostart/panel-setup.desktop.

[Desktop Entry]
Version=1.0
Name=pixel
Exec=xrandr --output "default" --mode "1920x1088"
Terminal=false
Type=Application
Categories=
GenericName=
X-GNOME-Autostart-Phase=Initialization
X-KDE-autostart-phase=1
NoDisplay=true

Restart the system and the screen will automatically be configured as a landscape screen.

  • The configuration above will rotate to landscape mode, you can also rotate to other modes, simply uncomment the mode you want.
  • And please note the resolution for landscape mode is 1920×1088, for portrait mode is 1088×1920.

Android

2022/07/06 02:56 · frank
2022/06/30 05:13
Last modified: 2022/07/13 05:48 by nick