Forum

Full Version: {Problem} RPI3
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can someone help me with my touchscreen? I’m pulling my hair out. I’ve ran the install.sh and also tried manually.

I've tried these instructions:
http://markamc.traki-iski.co.uk/raspberry-pixbian-egalax-touchscreen/#comment-24158

When I do the calibration it sees my inputs and apparenly calibrates to my touches. UIMapper is running. I can test with the “evtest” and see input across the entire screen.

I have an Eledunio M101 10″ touchscreen – 1080p 60hz

/dev/input/event0: ILITEK Multi-Touch-V3000
/dev/input/event1: ILITEK Multi-Touch-V3000
/dev/input/event2: uimapper – touchscreen

Maybe I’m having issue becase this is a multi-point touchscreen?

I’m getting the only works in the upper left corner thing. I don’t know what I’m doing wrong. I’ll PAY FOR A FIX! I’m desperate.

Thanks
-adam
Do you know this posting

It's not your display/touch but Kodi v17 supports touch directly.
(16th Nov, 2016 04:13 AM)Nachteule Wrote: [ -> ]Do you know this posting

It's not your display/touch but Kodi v17 supports touch directly.


I did see that post, i'll give that a go again. Seems I've tried every way to get this working. My touch isn't GPIO, rather USB.

I'll reimage and give it a shot though.

Thank you for the reply.
Kodi v17 reads directly from /dev/input...

So it should not make any difference if touch is connected via USB or GPIO. But you have to set values in advancedsettings.xml. And this is a lot of try and error Sad
(16th Nov, 2016 04:33 AM)Nachteule Wrote: [ -> ]Kodi v17 reads directly from /dev/input...

So it should not make any difference if touch is connected via USB or GPIO. But you have to set values in advancedsettings.xml. And this is a lot of try and error Sad

When I run the command below I find my touchscreen is event3 not 0..
cat /dev/input/event0

NOTE** (It's event3 when I have my mouse and KB plugged in. If I unplug those and reboot and run the stuff over SSH it is event0... I've tried both ways)

So I use:
TSLIB_TSDEVICE=/dev/input/event3 ts_calibrate

But then the calibration app ts_calibrate doesn't see my touches.

Any ideas?


Code:
Setting up the touchscreen for Kodi

Now you have a calibrated X input device, so the Desktop works nicely, but Kodi still does not. When starting it from X, there is a cursor, but the calibration is way off. When starting it standalone, there is not even touch input...
Fix this by installing tslib and evtest:

sudo apt-get install evtest tslib libts-bin  
  
Additionally you will need Then calibrate the touchscreen using:

TSLIB_TSDEVICE=/dev/input/event0 ts_calibrate

Touch the 5 crosses and you're done. You can test the calibration using:

TSLIB_TSDEVICE=/dev/input/event0 ts_test

You might also need to add the "kodi" user to the "input" user group:

sudo usermod -a -G input kodi

If you have Kodi version >= 17 ("Krypton") you cannow set up scale factors for the display so the cursor is properly displayed.

Setting display scale factors in Kodi >= v17

Test if Kodi can use touch input now. Start Kodi and touch the upper left corner of the screen. You will see a cursor and can move it, but only in 1/5th of the screen. The problem is that the coordinates /dev/input/event0 sends are touch device coordinates (in the range you see in the calibration values above), but Kodi expects pixel screen coordinates (0-800,0-480). Kodi starts to support touchscreen calibration out-of-the-box as of v17 aka "Krypton".
Edit the file advancedsettings.xml in your users userdata folder, e.g. /home/kodi/.kodi/userdata. If it does not exist, create it and add the following entries:

<advancedsettings>
    <touchscreen>
        <x_offset>-32</x_offset> <!-- cursor pixel x offset
        <y_offset>-35</y_offset> <!-- cursor pixel y offset
        <x_stretch_factor>0.209</x_stretch_factor> <!-- stretch factor
        <y_stretch_factor>0.131</y_stretch_factor> <!-- stretch factor
    </touchscreen>
</advancedsettings>

Good start values can be calculated by dividing the screen resolution by the calibration values above (e.g. for x: 800/3982=~0.2 and 480/3883=~0.124). You have to restart Kodi after editing the values.

