T-Mobile G1 multi-touch demonstrated in video - Page 2 - Android Community Forums
Register Members List Social Groups Calendar Search Today's Posts Mark Forums Read


Go Back   Android Community Forums > Android Discussions > Android OS Discussions > Talkback


Talkback Comment and talkback related to frontpage news

Reply
 
Thread Tools Display Modes
  #11  
Old 11-24-2008, 12:17 PM
Ryan Gardner Ryan Gardner is offline
Ryan Gardner has no status.
Smoke signaler
 
Join Date: Nov 2008
Posts: 8
Ryan Gardner is on a distinguished road
Default Re: T-Mobile G1 multi-touch demonstrated in video

Quote:
Originally Posted by Seraphic View Post
I'm still not sold by the video. It doesn't look that different to capacative averaging that works on non-multitouch displays. To be honest, if you see how unresponsive certains parts are, I'd say it shows that its not properly supported at hardware level.
The reason it is not smooth is because of how this is hacked together. The most recent touchscreen event buffer is being written to /dev/tsout on my device. I have a thread in the java program constantly polling that looking for data - but the likelihood of the thread always polling it at the right time to get the touch data is pretty low - and it probably drops most of the touch events.

Regarding the hardware level... That was already proven unequivocally by the debug logs which were posted last week - the hardware without any doubts supports and does track multiple fingers.

If anything, the fact that such a crude and rough hack works at all shows a lot of potential for what can be done once the proper support is put in place.

Also, please refrain from making up terms like "capacitive averaging" in an attempt to justify your skepticism.
Reply With Quote
Ads
  #12  
Old 11-24-2008, 12:24 PM
Ryan Gardner Ryan Gardner is offline
Ryan Gardner has no status.
Smoke signaler
 
Join Date: Nov 2008
Posts: 8
Ryan Gardner is on a distinguished road
Default Re: T-Mobile G1 multi-touch demonstrated in video

Quote:
Originally Posted by inphu510n View Post
Yep. Either the program isn't optimized or the hardware isn't quite fast enough to track both fingers accurately. Looking at how it traced, it is possible to implement something fairly reliable for pinch/expand actions. Though, I wouldn't count on this making it into any functionality released by Google for this device.
It's most certainly that the program isn't optimized. Not only is the program not optimized, the method of grabbing the data itself is a complete hack. I'm really busy with my day job this week, but later on I will post the source code and document everything - I will put at least one basic optimization in place (currently, it is regexing every time it polls that device - which is unnecessary since I can spit the data out in a format that i can just use .split(" ") and get the same result - but I was lazy at 2:00AM and didn't want to recompile my kernel for my phone then)

It's unlikely that Google / T-mobile will ever push out an update to this device that includes official multitouch support, but it's entirely reasonable that multitouch support can be built into the android platform and that such support can be enabled very easily by developers for the G1 with a custom firmware.

The question of how to best implement support for multitouch in the android platform must be addressed - if Google doesn't have a multitouch device in the pipepline it might not be a top priority for them, but as a community we can work with them to get support properly put into the platform so that any future official device will be easy to implement, and any G1 owners who want to run custom builds could get multitouch support as soon as the stuff is in place.

As far as patents and such are concerned, let the lawyers deal with that.
Reply With Quote
  #13  
Old 11-24-2008, 12:41 PM
Jorsher's Avatar
Jorsher Jorsher is offline
Jorsher is stealthy
Reached higher ground
 
Join Date: Sep 2008
Posts: 931
Jorsher is on a distinguished road

Former Staff Hall of Fame 
Total Awards: 1

Send a message via AIM to Jorsher Send a message via MSN to Jorsher Send a message via Yahoo to Jorsher
Default Re: T-Mobile G1 multi-touch demonstrated in video

Well, I was going to back you up Ryan, even though the information you posted was clearly stated in the complete article, but you handled it with grace
Reply With Quote
  #14  
Old 11-24-2008, 02:12 PM
EclipsedExistence's Avatar
EclipsedExistence EclipsedExistence is offline
EclipsedExistence is feeling that Honey is way too cute for a robot...
Has a life!
 
