<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Noob needs help with Elo Touchscreen]]></title><description><![CDATA[<p dir="auto">Can somebody help me with, maybe, a simple problem? I have an old ELO touchscreen (single touch, type ET1546L)  connected to a raspberry pi.  I can see the Raspbian desktop and the touchscreen functions normally. Every touch is sensed. But when I develop a simple QML to display on the touchscreen, the touches on the screen aren't processed. I have configured Qt with evdev support.</p>
<p dir="auto">Maybe I forget something but I don't know what. Could someone point me in the right direction?</p>
<p dir="auto">My code<br />
import QtQuick 2.2<br />
import QtQuick.Window 2.1</p>
<p dir="auto">Window {</p>
<pre><code>visible: true
width: 360
height: 360

MouseArea {
    anchors.fill: parent
    onClicked: {
        console.log("touch down!!!")
    }
}

Text {
    text: qsTr("Hello World")
    anchors.centerIn: parent
}
</code></pre>
<p dir="auto">}</p>
]]></description><link>https://forum.qt.io/topic/58767/noob-needs-help-with-elo-touchscreen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 25 Apr 2026 14:31:17 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/58767.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 10 Sep 2015 19:39:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Tue, 03 Jan 2017 21:37:22 GMT]]></title><description><![CDATA[<p dir="auto">Sorry for reopening this issue. It seems to be that i forgot a crucial part of my notes for reinstalling my setup. After following the steps on <a href="https://wiki.qt.io/Native_Build_of_Qt_5.4.1_on_a_Raspberry_Pi#Up-to-date_tslib_support" target="_blank" rel="noopener noreferrer nofollow ugc">this page</a> I've got it working again. Thanks for replying again.</p>
]]></description><link>https://forum.qt.io/post/367270</link><guid isPermaLink="true">https://forum.qt.io/post/367270</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Tue, 03 Jan 2017 21:37:22 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Tue, 03 Jan 2017 20:58:06 GMT]]></title><description><![CDATA[<p dir="auto">Start it with the debugger then you'll be able to get a stack trace.</p>
]]></description><link>https://forum.qt.io/post/367255</link><guid isPermaLink="true">https://forum.qt.io/post/367255</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Tue, 03 Jan 2017 20:58:06 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Tue, 03 Jan 2017 19:50:09 GMT]]></title><description><![CDATA[<p dir="auto">I just started from scratch with my raspberry pi and ubuntu installation. I first installed my raspberry pi with <a href="https://github.com/kergoth/tslib" target="_blank" rel="noopener noreferrer nofollow ugc">tslib from kergoth</a>. After that I followed the <a href="http://wiki.qt.io/RaspberryPi2EGLFS" target="_blank" rel="noopener noreferrer nofollow ugc">cross compile tutorial RaspberryPi2EGLFS</a>. When I was done I opened my QT project and tried to run the project, but now I get a segmentation fault error. Could some tell me what's wrong?</p>
<p dir="auto">Application Output in QT Creator</p>
<pre><code>Got keys from plugin meta data ("tuiotouch")
QFactoryLoader::QFactoryLoader() checking directory path "/opt/Test/bin/generic" ...
loaded library "/usr/local/qt5pi/plugins/generic/libqtslibplugin.so"
bash: line 1: 13629 Segmentation fault      DISPLAY=':0.0' LD_LIBRARY_PATH='/usr/local/lib' QT_DEBUG_PLUGINS='1' QT_PLUGIN_PATH='/usr/lib/qt5pi/plugins' QT_QPA_EGLFS_DISABLE_INPUT='1' QT_QPA_EGLFS_HIDECURSOR='0' QT_QPA_FB_TSLIB='1' QT_QPA_FONTDIR='/usr/lib/fonts' QT_QPA_GENERIC_PLUGINS='tslib:/dev/input/event0' QT_QPA_PLATFORM='eglfs' QT_QPA_PLATFORM_PLUGIN_PATH='/usr/lib/qt5pi/plugins/platforms' TSLIB_CALIBFILE='/usr/local/etc/pointercal' TSLIB_CONFFILE='/usr/local/etc/ts.conf' TSLIB_CONSOLEDEVICE='none' TSLIB_FBDEVICE='/dev/fb0' TSLIB_PLUGINDIR='/usr/local/lib/ts' TSLIB_TSDEVICE='/dev/input/event0' TSLIB_TSEVENTTYPE='INPUT' WIRINGPI_GPIOMEM='1' /opt/Test/bin/Test
</code></pre>
]]></description><link>https://forum.qt.io/post/367237</link><guid isPermaLink="true">https://forum.qt.io/post/367237</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Tue, 03 Jan 2017 19:50:09 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Tue, 21 Jun 2016 09:14:22 GMT]]></title><description><![CDATA[<p dir="auto">Great !</p>
<p dir="auto">Thanks for sharing your findings !</p>
<p dir="auto">You can mark it as solved :) Use the "Topic Tool" button and change the type of the thread to a question, then you'll be able to mark it as solved :)</p>
]]></description><link>https://forum.qt.io/post/334081</link><guid isPermaLink="true">https://forum.qt.io/post/334081</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Tue, 21 Jun 2016 09:14:22 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Tue, 21 Jun 2016 08:59:18 GMT]]></title><description><![CDATA[<p dir="auto">[edit]</p>
<p dir="auto">Adding one more variable did the trick.</p>
<pre><code>QT_QPA_EGLFS_DISABLE_INPUT=1
</code></pre>
<p dir="auto">Thank you for your help. It now works totally fine. Topic can be set as <strong>Solved</strong></p>
]]></description><link>https://forum.qt.io/post/334052</link><guid isPermaLink="true">https://forum.qt.io/post/334052</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Tue, 21 Jun 2016 08:59:18 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Mon, 20 Jun 2016 22:18:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sgaist">@<bdi>SGaist</bdi></a></p>
<pre><code>LD_LIBRARY_PATH=/usr/local/lib
QT_DEBUG_PLUGINS=1
QT_PLUGIN_PATH=/usr/lib/qt5pi/plugins
QT_QPA_EGLFS_HIDECURSOR=1
QT_QPA_FB_DISABLE_INPUT=1
QT_QPA_FONTDIR=/usr/lib/fonts
QT_QPA_GENERIC_PLUGINS=tslib:/dev/input/event0
QT_QPA_PLATFORM=eglfs
QT_QPA_PLATFORM_PLUGIN_PATH=/usr/lib/qt5pi/plugins/platforms
TSLIB_CALIBFILE=/usr/local/etc/pointercal
TSLIB_CONFFILE=/usr/local/etc/ts.conf
TSLIB_CONSOLEDEVICE=none
TSLIB_FBDEVICE=/dev/fb0
TSLIB_PLUGINDIR=/usr/local/lib/ts
TSLIB_TSDEVICE=/dev/input/event0
TSLIB_TSEVENTTYPE=INPUT
</code></pre>
<p dir="auto">This are all the environment variable. Arguments field is empty.</p>
<p dir="auto">When i insert a USB mouse into the raspberry the mouse works directly and every mouseclick is triggered</p>
]]></description><link>https://forum.qt.io/post/334017</link><guid isPermaLink="true">https://forum.qt.io/post/334017</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Mon, 20 Jun 2016 22:18:08 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Mon, 20 Jun 2016 22:10:19 GMT]]></title><description><![CDATA[<p dir="auto">What parameter are you passing to your application ?</p>
]]></description><link>https://forum.qt.io/post/334016</link><guid isPermaLink="true">https://forum.qt.io/post/334016</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Mon, 20 Jun 2016 22:10:19 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Mon, 20 Jun 2016 22:06:07 GMT]]></title><description><![CDATA[<p dir="auto">Yes, and it works fine. I also got a pointercal file. And ts_test works also. Maybe the debug output is usefull.</p>
<pre><code>
QML debugging is enabled. Only use this in a safe environment.
QFactoryLoader::QFactoryLoader() checking directory path "/usr/local/qt5pi/plugins" ...
QFactoryLoader::QFactoryLoader() checking directory path "/opt/test2/bin" ...
QFactoryLoader::QFactoryLoader() looking at "/opt/test2/bin/test2"
"Plugin verification data mismatch in '/opt/test2/bin/test2'" 
         not a plugin