Installing a touchscreen calibration fix

When you have an older Kodi version and can not use advancedsettings.xml, there are also ways to properly calibrate your screen. Read here about using a tslib fork and ts_uinput_touch for this.

Fixing the double-click issue

A remaining problem is that Kodi wants a double-click to activate a function. This is not good as we want to activate functions with a single click or tap. We can change this by editing the file /usr/share/kodi/system/keymaps/mouse.xml. Change the entries in the mouse section to:

<mouse>
  <leftclick>leftclick</leftclick>
  <rightclick>rightclick</rightclick>
  <middleclick>middleclick</middleclick>
  <doubleclick id="0">noop</doubleclick>
  <longclick id="0">contextmenu</longclick>
  <wheeldown>wheeldown</wheeldown>
  <wheelup>wheelup</wheelup>
  <mousedrag>mousedrag</mousedrag>
  <mousedragend>leftclick</mousedragend>
  <mousemove>noop</mousemove>
</mouse>


P.S. Find out how to hide the cursor here.
P.P.S. You can also add backlight control to the screen...
I can see where you say that you really only need to edit/or create advancedsettings.xml. So I created it and entered the <Touchscreen> code using values (below) that I captured during a different failed calibration attempt.

I still can only get control in the upper right of the screen.

"Good start values can be calculated by dividing the screen resolution by the calibration values above (e.g. for x: 800/3982=~0.2 and 480/3883=~0.124)."

OLD Calib. data.
-121 16552 78 9624

1920/16552 = .1159980
1080/9624 = .1122194
And you're running Kodi v17 aka Krypton?

And advancedsettings.xml has to be in folder /home/xbian/.kodi/userdata
I see where you say you only really need to either create/add the <touchscreen> info to the advancedsettings.xml


i've done so using data i i got from a prior calibration.

-121 16552 78 9624

1920/16552 = .1159980
1080/9624 = .1122194


******edit

I've looked at the logs and it seems it isn't loading any information from the advancedsettings.xml in the
\xbian-kodi\userdata directory... probably why my settings don't do anything... How can I force it to load it or is there another location I should be using?

(16th Nov, 2016 09:31 AM)Nachteule Wrote: [ -> ]And you're running Kodi v17 aka Krypton?

And advancedsettings.xml has to be in folder /home/xbian/.kodi/userdata

Yes.
Kodi 17.0-BETA5 Git:2016-10-26-0f6196c

Here is my log:

Code:
17:32:08 1961.541504 T:1954263776  NOTICE: special://profile/ is mapped to: special://masterprofile/
17:32:08 1961.541748 T:1954263776  NOTICE: -----------------------------------------------------------------------
17:32:08 1961.541870 T:1954263776  NOTICE: Starting Kodi (17.0-BETA5 Git:2016-10-26-0f6196c). Platform: Linux ARM (Thumb) 32-bit
17:32:08 1961.541992 T:1954263776  NOTICE: Using Debug Kodi x32 build (version for Raspberry Pi)
17:32:08 1961.542114 T:1954263776  NOTICE: Kodi compiled Oct 28 2016 by GCC 4.9.2 for Linux ARM (Thumb) 32-bit version 4.1.7 (262407)
17:32:08 1961.542480 T:1954263776  NOTICE: Running on XBian 1.0 (knockout), kernel: Linux ARM 32-bit version 4.6.7+
17:32:08 1961.542603 T:1954263776  NOTICE: FFmpeg version/source: ffmpeg-3.1-kodi
17:32:08 1961.542725 T:1954263776  NOTICE: Host CPU: ARMv7 Processor rev 4 (v7l), 4 cores available
17:32:08 1961.542847 T:1954263776  NOTICE: ARM Features: Neon enabled
17:32:08 1961.542969 T:1954263776  NOTICE: special://xbmc/ is mapped to: /usr/local/share/kodi
17:32:08 1961.542969 T:1954263776  NOTICE: special://xbmcbin/ is mapped to: /usr/local/lib/kodi
17:32:08 1961.543091 T:1954263776  NOTICE: special://xbmcbinaddons/ is mapped to: /usr/local/lib/kodi/addons
17:32:08 1961.543213 T:1954263776  NOTICE: special://masterprofile/ is mapped to: /home/xbian/.kodi/userdata
17:32:08 1961.543335 T:1954263776  NOTICE: special://envhome/ is mapped to: /home/xbian
17:32:08 1961.543335 T:1954263776  NOTICE: special://home/ is mapped to: /home/xbian/.kodi
17:32:08 1961.543457 T:1954263776  NOTICE: special://temp/ is mapped to: /home/xbian/.kodi/temp
17:32:08 1961.543579 T:1954263776  NOTICE: special://logpath/ is mapped to: /home/xbian/.kodi/temp
17:32:08 1961.543701 T:1954263776  NOTICE: The executable running is: /usr/local/lib/kodi/kodi.bin
17:32:08 1961.543823 T:1954263776  NOTICE: Local hostname: xbian
17:32:08 1961.543945 T:1954263776  NOTICE: Log File is located: /home/xbian/.kodi/temp//kodi.log
17:32:08 1961.544067 T:1954263776  NOTICE: -----------------------------------------------------------------------
17:32:08 1961.568848 T:1954263776    INFO: Selected UPower as PowerSyscall
17:32:08 1961.623657 T:1954263776   DEBUG: DeviceKit.Power: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.DeviceKit.Disks was not provided by any .service files
17:32:08 1961.623901 T:1954263776    INFO: Selected Logind/UPower as PowerSyscall
17:32:08 1961.644165 T:1954263776   DEBUG: LogindUPowerSyscall - inhibit lock taken, fd 15
17:32:08 1961.653320 T:1954263776    INFO: Selected UPower as PowerSyscall
17:32:08 1961.661011 T:1954263776   DEBUG: LogindUPowerSyscall - delay lock released
17:32:08 1961.661621 T:1954263776  NOTICE: load settings...
17:32:09 1961.734009 T:1954263776   DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/settings.xml
17:32:09 1961.773071 T:1954263776   DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/rbp.xml
17:32:09 1961.776123 T:1954263776   DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/rbp2.xml
17:32:09 1961.778687 T:1933570992   DEBUG: Thread FDEventMonitor start, auto delete: false
17:32:09 1961.799438 T:1954263776    INFO: CAESinkALSA - Unable to open device "surround71" for playback (error: No such file or directory)
17:32:09 1961.801758 T:1954263776    INFO: CAESinkALSA - Unable to open device "surround51" for playback (error: No such file or directory)
17:32:09 1961.802002 T:1954263776    INFO: CAESinkALSA - Unable to open device "surround71" for playback (error: No such file or directory)
17:32:09 1961.803833 T:1954263776    INFO: CAESinkALSA - Unable to open device "surround40" for playback (error: No such file or directory)
17:32:09 1961.804077 T:1954263776    INFO: CAESinkALSA - Unable to open device "surround51" for playback (error: No such file or directory)
17:32:09 1961.804321 T:1954263776    INFO: CAESinkALSA - Unable to open device "surround71" for playback (error: No such file or directory)
17:32:09 1961.844727 T:1954263776  NOTICE: Found 2 Lists of Devices
17:32:09 1961.844971 T:1954263776  NOTICE: Enumerated PI devices:
17:32:09 1961.845093 T:1954263776  NOTICE:     Device 1
17:32:09 1961.845581 T:1954263776  NOTICE:         m_deviceName      : HDMI
17:32:09 1961.845703 T:1954263776  NOTICE:         m_displayName     : HDMI
17:32:09 1961.845825 T:1954263776  NOTICE:         m_displayNameExtra:
17:32:09 1961.845825 T:1954263776  NOTICE:         m_deviceType      : AE_DEVTYPE_HDMI
17:32:09 1961.845947 T:1954263776  NOTICE:         m_channels        : FL,FR
17:32:09 1961.846191 T:1954263776  NOTICE:         m_sampleRates     : 8000,11025,16000,22050,24000,32000,44100,48000,88200,96000,176400,192000
17:32:09 1961.846191 T:1954263776  NOTICE:         m_dataFormats     : AE_FMT_FLOAT,AE_FMT_S32NE,AE_FMT_S16NE,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,A​E_FMT_S32NEP,AE_FMT_S16NEP,AE_FMT_RAW
17:32:09 1961.846313 T:1954263776  NOTICE:         m_streamTypes     : STREAM_TYPE_AC3,STREAM_TYPE_EAC3,STREAM_TYPE_DTSHD_CORE,STREAM_TYPE_DTS_2048,STR​EAM_TYPE_DTS_1024,STREAM_TYPE_DTS_512
17:32:09 1961.846436 T:1954263776  NOTICE:     Device 2
17:32:09 1961.846558 T:1954263776  NOTICE:         m_deviceName      : Analogue
17:32:09 1961.846680 T:1954263776  NOTICE:         m_displayName     : Analogue
17:32:09 1961.846802 T:1954263776  NOTICE:         m_displayNameExtra:
17:32:09 1961.846802 T:1954263776  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
17:32:09 1961.846924 T:1954263776  NOTICE:         m_channels        : FL,FR
17:32:09 1961.847046 T:1954263776  NOTICE:         m_sampleRates     : 48000
17:32:09 1961.847168 T:1954263776  NOTICE:         m_dataFormats     : AE_FMT_FLOAT,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP​
17:32:09 1961.847168 T:1954263776  NOTICE:         m_streamTypes     : No passthrough capabilities
17:32:09 1961.847290 T:1954263776  NOTICE:     Device 3
17:32:09 1961.847412 T:1954263776  NOTICE:         m_deviceName      : Both
17:32:09 1961.847534 T:1954263776  NOTICE:         m_displayName     : HDMI and Analogue
17:32:09 1961.847656 T:1954263776  NOTICE:         m_displayNameExtra:
17:32:09 1961.847656 T:1954263776  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
17:32:09 1961.847778 T:1954263776  NOTICE:         m_channels        : FL,FR
17:32:09 1961.847900 T:1954263776  NOTICE:         m_sampleRates     : 48000
17:32:09 1961.847900 T:1954263776  NOTICE:         m_dataFormats     : AE_FMT_FLOAT,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP​
17:32:09 1961.848145 T:1954263776  NOTICE:         m_streamTypes     : No passthrough capabilities
17:32:09 1961.848145 T:1954263776  NOTICE: Enumerated ALSA devices:
17:32:09 1961.848267 T:1954263776  NOTICE:     Device 1
17:32:09 1961.848389 T:1954263776  NOTICE:         m_deviceName      : @
17:32:09 1961.848511 T:1954263776  NOTICE:         m_displayName     : Default (bcm2835 ALSA bcm2835 ALSA)
17:32:09 1961.848633 T:1954263776  NOTICE:         m_displayNameExtra:
17:32:09 1961.848633 T:1954263776  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
17:32:09 1961.848755 T:1954263776  NOTICE:         m_channels        : FL,FR
17:32:09 1961.848877 T:1954263776  NOTICE:         m_sampleRates     : 8000,11025,16000,22050,32000,44100,48000
17:32:09 1961.848877 T:1954263776  NOTICE:         m_dataFormats     : AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_U8
17:32:09 1961.848999 T:1954263776  NOTICE:         m_streamTypes     : No passthrough capabilities
17:32:09 1961.870605 T:1954263776   DEBUG: CSkinSettings: no <skinsettings> tag found
17:32:09 1961.873169 T:1954263776  NOTICE: Loaded settings file from special://xbmc/system/advancedsettings.xml
17:32:09 1961.873413 T:1954263776  NOTICE: Contents of special://xbmc/system/advancedsettings.xml are...
                                            <?xml version="1.0" encoding="UTF-8" ?>
                                            <advancedsettings>
                                              <video>
                                                <defaultplayer>VideoPlayer</defaultplayer>
                                                <defaultVideoPlayer>VideoPlayer</defaultVideoPlayer>
                                              </video>
                                            </advancedsettings>