Join Date: Oct 2008
Posts: 55
EclipsedExistence is on a distinguished road
Default Re: T-Mobile G1 multi-touch demonstrated in video

From what I've heard, Apple has patents on multi-touch, which makes Google hesitant to release multi-touch. I don't recall where I read this, but it was somewhere on the net, on one of the tech sites.
__________________
How cute... What is it?
- Momo
Reply With Quote
  #15  
Old 11-24-2008, 02:19 PM
DesignDawg DesignDawg is offline
DesignDawg is just an iTard, trolling
Android Community Protocol Droid - Lead Android
 
Join Date: Sep 2008
Location: Seminole, FL
Posts: 1,087
DesignDawg is on a distinguished road

Android Community Staff Award 
Total Awards: 1

Send a message via AIM to DesignDawg
Default Re: T-Mobile G1 multi-touch demonstrated in video

Quote:
Originally Posted by Ryan Gardner View Post
Also, please refrain from making up terms like "capacitive averaging" in an attempt to justify your skepticism.
Literally LOL at that line. Hilarious. I like you, Ryan. Welcome to AC.
__________________
Ricky Turner
DesignDawg

Reply With Quote
  #16  
Old 11-24-2008, 04:34 PM
Seraphic Seraphic is offline
Seraphic has no status.
Smoke signaler
 
Join Date: Nov 2008
Posts: 15
Seraphic is on a distinguished road
Default Re: T-Mobile G1 multi-touch demonstrated in video

Quote:
Originally Posted by Ryan Gardner View Post
The reason it is not smooth is because of how this is hacked together. The most recent touchscreen event buffer is being written to /dev/tsout on my device. I have a thread in the java program constantly polling that looking for data - but the likelihood of the thread always polling it at the right time to get the touch data is pretty low - and it probably drops most of the touch events.

Regarding the hardware level... That was already proven unequivocally by the debug logs which were posted last week - the hardware without any doubts supports and does track multiple fingers.

If anything, the fact that such a crude and rough hack works at all shows a lot of potential for what can be done once the proper support is put in place.

Also, please refrain from making up terms like "capacitive averaging" in an attempt to justify your skepticism.
I say what I see. I said I'm not sold on the idea; I didn't say it proved either way. Yes, the program was hacked together and it's a good example of what could be done, and I hope the hardware supports true multitouch - I'd love my G1 to support it but until I see a working, practical example I'll remain skeptical.

Terms such as "capacitive averaging" aren't made up at all, anyone who works with touchscreen technology will tell you this - there's no exact name for it, it's what we call it at Panasonic. Almost all touchscreens use a form of capacitive averaging to determine positional input data. Take a look here if you must for a basic example. There are projected non-capacitive averaging screens which only take the very first contact with the screen into account. These are commonly used in touch-keypads and anything that doesn't require 'movement' of the finger/stylus.
Reply With Quote
  #17  
Old 11-24-2008, 04:36 PM
Seraphic Seraphic is offline
Seraphic has no status.
Smoke signaler
 
Join Date: Nov 2008
Posts: 15
Seraphic is on a distinguished road
Default Re: T-Mobile G1 multi-touch demonstrated in video

Quote:
Originally Posted by DesignDawg View Post
Literally LOL at that line. Hilarious. I like you, Ryan. Welcome to AC.
Reply With Quote
Reply

Bookmarks


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Forum Jump

Ads

Similar Threads
Thread Thread Starter Forum Replies Last Post
so CAN the G1 use multi touch? collection HTC Handsets 35 07-26-2009 01:06 AM
G1 is multi-touch capable TheMessiah Android-powered Hardware discussions 38 04-02-2009 08:37 PM
T-Mobile capable of multi-touch? refused9150 Talkback 29 11-24-2008 12:54 PM
Do you think the G1 should have Multi-touch?? CodyD HTC Handsets 26 11-18-2008 04:17 PM
Multi-Touch... When And How Would It Be Incorperated Into The G1? G-won Android Apps Discussions 14 10-18-2008 05:50 PM


All times are GMT -5. The time now is 07:16 AM.



Copyright © 2008-2009 Android Community / R3 Media LLC, All Rights Reserved.