QFactoryLoader::QFactoryLoader() checking directory path "/usr/local/qt5pi/plugins/platforms" ...
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/platforms/libqeglfs.so"
Found metadata in lib /usr/local/qt5pi/plugins/platforms/libqeglfs.so, metadata=
{
    "IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
    "MetaData": {
        "Keys": [
            "eglfs"
        ]
    },
    "className": "QEglFSIntegrationPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("eglfs")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/platforms/libqlinuxfb.so"
Found metadata in lib /usr/local/qt5pi/plugins/platforms/libqlinuxfb.so, metadata=
{
    "IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
    "MetaData": {
        "Keys": [
            "linuxfb"
        ]
    },
    "className": "QLinuxFbIntegrationPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("linuxfb")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/platforms/libqminimal.so"
Found metadata in lib /usr/local/qt5pi/plugins/platforms/libqminimal.so, metadata=
{
    "IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
    "MetaData": {
        "Keys": [
            "minimal"
        ]
    },
    "className": "QMinimalIntegrationPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("minimal")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/platforms/libqminimalegl.so"
Found metadata in lib /usr/local/qt5pi/plugins/platforms/libqminimalegl.so, metadata=
{
    "IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
    "MetaData": {
        "Keys": [
            "minimalegl"
        ]
    },
    "className": "QMinimalEglIntegrationPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("minimalegl")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/platforms/libqoffscreen.so"
Found metadata in lib /usr/local/qt5pi/plugins/platforms/libqoffscreen.so, metadata=
{
    "IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
    "MetaData": {
        "Keys": [
            "offscreen"
        ]
    },
    "className": "QOffscreenIntegrationPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("offscreen")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/platforms/libqxcb.so"
Found metadata in lib /usr/local/qt5pi/plugins/platforms/libqxcb.so, metadata=
{
    "IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
    "MetaData": {
        "Keys": [
            "xcb"
        ]
    },
    "className": "QXcbIntegrationPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("xcb")
QFactoryLoader::QFactoryLoader() checking directory path "/opt/test2/bin/platforms" ...
loaded library "/usr/local/qt5pi/plugins/platforms/libqeglfs.so"
QFactoryLoader::QFactoryLoader() checking directory path "/usr/local/qt5pi/plugins/egldeviceintegrations" ...
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/egldeviceintegrations/libqeglfs-brcm-integration.so"
Found metadata in lib /usr/local/qt5pi/plugins/egldeviceintegrations/libqeglfs-brcm-integration.so, metadata=
{
    "IID": "org.qt-project.qt.qpa.egl.QEGLDeviceIntegrationFactoryInterface.5.5",
    "MetaData": {
        "Keys": [
            "eglfs_brcm"
        ]
    },
    "className": "QEglFSBrcmIntegrationPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("eglfs_brcm")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/egldeviceintegrations/libqeglfs-kms-integration.so"
Found metadata in lib /usr/local/qt5pi/plugins/egldeviceintegrations/libqeglfs-kms-integration.so, metadata=
{
    "IID": "org.qt-project.qt.qpa.egl.QEGLDeviceIntegrationFactoryInterface.5.5",
    "MetaData": {
        "Keys": [
            "eglfs_kms"
        ]
    },
    "className": "QEglFSKmsIntegrationPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("eglfs_kms")
QFactoryLoader::QFactoryLoader() checking directory path "/opt/test2/bin/egldeviceintegrations" ...
loaded library "/usr/local/qt5pi/plugins/egldeviceintegrations/libqeglfs-brcm-integration.so"
Unable to query physical screen size, defaulting to 100 dpi.
To override, set QT_QPA_EGLFS_PHYSICAL_WIDTH and QT_QPA_EGLFS_PHYSICAL_HEIGHT (in millimeters).
QFactoryLoader::QFactoryLoader() checking directory path "/usr/local/qt5pi/plugins/generic" ...
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/generic/libqevdevkeyboardplugin.so"
Found metadata in lib /usr/local/qt5pi/plugins/generic/libqevdevkeyboardplugin.so, metadata=
{
    "IID": "org.qt-project.Qt.QGenericPluginFactoryInterface",
    "MetaData": {
        "Keys": [
            "EvdevKeyboard"
        ]
    },
    "className": "QEvdevKeyboardPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("evdevkeyboard")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/generic/libqevdevmouseplugin.so"
Found metadata in lib /usr/local/qt5pi/plugins/generic/libqevdevmouseplugin.so, metadata=
{
    "IID": "org.qt-project.Qt.QGenericPluginFactoryInterface",
    "MetaData": {
        "Keys": [
            "EvdevMouse"
        ]
    },
    "className": "QEvdevMousePlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("evdevmouse")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/generic/libqevdevtabletplugin.so"
Found metadata in lib /usr/local/qt5pi/plugins/generic/libqevdevtabletplugin.so, metadata=
{
    "IID": "org.qt-project.Qt.QGenericPluginFactoryInterface",
    "MetaData": {
        "Keys": [
            "EvdevTablet"
        ]
    },
    "className": "QEvdevTabletPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("evdevtablet")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/generic/libqevdevtouchplugin.so"
Found metadata in lib /usr/local/qt5pi/plugins/generic/libqevdevtouchplugin.so, metadata=
{
    "IID": "org.qt-project.Qt.QGenericPluginFactoryInterface",
    "MetaData": {
        "Keys": [
            "EvdevTouch"
        ]
    },
    "className": "QEvdevTouchScreenPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("evdevtouch")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/generic/libqlibinputplugin.so"
Found metadata in lib /usr/local/qt5pi/plugins/generic/libqlibinputplugin.so, metadata=
{
    "IID": "org.qt-project.Qt.QGenericPluginFactoryInterface",
    "MetaData": {
        "Keys": [
            "libinput"
        ]
    },
    "className": "QLibInputPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("libinput")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/generic/libqtslibplugin.so"
Found metadata in lib /usr/local/qt5pi/plugins/generic/libqtslibplugin.so, metadata=
{
    "IID": "org.qt-project.Qt.QGenericPluginFactoryInterface",
    "MetaData": {
        "Keys": [
            "Tslib",
            "TslibRaw"
        ]
    },
    "className": "QTsLibPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("tslib", "tslibraw")
QFactoryLoader::QFactoryLoader() looking at "/usr/local/qt5pi/plugins/generic/libqtuiotouchplugin.so"
Found metadata in lib /usr/local/qt5pi/plugins/generic/libqtuiotouchplugin.so, metadata=
{
    "IID": "org.qt-project.Qt.QGenericPluginFactoryInterface",
    "MetaData": {
        "Keys": [
            "TuioTouch"
        ]
    },
    "className": "QTuioTouchPlugin",
    "debug": false,
    "version": 329218
}


Got keys from plugin meta data ("tuiotouch")
QFactoryLoader::QFactoryLoader() checking directory path "/opt/test2/bin/generic" ...
loaded library "/usr/local/qt5pi/plugins/generic/libqtslibplugin.so"
Found metadata in lib /usr/local/qt5pi/qml/QtQuick.2/libqtquick2plugin.so, metadata=
{
    "IID": "org.qt-project.Qt.QQmlExtensionInterface/1.0",
    "MetaData": {
    },
    "className": "QtQuick2Plugin",
    "debug": false,
    "uri": [
        "QtQuick.2"
    ],
    "version": 329218
}


loaded library "/usr/local/qt5pi/qml/QtQuick.2/libqtquick2plugin.so"
Found metadata in lib /usr/local/qt5pi/qml/QtQuick/Window.2/libwindowplugin.so, metadata=
{
    "IID": "org.qt-project.Qt.QQmlExtensionInterface/1.0",
    "MetaData": {
    },
    "className": "QtQuick2WindowPlugin",
    "debug": false,
    "uri": [
        "QtQuick.Window.2"
    ],
    "version": 329218
}


loaded library "/usr/local/qt5pi/qml/QtQuick/Window.2/libwindowplugin.so"
QFactoryLoader::QFactoryLoader() checking directory path "/usr/local/qt5pi/plugins/accessible" ...
QFactoryLoader::QFactoryLoader() checking directory path "/opt/test2/bin/accessible" ...
User requested stop. Shutting down...
Application finished with exit code 1.
</code></pre>
]]></description><link>https://forum.qt.io/post/334011</link><guid isPermaLink="true">https://forum.qt.io/post/334011</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Mon, 20 Jun 2016 22:06:07 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Mon, 20 Jun 2016 21:54:12 GMT]]></title><description><![CDATA[<p dir="auto">Did you run ts_calibrate ?</p>
]]></description><link>https://forum.qt.io/post/334010</link><guid isPermaLink="true">https://forum.qt.io/post/334010</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Mon, 20 Jun 2016 21:54:12 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Mon, 20 Jun 2016 21:12:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sgaist">@<bdi>SGaist</bdi></a></p>
<p dir="auto">Well, I tought it works completely but there is one problem. When I push on the MouseArea the cursor is going to that position where I push but most of the time there is not a onclicked event triggered. When I push multiple times on the mousearea sometime the onclick event will be triggered, maybe 1 out of 10 á 15 times.</p>
<p dir="auto">I have connected the touchscreen to a Windows machine en every push on the screen is triggered. This is why I thing that there is something wrong with my tslib configuration.</p>
<p dir="auto">Can you help me with this problem?</p>
]]></description><link>https://forum.qt.io/post/334001</link><guid isPermaLink="true">https://forum.qt.io/post/334001</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Mon, 20 Jun 2016 21:12:32 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Thu, 16 Jun 2016 22:23:16 GMT]]></title><description><![CDATA[<p dir="auto">So you have it working now properly ?</p>
]]></description><link>https://forum.qt.io/post/333421</link><guid isPermaLink="true">https://forum.qt.io/post/333421</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Thu, 16 Jun 2016 22:23:16 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Thu, 16 Jun 2016 22:05:34 GMT]]></title><description><![CDATA[<p dir="auto">Thank you for your reply. I have it finally working. With the following environment variables. Especially the LD_PRELOAD was important. After adding that variable the touchscreen starting to work. I think its because I used tslib from github . Thanks for you patience.</p>
<p dir="auto">Environment variables</p>
<pre><code>LD_LIBRARY_PATH=/usr/local/lib
LD_PRELOAD=/usr/local/lib/libts-0.0.so.0
QT_DEBUG_PLUGINS=1
QT_PLUGIN_PATH=/usr/lib/plugins
QT_QPA_FONTDIR=/usr/lib/fonts
QT_QPA_GENERIC_PLUGINS=tslib:/dev/input/event0
QT_QPA_PLATFORM=eglfs
QT_QPA_PLATFORM_PLUGIN_PATH=/usr/lib/plugins/platforms
TSLIB_CALIBFILE=/home/pi/pointercal
TSLIB_CONFFILE=/usr/local/etc/ts.conf
TSLIB_CONSOLEDEVICE=none
TSLIB_FBDEVICE=/dev/fb0
TSLIB_PLUGINDIR=/usr/local/lib/ts
TSLIB_TSDEVICE=/dev/input/event0
TSLIB_TSEVENTTYPE=INPUT
</code></pre>
]]></description><link>https://forum.qt.io/post/333407</link><guid isPermaLink="true">https://forum.qt.io/post/333407</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Thu, 16 Jun 2016 22:05:34 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Thu, 16 Jun 2016 21:06:52 GMT]]></title><description><![CDATA[<p dir="auto">Did you check the environment variables of the Run part in the Project panel ?</p>
]]></description><link>https://forum.qt.io/post/333396</link><guid isPermaLink="true">https://forum.qt.io/post/333396</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Thu, 16 Jun 2016 21:06:52 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Thu, 16 Jun 2016 19:53:09 GMT]]></title><description><![CDATA[<p dir="auto">I have added the following to the run arguments -plugin Tslib and gets the following message in de QTCreator application output windows</p>
<pre><code>ts_open() failed (No such file or directory)
</code></pre>
<p dir="auto">But when I do ts_calibrate of ts_test on my raspberry everything works. Can someone help me with this?</p>
]]></description><link>https://forum.qt.io/post/333389</link><guid isPermaLink="true">https://forum.qt.io/post/333389</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Thu, 16 Jun 2016 19:53:09 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Thu, 16 Jun 2016 11:16:19 GMT]]></title><description><![CDATA[<p dir="auto">[edit]</p>
<p dir="auto">I've founded that i allready installed tslib via apt-get. I think the git install was conflicting with the already installed tslib. No I removed the tslib via apt-get and install from <a href="https://github.com/kergoth/tslib" target="_blank" rel="noopener noreferrer nofollow ugc">this git directory</a>. Now ts_calibrate works. I have calibrated the screen. Also ts_test returns values.</p>
<p dir="auto">But when I run my program (see below) from QT creator and hit the blue rectangle nothing happens.  The program had to close. When i put the rectangle in the left upper corner and run the program and touch the screen the rectangle get hit and the program close. So the touch works only the movement of the mouse cursor doesn't go to the point where the touch is. The mouse arrow stays in the left upper corner.  Can you tell me what I'm forgetting?</p>
<p dir="auto">My QML code</p>
<pre><code>import QtQuick 2.3
import QtQuick.Window 2.2