17:32:09 1961.876953 T:1954263776   ERROR: Error loading special://profile/advancedsettings.xml, no <advancedsettings> node
17:32:09 1961.877075 T:1954263776  NOTICE: Default Video Player: VideoPlayer
17:32:09 1961.877075 T:1954263776  NOTICE: Default Audio Player: paplayer
17:32:09 1961.877197 T:1954263776  NOTICE: Disabled debug logging due to GUI setting. Level 0.
17:32:09 1961.877319 T:1954263776  NOTICE: Log level changed to "LOG_LEVEL_NORMAL"
17:32:09 1961.877686 T:1954263776  NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml
17:32:09 1961.878662 T:1954263776  NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
17:32:09 1961.880371 T:1954263776  NOTICE: Loaded playercorefactory configuration
17:32:09 1961.880859 T:1954263776  NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
17:32:09 1961.881104 T:1954263776  NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
23:32:09 1961.926514 T:1954263776  NOTICE: Running database version Addons26
23:32:09 1962.168457 T:1954263776  NOTICE: ADDONS: Using repository repository.xbmc.org
23:32:09 1962.168579 T:1954263776  NOTICE: ADDONS: Using repository repository.superrepo.org.gotham.all
23:32:09 1962.406738 T:1954263776  NOTICE: Raspberry PI firmware version: Oct 13 2016 17:21:14
                                            Copyright (c) 2012 Broadcom
                                            version b301dbab300729c7871442ca50f65c669446af20 (clean) (release)
