Yes you can ! At first you need to activate the lvds output in /boot/uEnv.txt. Then if you use Qt for your app see here to have the touch in Qt app. Before you will launch your qt app you need to export : or when you deploy with qt creator see here.
Hi Modjo, I put these 3 parameters in my Udoo kit on qtcreator and when I deploy the Udoo is touchscreen. My graphic design was perturbated by the height and width parameter, so I removed them and get my original design again. That's probably because we managed as a parameter the screen size directly in our Qt code. Many thanks you're the boss.
Hi Modjo, I tried using your can class and it's working fine. Congrats! Just one question : in your function checkmessage(), you're using "emit data(m_sCan);" what is it for? thanks in advance Fred
you can connect a slot to this signal. when a new message is received this signal is emited. if you connect a slot to this, you can make some operation that you need in this method.