Window {
    visible: true

    Rectangle {
        x:100;y:100;width:100;height:100
        color: "blue"

    MouseArea {
        anchors.fill: parent
        onClicked: {
            Qt.quit();
        }
    }
    }
    Text {
        text: qsTr("Hello World")
        anchors.centerIn: parent
    }
}
</code></pre>
]]></description><link>https://forum.qt.io/post/333267</link><guid isPermaLink="true">https://forum.qt.io/post/333267</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Thu, 16 Jun 2016 11:16:19 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Wed, 15 Jun 2016 23:16:33 GMT]]></title><description><![CDATA[<p dir="auto">Did you setup the environment variables for ts_calibrate to run properly ?</p>
]]></description><link>https://forum.qt.io/post/333216</link><guid isPermaLink="true">https://forum.qt.io/post/333216</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Wed, 15 Jun 2016 23:16:33 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Wed, 15 Jun 2016 23:00:33 GMT]]></title><description><![CDATA[<p dir="auto">Sorry for my delay but I wasn't able to respond sooner. When I type ts_calibrate i get the following message.</p>
<pre><code>ts_open: No such file or directory
</code></pre>
<p dir="auto">Could you help me again with this problem?</p>
]]></description><link>https://forum.qt.io/post/333213</link><guid isPermaLink="true">https://forum.qt.io/post/333213</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Wed, 15 Jun 2016 23:00:33 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Mon, 14 Sep 2015 20:39:11 GMT]]></title><description><![CDATA[<p dir="auto">You can use <code>ts_calibrate</code></p>
]]></description><link>https://forum.qt.io/post/290258</link><guid isPermaLink="true">https://forum.qt.io/post/290258</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Mon, 14 Sep 2015 20:39:11 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Mon, 14 Sep 2015 20:35:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sgaist">@<bdi>SGaist</bdi></a></p>
<p dir="auto">Sorry for my noob question but: How can i do that?</p>
]]></description><link>https://forum.qt.io/post/290256</link><guid isPermaLink="true">https://forum.qt.io/post/290256</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Mon, 14 Sep 2015 20:35:33 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Mon, 14 Sep 2015 20:29:57 GMT]]></title><description><![CDATA[<p dir="auto">Did you first check that tslib is working properly ?</p>
]]></description><link>https://forum.qt.io/post/290252</link><guid isPermaLink="true">https://forum.qt.io/post/290252</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Mon, 14 Sep 2015 20:29:57 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Mon, 14 Sep 2015 20:27:13 GMT]]></title><description><![CDATA[<p dir="auto">I changed the permissions of the device to 777 and tested it then but still the touch isn't sensed. I also tried the tslib option by adding the enviroment variables but this doesn't solve my problem too. One thing i noticed is that when I plugin a usb mouse the mouse point is visible in my program. If I switch the usb mouse with the usb part of the touchscreen no mouse pointer is visible.</p>
<p dir="auto">Can you help me further?</p>
]]></description><link>https://forum.qt.io/post/290251</link><guid isPermaLink="true">https://forum.qt.io/post/290251</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Mon, 14 Sep 2015 20:27:13 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Thu, 10 Sep 2015 21:42:23 GMT]]></title><description><![CDATA[<p dir="auto">Did you check that your RPi user has access to the device ?</p>
<p dir="auto">The <a href="http://doc.qt.io/qt-5/embedded-linux.html" target="_blank" rel="noopener noreferrer nofollow ugc">Embedded Linux</a> chapter has pointer to help you find out what may be going wrong</p>
]]></description><link>https://forum.qt.io/post/289901</link><guid isPermaLink="true">https://forum.qt.io/post/289901</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Thu, 10 Sep 2015 21:42:23 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Thu, 10 Sep 2015 21:36:02 GMT]]></title><description><![CDATA[<p dir="auto">I'm developing on my ubuntu machine. I have followed the beginners <a href="https://wiki.qt.io/RaspberryPi_Beginners_Guide" target="_blank" rel="noopener noreferrer nofollow ugc">guide for developing on raspberry pi</a>. I run the program by hitting ctrl + r.</p>
]]></description><link>https://forum.qt.io/post/289898</link><guid isPermaLink="true">https://forum.qt.io/post/289898</guid><dc:creator><![CDATA[Vulpecula]]></dc:creator><pubDate>Thu, 10 Sep 2015 21:36:02 GMT</pubDate></item><item><title><![CDATA[Reply to Noob needs help with Elo Touchscreen on Thu, 10 Sep 2015 20:22:56 GMT]]></title><description><![CDATA[<p dir="auto">Hi and welcome to devnet,</p>
<p dir="auto">How are you starting your application ?</p>
]]></description><link>https://forum.qt.io/post/289886</link><guid isPermaLink="true">https://forum.qt.io/post/289886</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Thu, 10 Sep 2015 20:22:56 GMT</pubDate></item></channel></rss>