23:32:09 1962.406860 T:1954263776  NOTICE: ARM mem: 752MB GPU mem: 256MB MPG2:0 WVC1:0
23:32:09 1962.407471 T:1954263776  NOTICE: Config:
                                            arm_freq=1200
                                            audio_pwm_mode=1
                                            config_hdmi_boost=5
                                            core_freq=400
                                            desired_osc_freq=0x36ee80
                                            disable_commandline_tags=2
                                            disable_l2cache=1
                                            disable_splash=1
                                            force_eeprom_read=1
                                            force_pwm_open=1
                                            framebuffer_ignore_alpha=1
                                            framebuffer_swap=1
                                            gpu_freq=300
                                            hdmi_channel_map=8
                                            hdmi_force_cec_address=65535
                                            hdmi_force_hotplug=1
                                            hdmi_group=2
                                            hdmi_ignore_cec_init=1
                                            hdmi_mode=82
                                            init_uart_clock=0x2dc6c00
                                            initial_turbo=3
                                            lcd_framerate=60
                                            over_voltage_avs=0x124f8
                                            pause_burst_frames=1
                                            program_serial_random=1
                                            sdram_freq=450
                                            temp_limit=85
23:32:09 1962.407715 T:1954263776  NOTICE: Config:
                                            device_tree=-
                                            hdmi_cvt=1920 1080 60 3 0 0 0
23:32:10 1962.994629 T:1954263776  NOTICE: InitWindowSystem: Using EGL Implementation: raspberrypi
23:32:10 1963.022339 T:1954263776  NOTICE: Found resolution 640x480 (640x480) @ 60.00 - Full Screen
23:32:10 1963.022583 T:1954263776  NOTICE: Found resolution 640x480 (640x480) @ 59.94 - Full Screen
23:32:10 1963.022705 T:1954263776  NOTICE: Found resolution 720x480 (720x480) @ 60.00 - Full Screen
23:32:10 1963.022827 T:1954263776  NOTICE: Found resolution 720x480 (720x480) @ 59.94 - Full Screen
23:32:10 1963.022949 T:1954263776  NOTICE: Found resolution 1280x720 (1280x720) @ 60.00 - Full Screen
23:32:10 1963.023071 T:1954263776  NOTICE: Found resolution 1280x720 (1280x720) @ 59.94 - Full Screen
23:32:10 1963.023071 T:1954263776  NOTICE: Found resolution 1920x1080 (1920x1080) @ 60.00i - Full Screen
23:32:10 1963.023193 T:1954263776  NOTICE: Found resolution 1920x1080 (1920x1080) @ 59.94i - Full Screen
23:32:10 1963.023315 T:1954263776  NOTICE: Found resolution 720x576 (720x576) @ 50.00 - Full Screen
23:32:10 1963.023315 T:1954263776  NOTICE: Found resolution 1280x720 (1280x720) @ 50.00 - Full Screen
23:32:10 1963.023438 T:1954263776  NOTICE: Found resolution 1920x1080 (1920x1080) @ 50.00i - Full Screen
23:32:10 1963.023560 T:1954263776  NOTICE: Found resolution 640x480 (640x480) @ 72.00 - Full Screen
23:32:10 1963.023682 T:1954263776  NOTICE: Found resolution 640x480 (640x480) @ 71.93 - Full Screen
23:32:10 1963.023682 T:1954263776  NOTICE: Found resolution 640x480 (640x480) @ 75.00 - Full Screen
23:32:10 1963.023804 T:1954263776  NOTICE: Found resolution 800x600 (800x600) @ 56.00 - Full Screen
23:32:10 1963.023926 T:1954263776  NOTICE: Found resolution 800x600 (800x600) @ 60.00 - Full Screen
23:32:10 1963.024048 T:1954263776  NOTICE: Found resolution 800x600 (800x600) @ 59.94 - Full Screen
23:32:10 1963.024170 T:1954263776  NOTICE: Found resolution 800x600 (800x600) @ 72.00 - Full Screen
23:32:10 1963.024292 T:1954263776  NOTICE: Found resolution 800x600 (800x600) @ 71.93 - Full Screen
23:32:10 1963.024292 T:1954263776  NOTICE: Found resolution 800x600 (800x600) @ 75.00 - Full Screen
23:32:10 1963.024414 T:1954263776  NOTICE: Found resolution 1024x768 (1024x768) @ 60.00 - Full Screen
23:32:10 1963.024536 T:1954263776  NOTICE: Found resolution 1024x768 (1024x768) @ 59.94 - Full Screen
23:32:10 1963.024658 T:1954263776  NOTICE: Found resolution 1024x768 (1024x768) @ 70.00 - Full Screen
23:32:10 1963.024658 T:1954263776  NOTICE: Found resolution 1024x768 (1024x768) @ 75.00 - Full Screen
23:32:10 1963.024780 T:1954263776  NOTICE: Found resolution 1280x1024 (1280x1024) @ 60.00 - Full Screen
23:32:10 1963.024902 T:1954263776  NOTICE: Found resolution 1280x1024 (1280x1024) @ 59.94 - Full Screen
23:32:10 1963.025024 T:1954263776  NOTICE: Found resolution 1280x1024 (1280x1024) @ 75.00 - Full Screen
23:32:10 1963.025024 T:1954263776  NOTICE: Found resolution 1400x1050 (1400x1050) @ 60.00 - Full Screen
23:32:10 1963.025146 T:1954263776  NOTICE: Found resolution 1400x1050 (1400x1050) @ 59.94 - Full Screen
23:32:10 1963.025269 T:1954263776  NOTICE: Found resolution 1440x900 (1440x900) @ 60.00 - Full Screen
23:32:10 1963.025391 T:1954263776  NOTICE: Found resolution 1440x900 (1440x900) @ 59.94 - Full Screen
23:32:10 1963.025391 T:1954263776  NOTICE: Found resolution 1600x1200 (1440x1080) @ 60.00 - Full Screen
23:32:10 1963.025513 T:1954263776  NOTICE: Found resolution 1600x1200 (1440x1080) @ 59.94 - Full Screen
23:32:10 1963.025635 T:1954263776  NOTICE: Found resolution 1680x1050 (1680x1050) @ 60.00 - Full Screen
23:32:10 1963.025757 T:1954263776  NOTICE: Found resolution 1680x1050 (1680x1050) @ 59.94 - Full Screen
23:32:10 1963.025757 T:1954263776  NOTICE: Found resolution 1920x1200 (1728x1080) @ 60.00 - Full Screen
23:32:10 1963.025879 T:1954263776  NOTICE: Found resolution 1920x1200 (1728x1080) @ 59.94 - Full Screen
23:32:10 1963.026001 T:1954263776  NOTICE: Found resolution 1920x1080 (1920x1080) @ 60.00 - Full Screen
23:32:10 1963.026367 T:1954263776  NOTICE: Checking resolution 53
23:32:11 1964.314331 T:1954263776  NOTICE: GL_VENDOR = Broadcom
23:32:11 1964.314575 T:1954263776  NOTICE: GL_RENDERER = VideoCore IV HW
23:32:11 1964.314697 T:1954263776  NOTICE: GL_VERSION = OpenGL ES 2.0
23:32:11 1964.314697 T:1954263776  NOTICE: GL_SHADING_LANGUAGE_VERSION = OpenGL ES GLSL ES 1.00
23:32:11 1964.314819 T:1954263776  NOTICE: GL_EXTENSIONS = GL_OES_compressed_ETC1_RGB8_texture GL_OES_compressed_paletted_texture GL_OES_texture_npot GL_OES_depth24 GL_OES_vertex_half_float GL_OES_EGL_image GL_OES_EGL_image_external GL_EXT_discard_framebuffer GL_OES_rgb8_rgba8 GL_OES_depth32 GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_APPLE_rgb_422 GL_EXT_debug_marker
23:32:13 1966.000732 T:1954263776   ERROR: special://masterprofile/keymaps/mouse.xml Doesn't contain <keymap>
23:32:13 1966.003662 T:1954263776   ERROR: special://profile/keymaps/mouse.xml Doesn't contain <keymap>
23:32:13 1966.403809 T:1809355696  NOTICE: Register - new cec device registered on cec->RPI: CEC Adapter (2708:1001)
23:32:14 1966.945923 T:1954263776  NOTICE: Running database version Addons26
23:32:14 1966.948608 T:1954263776  NOTICE: Running database version ViewModes6
23:32:14 1966.951416 T:1954263776  NOTICE: Running database version Textures13
23:32:14 1966.960938 T:1954263776  NOTICE: Running database version MyMusic60
23:32:14 1966.978271 T:1954263776  NOTICE: Running database version MyVideos107
23:32:14 1966.982666 T:1954263776  NOTICE: Running database version TV29
23:32:14 1966.985596 T:1954263776  NOTICE: Running database version Epg11
23:32:14 1966.989136 T:1954263776  NOTICE: start dvd mediatype detection
23:32:15 1967.878174 T:1954263776 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList"
23:32:15 1967.989502 T:1954263776   ERROR: JSONRPC: Unable to parse JSON Schema definition for ""
23:32:15 1967.989746 T:1954263776   ERROR: JSONRPC: Invalid JSON Schema definition for method ""
23:32:16 1969.044312 T:1954263776  NOTICE: initialize done
23:32:16 1969.044556 T:1954263776  NOTICE: XBian: notifying Upstart that i'm well
23:32:16 1969.056274 T:1906308016  NOTICE: CAESinkPi:AddPackets Underrun (delay:0.00 frames:2205)
23:32:16 1969.080688 T:1925182384   ERROR: GetDirectory - Error getting
23:32:16 1969.371216 T:1954263776  NOTICE: Running the application...
23:32:16 1969.397705 T:1954263776  NOTICE: starting zeroconf publishing
23:32:16 1969.409668 T:1954263776  NOTICE: CWebServer[8080]: Started
23:32:16 1969.410156 T:1954263776  NOTICE: starting upnp client
23:32:16 1969.415283 T:1639969712  NOTICE: ES: Starting UDP Event server on port 9777
23:32:16 1969.415649 T:1639969712  NOTICE: UDP: Listening on port 9777 (ipv6 : false)

I GOT IT...well it's taking input. I'll get it now.

I just edited the advancedsettings.xml in the XBMC folder that is was reading.

**********EDIT

Maybe not. It seemed to have taken it the first reboot, now, it doesn't read the <touchscreen> addition to the .xml.

WTF am I doing wrong?
Turns out KODI detected the screen as a keyboard. I couldn't get it working in the end. Boxed it up and it is on it's way back to Amazon... Funny, after i boxed it up, Eleduino emailed me back and told me they tried very hard to get it working too, but failed. Maybe they should of included that tid bit of information on the product listing.

OH WELL...


Now, a new question, are there any other 1080p 7"-10" touchscreens that are confirmed working?
Reference URL's