Hi all,
It would be nice to use the gsen of the diamond as a game controller for custom made games on the pc(like the wii).
Is this possible
+1
interesting idea
but i don't think it ll be easy....
kenshironanto said:
+1
interesting idea
but i don't think it ll be easy....
Click to expand...
Click to collapse
No I don't think it would be easy...
that's why I ask it the pro's!!!
nice idea. Bluetooth connection to the PC?
lol... just the idea of pairing a device on Bluetooth with Windows...
Can't imagine the phone side to be too hard - my first shot would probably be WLAN since that's the easiest way to get some connection working. Once you have that simply passing gsen / dpad / buttons (maybe even touchscreen input?) to the PC should be rather trivial.
The harder part is probably to write a gamepad driver for windows that interprets that input data and transforms it to DirectInput compliant information.
While I certainly know how to do the phone side - I am somewhat unsure about the PC side. The last time I did some driver coding is AGES away. I don't even know if opening a TCP/IP socket from inside a driver is possible/a good idea. Maybe one would need a daemon-like user space program to read the input from the network and feed it to the driver...
Would acualy ge a freaking awsome Ide toward an playstation 3.
And acualy a computer.
i don`t know if this is fake or not, but check it out:
http://www.youtube.com/watch?v=79xeREnZ_7Q&feature=related
called niime i think =)
pureevil said:
i don`t know if this is fake or not, but check it out:
http://www.youtube.com/watch?v=79xeREnZ_7Q&feature=related
called niime i think =)
Click to expand...
Click to collapse
cooooll
it would be awesome if diamond can do that
pureevil said:
i don`t know if this is fake or not, but check it out:
http://www.youtube.com/watch?v=79xeREnZ_7Q&feature=related
called niime i think =)
Click to expand...
Click to collapse
Geez I wish I had time to look into that - if their stuff was open source I am sure we could leverage about 90% of their XP driver implementation (which most likely they managed pretty well)...
do we need to remake drivers?
you can get Python (program used) for PocketPC, and it just bluetooth on to PC with NiiMe software....
testing now...
while they seem to use python on a S60 phone - this doesn't directly translate to doing the same thing on a WiMo diamond... The fact that they released their source under the GPL makes reusing their PC software a viable option though.
Speaking of GPL source - has anyone found their code available for download on their site?
Okay guys - you got me as far as installing a devel enviroment and writing a simple gsen SDK based test app now - if there's someone willing to spend some time on the PC DirectInput driver side I'm sure we can get somewhere with this...
This.Would.Be.Awesome. !!!!!!!
if this works, I gonna get a diamond other than orbit 2
pureevil said:
i don`t know if this is fake or not, but check it out:
http://www.youtube.com/watch?v=79xeREnZ_7Q&feature=related
called niime i think =)
Click to expand...
Click to collapse
nice, i didn't know that this exist. So asking here for the request whasn't as stupid as i tought!!!
+1 for up!
Hey
I'm currently working on a little client-server (TCP/IP) thingie to at least get GSensor data from the Diamond to the PC - once that is done there's still the very ugly part of writing a DirectInput driver that acts like a gamepad...
If anyone wants to take over the driver-writing part things would progress much more quickly I guess
Sadly I don't have too much spare time at the moment to spend on the matter though.
Cheers,
Alex
a gsensor keyboard emulator could control for example
FLUX the game. (3d tube flying), by senden keystrokes
to windows` keyboardhandler
whoever does figure this out will be the man. when it does happen i just hope it will do the job for the cdma version coming to telus on or around august 6th
I have a .NET client/server pair running in an WiMo6 emulator now sending what could actually be GSen data at a fairly decent rate. Not considering the GSensor it's pretty much phone independent.
And if anyone tells me how to get rid of the files VS2k5 places on my Diamond for debugging the application I'll try the same thing with a real GSensor I am just tired of hard-resetting my Diamond in order to clean up the mess done by the development environment...
Cheers,
Alex
Edit: Okay, I tested it on my diamond by simply copying over the two required files (no debugging possible though) and transferring GSen data either via ActiveSync (say Bluetooth) or WLAN works nicely. But I'm afraid it's necessary to keep the device awake to avoid lags (does the diamond reduce CPU speed on standby?).
Related
But yet with all the talent on this board...
We can't figure out how to get the damn keyboard light to stay on longer than 5 seconds (8125)... Errrrrrrr
Just my rant! Thanks for stopping by.
5 secs is more then enough for me, if I dont type, I dont need the keyboard light on...and when I start typing, it goes on again....no problem at all
I did some work on this, but without a Wizard I can't test any ideas out.
For anyone interested or with a fusion powered brain, have a look through the battery driver. That's where this is effected on the Universal.
V
Keyboard light
Yeah - I am not a geek, just a user. Having said that, I simply keep my left thumb on the "dot" key and tap it if I need the light. Do I have to say that I tap it again when I want to type a non-special key?
I understand the light is a creature comfort, but, sheesh, the machine is already soooo awesome, this seems like a very trivial complaint.
IMHO
TR
vijay555 said:
I did some work on this, but without a Wizard I can't test any ideas out.
For anyone interested or with a fusion powered brain, have a look through the battery driver. That's where this is effected on the Universal.
V
Click to expand...
Click to collapse
If you need a beta tester for a work around for this let me know. I can load it up and let you know if it works.
something to try
There is a backlight hack in the Univelsal wiki forum Try to do that
wiki.xda-developers.com
vijay555 said:
I did some work on this, but without a Wizard I can't test any ideas out.
For anyone interested or with a fusion powered brain, have a look through the battery driver. That's where this is effected on the Universal.
V
Click to expand...
Click to collapse
Howdy Vj -
I was going to start poking around the Wiz driver soon. Can you point me to any forum posts I can reference on the relevant locations within the Uni driver?
summiter - hi! I spent quite a while disassembling the Universal stuff, because we know that does use the reg key
HKEY_CURRENT_USER\ControlPanel\Backlight\QKeyLedTimeout
to control backlight time.
I traced this back to the battery driver, which also has some other useful stuff. Then I think I got bored, but you can check the Wizard driver to see if it has an equivalent. Otherwise I tried to hook directly into the driver to activate the backlight directly with an IOCTL, but not successful at the time. It doesn't export a function directly to activate the backlight I think.
I did try and it did not work, simulating a keypress, modifying the input queue, and various techniques for spoofing keyboard input, but the backlight is activated by the driver at a hardware level, not because of spoofed keyboard presses. So I think best way is to reverse engineer the driver and hack into the backlight there... but I moved on to other things first...
V
vijay555 said:
summiter - hi! I spent quite a while disassembling the Universal stuff, because we know that does use the reg key
HKEY_CURRENT_USER\ControlPanel\Backlight\QKeyLedTimeout
to control backlight time.
I traced this back to the battery driver, which also has some other useful stuff. Then I think I got bored, but you can check the Wizard driver to see if it has an equivalent. Otherwise I tried to hook directly into the driver to activate the backlight directly with an IOCTL, but not successful at the time. It doesn't export a function directly to activate the backlight I think.
I did try and it did not work, simulating a keypress, modifying the input queue, and various techniques for spoofing keyboard input, but the backlight is activated by the driver at a hardware level, not because of spoofed keyboard presses. So I think best way is to reverse engineer the driver and hack into the backlight there... but I moved on to other things first...
V
Click to expand...
Click to collapse
Wow.... Like I said lots of brain power, and yet the solution to a simple task eludes even the most bright...
As for all current reg hacks none of the work on the 8125.
DXL007: don't know if that's a complement or an insult, but I have to choose my battles: as the famous quote says, this type of stuff is "99% perspiration and 1% inspiration"... I had to do quite a lot of reversing just to get to an educated point of failure Then I just play call of duty until I'm ready to do the next one! And I'm working on several new, unrelated apps first.
But as I said, I don't have a Wizard, and there are a lot of other guys on the board capable of this! But I'll try to have another look when I get time... I tend to drift between projects subject to time.
V
DXL007 said:
vijay555 said:
summiter - hi! I spent quite a while disassembling the Universal stuff, because we know that does use the reg key
HKEY_CURRENT_USER\ControlPanel\Backlight\QKeyLedTimeout
to control backlight time.
I traced this back to the battery driver, which also has some other useful stuff. Then I think I got bored, but you can check the Wizard driver to see if it has an equivalent. Otherwise I tried to hook directly into the driver to activate the backlight directly with an IOCTL, but not successful at the time. It doesn't export a function directly to activate the backlight I think.
I did try and it did not work, simulating a keypress, modifying the input queue, and various techniques for spoofing keyboard input, but the backlight is activated by the driver at a hardware level, not because of spoofed keyboard presses. So I think best way is to reverse engineer the driver and hack into the backlight there... but I moved on to other things first...
V
Click to expand...
Click to collapse
Wow.... Like I said lots of brain power, and yet the solution to a simple task eludes even the most bright...
As for all current reg hacks none of the work on the 8125.
Click to expand...
Click to collapse
VJ handled your message quite gentlemanly. I on the other hand think you should take your sense of entitlement elsewhere.
vijay555 and summiter,
I hope DXL007 meant this more as encouregment than it came across, but I hope you guys realize that the vast majority of the people on this forum appreciate what you do for us and don't feel it's something you owe us. There aren't many people that can and will provide such useful software and information and not expect an arm and a leg for it. Mainly because of the two of you my 8125 is the perfect pda and keeps getting better.
Thanks,
Mike H
summiter said:
DXL007 said:
vijay555 said:
summiter - hi! I spent quite a while disassembling the Universal stuff, because we know that does use the reg key
HKEY_CURRENT_USER\ControlPanel\Backlight\QKeyLedTimeout
to control backlight time.
I traced this back to the battery driver, which also has some other useful stuff. Then I think I got bored, but you can check the Wizard driver to see if it has an equivalent. Otherwise I tried to hook directly into the driver to activate the backlight directly with an IOCTL, but not successful at the time. It doesn't export a function directly to activate the backlight I think.
I did try and it did not work, simulating a keypress, modifying the input queue, and various techniques for spoofing keyboard input, but the backlight is activated by the driver at a hardware level, not because of spoofed keyboard presses. So I think best way is to reverse engineer the driver and hack into the backlight there... but I moved on to other things first...
V
Click to expand...
Click to collapse
Wow.... Like I said lots of brain power, and yet the solution to a simple task eludes even the most bright...
As for all current reg hacks none of the work on the 8125.
Click to expand...
Click to collapse
VJ handled your message quite gentlemanly. I on the other hand think you should take your sense of entitlement elsewhere.
Click to expand...
Click to collapse
LOL...I always like messages like this. Yeah, it's a simple task so it must be that these "experts" are all lazy and liars. Takes me back to the old days (yesterday?) when a Pocket PC could do anything a laptop could do but the evil Microsoft hid all the features in the registry. Yep, whatever you say and good luck with that. :lol:
Is there an app that makes the backlight lit lower than current backlight for a time (secs) if the device is not used? (just to save some power) Just like in some nokia phones...
I'm managing to build one but I'm a super noob in CE programming using VB.
I dunno how to use registry so that user who modified the app will stay as it is when you softreset the device.
With Mortscript you should be able to write this quite easily. I once built one script to turn backlight back on when Tomtom mistakenly turned it off. The next day I received the Tomtom update that didn't have that bug...
There is hardly any learning curve, the manual is just a short reference, download some sample scripts, look into them and you can start writing.
success
Maggy said:
With Mortscript you should be able to write this quite easily. I once built one script to turn backlight back on when Tomtom mistakenly turned it off. The next day I received the Tomtom update that didn't have that bug...
There is hardly any learning curve, the manual is just a short reference, download some sample scripts, look into them and you can start writing.
success
Click to expand...
Click to collapse
Could you tell me more detail about Mortscript for TOMTOM?
I also worry about TOMTOM backlight. Now I use phoneAlarm to turn on backlight.
I actually used 3 scripts for Tomtom backlight problem, but didn't save them because Tomtom 6.03 no longer had that problem. Putting it all in one script didn't work because once the script started Tomtom it paused till Tomtom closed down. So one script called the Tomtom start script, that second script ended once Tomtom was starting but the first one was still able to call the third one, which wrote the correct registry settings for backlight.
Read all about Mortscript on http://www.sto-helit.de/index.php?module=page&entry=ms_overview&action=view
still downloading Visual Studio 2005... 2GB+ remaining...
Any suggestions?
Who said anything about Visual Studio???
Mortscript is a very tiny download from the link I gave you. And it's freeware.
Visual Studio is nice for very professional programmers, although lots of them use freeware/open source tools as well. For such a tiny utility as what you were talking about it's like killing a mosquito by setting off all nuclear bombs at once.
Well said
Plus, he wouldn't use MortScript with VS at all
nesty24, just take a notepad (or Notepad++ or something else you like) and voila
utak3r said:
Well said
Plus, he wouldn't use MortScript with VS at all
nesty24, just take a notepad (or Notepad++ or something else you like) and voila
Click to expand...
Click to collapse
LOL! yeah, i dunno mortscript. And besides, i don't like to make a program on my himalaya...
utak3r, what's with notepad? It's very hard to code just imagining your forms. And I'm noob in this programming with CE, i don't have resources at all.
nesty24 said:
utak3r, what's with notepad? It's very hard to code just imagining your forms.
Click to expand...
Click to collapse
But you won't code forms... Just a plain code. Consider it as batch files (or better - JavaScript scripts).
backlight is too dark
hi.
i have 2 xda2 and i have updated it to wm6 aku4.2 but one it backlight is darker, it have only 64mb but in the board have 4 chip infeon=128mb. i don't understand why it recognize 64mb? thanks.
thientan said:
i have 2 xda2 and i have updated it to wm6 aku4.2
Click to expand...
Click to collapse
Then upgrade to AKU0.7.0, it's a newer build.
thientan said:
but one it backlight is darker
Click to expand...
Click to collapse
Did you try adjusting it?...
thientan said:
it have only 64mb but in the board have 4 chip infeon=128mb. i don't understand why it recognize 64mb? thanks.
Click to expand...
Click to collapse
64MB of what?...
Your 128MB of RAM is splitted between RAM, RAMDisk and page pool.
thientan said:
hi.
i have 2 xda2 and i have updated it to wm6 aku4.2 but one it backlight is darker, it have only 64mb but in the board have 4 chip infeon=128mb. i don't understand why it recognize 64mb? thanks.
Click to expand...
Click to collapse
utak3r answered it already but just to be clear to all: EACH Himalaya has 4 chips infineon, always 128MB. Most of us never pick up a screwdriver to check that or any other hardware specifications.
I personally did, but that was just because:
-I bought mine with broken screens
-I'm a trained hardware technician
-I'm very curious
Unless you have similar good reasons to open your device, please don't. Curiosity does not only kill the cat. If you want to see what's inside, look at the perfect pictures in the Wiki
Maggy said:
Unless you have similar good reasons to open your device, please don't. Curiosity does not only kill the cat. If you want to see what's inside, look at the perfect pictures in the Wiki
Click to expand...
Click to collapse
Holy words
I was opening my one several times - its connector is soooo bad If you're using it in a car for navigation, this connector gets broken
I was resoldering it 5 times till now
Is there any "fun" bluetooth software outthere anymore. It always fun to be able to mess with your friends but I have not been able to find anything for a long time that will allow that happen. Any ideas?
Yes I too would like to use BT to listen in on conversations, DOH I mean have fun with friends.
Interesting... I Didn't even know there was such a thing...
either did I. Is there?
I have something called Smurf, it's a program for Bluejacking anything bluetooth aware. No idea where to get it as it was somewhere obscure and it crashes if I try to access the about screen (rest of it works quite well though).
Here looks favourite for a website, but I might be wrong -
http://www.gatefold.co.uk/smurf/
I have a cab for it called "SmurfSetup04", so it looks like it's that url...
Hope that helps.
This should be interesting if i can get it to work... lol oh well...
Cavey.co.uk said:
I have something called Smurf, it's a program for Bluejacking anything bluetooth aware. No idea where to get it as it was somewhere obscure and it crashes if I try to access the about screen (rest of it works quite well though).
Here looks favourite for a website, but I might be wrong -
http://www.gatefold.co.uk/smurf/
I have a cab for it called "SmurfSetup04", so it looks like it's that url...
Hope that helps.
Click to expand...
Click to collapse
Blue Jacking
Ok, firstly its an offence in most counties as its considered hacking under most laws but for information purposes:
Bluetooth phones that were able to be bluejacked were only made about 4 years ago as all the bluetooth pairing stack has been hardened since then try to prevent this.
Im sure its proabably possible with the right kit, essentially using the original exploits you tricked the traget device into a situation where it thought that you were re-pairing a device and explioted this.
Anyway, probably the most fun thing you can still do over bluetooth is with a program called bluetooth sniper, this lets you send images and text to target phones whilst re-writing your bluetooth id. Its also possible to send messages to phones where the bluetooth is turned on but set to hidden mode.
It also has a war mode, you set a message, it scans for all phones, send the message to all local phones and then does it again and again and again.
Use with caution as you can expect other phone users get a bit pissed after the 10th or so bluetooth message
If your running linux and not a ppc theres a bit more things you can do like:
http://trifinite.org/trifinite_stuff_carwhisperer.html
this is the sort of attack you talk about, however it relighs on the bluetooth's device to still have the default pass key, which many have.
http://www.secuobs.com/news/05022006-bluetooth10.shtml
this is a dos attack i belive for bluetooth
there is also
http://www.net-security.org/software.php?id=519
redfang which attempts to brueforce the passkey on the device, this is slightly diffirent from the original method used for btcrawler.
Anyway, like i said i wouldnt advise doing or using any of the above as its very very very naughty indeed !!
Great - thank you for the info. I will continue to do some more research and find out which one of these still works. I own a copy of the bluetooth sniper (yes, I bought it) and it never seems to work very good. The problem is you have to have the "passkey" to the other phone to be able to do anything.
Anyways - I'm not going to spend tons of time on it, as I just had some buddies I wanted to mess with. If anyone else has any other programs out there that does not require the remote users passkey I would love to hear what they are!
Tare Care....
Plazma remind me to never piss you off. Awsome info.
plazma247 said:
Ok, firstly its an offence in most counties as its considered hacking under most laws but for information purposes:
Click to expand...
Click to collapse
Don't confuse bluejacking with bluesnarfing.
Bluejacking is actually harmless (although possibly annoying) and involves sending a contact with a message to the bluetooth device concerned.
I haven't used Sniper, but Smurf didn't require a pass key and is free (forgot to mention that bit). Worked with a Sony Ericsson phone and a Nokia phone my friends had, their MacBook's and an Asus machine running Vista...
plazma247 said:
Anyway, probably the most fun thing you can still do over bluetooth is with a program called bluetooth sniper, this lets you send images and text to target phones whilst re-writing your bluetooth id. Its also possible to send messages to phones where the bluetooth is turned on but set to hidden mode.
It also has a war mode, you set a message, it scans for all phones, send the message to all local phones and then does it again and again and again.
Use with caution as you can expect other phone users get a bit pissed after the 10th or so bluetooth message
Click to expand...
Click to collapse
i tried to download sniper but it said it does not support my firmware or something like that, so i did some research and found it need one of the old .net frameworks. i found the download in the Sniper forums but you need to join to download it... but of course i tried to join (about 2 months ago) and i still have not gotten the 'moderator approval' so i cant download it and thus cant run sniper
Sniper wasn't any fun because to do anything at all, it always pops up the passkey screen on the remote users phone.....thus, your name (device owner name) would always display and make the remote user connect with you. I am anxious to try this smurf program; however, I can't seem to get it installed. All of the new custom ROM's do not appear to have SQL CE installed on them, which is requires - and I can't seem to find the proper cabs to install it on the tilt. If anyone has the proper cabs I need, please post them!
smurf
beufford12 said:
Sniper wasn't any fun because to do anything at all, it always pops up the passkey screen on the remote users phone.....thus, your name (device owner name) would always display and make the remote user connect with you. I am anxious to try this smurf program; however, I can't seem to get it installed. All of the new custom ROM's do not appear to have SQL CE installed on them, which is requires - and I can't seem to find the proper cabs to install it on the tilt. If anyone has the proper cabs I need, please post them!
Click to expand...
Click to collapse
I have smurf running on my tilt, if anyone knows how to upload to a site by phone i'll post the cab there. i'm running confused stu's mobile vista 1.3 vc(us), coreplayer, vista dialer. i'm sure any version of his rom will do it just click my signature stating my rom.
Cavey.co.uk said:
Don't confuse bluejacking with bluesnarfing.
Bluejacking is actually harmless (although possibly annoying) and involves sending a contact with a message to the bluetooth device concerned.
I haven't used Sniper, but Smurf didn't require a pass key and is free (forgot to mention that bit). Worked with a Sony Ericsson phone and a Nokia phone my friends had, their MacBook's and an Asus machine running Vista...
Click to expand...
Click to collapse
Indeed, bluejacking is often confused with bluesnarfing(which I have an app that will do bluesnarfing, bluebugging, and hellomoto attacks.) Believe me there are still PLENTY of phones and devices still susceptible to bluejacking, just not many still bugged for bluesnarfing or hellomoto attacks.
I've actually made REAL friends by bluejacking(bluejacked a nice lookin lady at the music store once as well as a bartender.)
If you're grey hatted.... check out bluezard... I believe it's www.wm-soft.com but it's not freeware(worth the money imo.) In addition to the attacks there is a built in console where you can attach to any of the remote services and send AT commands(such as dialing commands or sms commands) Doesn't do automatic scanning though, and that's a pain. A really nice bluejacker peice is mobiluck, it's actually geared more toward the exact social aspect of bluejacking that landed me my new friend. start mobiluck and leave it running in your pocket. The idea was that if you came within range of smoeone else running mobiluck you'd automatically exchange information. Didn't turn out that well because the author is very controlling and manually generates his keys and the process is a real pain in the ass.
btexplorer is another useful tool that can do snarfing but no bug or hellomoto, it's also not very intuitive, it's more of a semi consolar program.
Use these programs at your own risk. While bluejacking isn't technically illegal, bluesnarfing, bugging and hellomoto is. Not to mention that while bluejacking isn't illegal it can still get you an ass beatin' if your bluejack the wrong person and they see you sitting there in starbucks giggling.. So there is that risk as well.
I contacted HTC and asked them if they had a tilt sensor SDK, or had plans to release one, and they basically said "no". So, I decided to see what I could come up with to get tilt response integrated into my little pet-project, and to my surprise, managed to figure out how to get some basic data out of the existing tilt sensor DLL on the Diamond.
If you'd like, you can see my "hello world"-level app using the tilt sensor here on my blog. I've included the source so others can play with the few tidbits I've figured out. The app itself is pretty boring, it'll really only be of interest to developers looking to integrate tilt into their app, and even then, it's still a boring app =)
If accessing the tilt sensor is well known, feel free to ignore me.
Well done, thats great!
You should also probably look at this and talk to CharlyV, he might be able to add some info.
http://forum.xda-developers.com/showthread.php?t=403939
That's great news !
Now developers might use such information to release usefull applications and funny games !
Yes, I was wondering, for my car I use the G-tech for acceleration-measurement.
Is this sensor sensitive / good enough to also do those kind of things?
Also, navigation programs can be a lot more precise by knowing when accelerating, cornering or braking.
Riel said:
Yes, I was wondering, for my car I use the G-tech for acceleration-measurement.
Is this sensor sensitive / good enough to also do those kind of things?
Click to expand...
Click to collapse
Good question: I might try to write some sort of logging program and see what kind of data I can get out of a car trip. That's a bit off for now.
Also, I made a minor update the project, I determined a few more of the unknown values that the API returns.
perhaps you or some other guys are capable to work with some tools mentioned in this post??
http://forum.xda-developers.com/showpost.php?p=2373447&postcount=56
Is there any chance to develop a calibration tool for this sensor?? Mine drifts to lower-left and thats annoying because Opera always means, I rotate my phone :-(
Thank you
I updated the project to include a sample of how to use the event driven notification of different orientations that Opera uses (instead of polling the sensor constantly to determine the current orientation).
I'll have to do some digging to see if there's any way to calibrate the sensor. It'd be nice (mine is a bit off too), but I don't see anything immediatly obvious.
Perfect news!
I hope there are devs, who will make apps or games for this. My idea of a new game is "Black Circle".
(Side in German bug game in English, dont worry)
http://spiele.isnichwahr.de/r432-spin-the-black-circle.html
What do you tink about it?
I wrote a managed wrapper based on Scott's work:
http://blog.enterprisemobile.com/2008/07/using-htc-diamonds-sensor-sdk-from-managed-code/
I think it would be possible to calibrate the sensor by replacing the HTCSensorSDK.dll with one that acts as a pass through to the real thing. Then it could "massage" the returned values with calibration adjustments.
Teeter -> HTCSensorSDK.dll (one we roll that tweaks values) -> RealHTCSensorSDK.dll (the real DLL)
I don't think that the DLL is replaceable unless the device is flashed with a new ROM.
Thoughts?
This software lets you use the keyboard on your Fuze/Touch Pro as a wireless keyboard and the touchscreen as a Touch Pad Mouse like the kind on a laptop. Unfortunately this software is not free but they do have a trial version that you can try and the only limitation is it forces you to reconnect after every 30 clicks. This program can use either WIFI or Bluetooth to connect to your computer and pretty much lets you do anything from controlling Vista Media Center and Winamp to controlling your computer as long as you can write a script.
The software is called Salling Clicker
http://www.salling.com/
The program uses scripts that people create and post on the forum. I wrote this script a long time ago for my HTC Hermes to control my computer.
I don't know anything about programming or coding but I managed to write this script in about one night after reading a few basic tutorials and help from the forum members on Salling's forum. Since I put this together without any real knowledge this script is really basic but get the job done. If anyone wants to improve the script your welcome too, perhap you can smooth out the mouse movement and sensitivity even more.
Installation Instructions
1. Download and install the software on your PC
2. Pair up your phone with the computer by Bluetooth or use Wifi
3. Choose the correct phone from the drop down menu ( Touch Pro in this case) and it will begin to install the client software to your Phone.
4. Download my script and unrar into My Clicker Scripts located in My Documents
5. Open up the host software on your PC and drag the script called "HTC Universal Keyboard and Mouse" from the right box into the left box labeled "Items available on your handheld device".
6. Start up the program on your Fuze and establish a connection and choose the "HTC Universal Keyboard and Mouse" script to run
7.??????
8. Profit!
Thanks alot, i will definitely give this a try
Screw this, GRemote is the best and free, been around for a long time.
http://gbmsoftware.com/
Mr.Sir said:
Screw this, GRemote is the best and free, been around for a long time.
http://gbmsoftware.com/
Click to expand...
Click to collapse
dude thank you so freakin much this is AWSOME.
Mr.Sir said:
Screw this, GRemote is the best and free, been around for a long time.
http://gbmsoftware.com/
Click to expand...
Click to collapse
Anybody have this working on a Fuze? The only thing that will open is GMouse, and the only things that work inside it is the left click and moving the cursor but that only works if the left mouse click is held down making me highlight a bunch of stuff.
Mr.Sir said:
Screw this, GRemote is the best and free, been around for a long time.
http://gbmsoftware.com/
Click to expand...
Click to collapse
+1..
one of my favorite apps.
Not that i use it alot, but yea gremote is great. Using your phone for a steering wheel for racing games works great. Or if you got a decent set of speakers, you can change the songtrack or volume from the backyard while your planting your two-lips.
Reamer said:
Anybody have this working on a Fuze? The only thing that will open is GMouse, and the only things that work inside it is the left click and moving the cursor but that only works if the left mouse click is held down making me highlight a bunch of stuff.
Click to expand...
Click to collapse
I have the same problem... Anyone? PLEASE!!! I used to have this on my Kraiser and loved it.
People People
People there are So many Apps that Do this like ppc tablet/Total input/Vkb/on and on..lol
Nevermind. I got it
www.mobilesrc.com does the same without client software on the computer
also take a look on this thread: http://forum.xda-developers.com/showthread.php?t=425686&page=1
Is there any apps out there that can use the Keyboard via bluetooth to the PS3? I would love to be able to use the TP as a keyboard on the PS3.
wth nice
SSJ4Gokou said:
Is there any apps out there that can use the Keyboard via bluetooth to the PS3? I would love to be able to use the TP as a keyboard on the PS3.
Click to expand...
Click to collapse
Same here. I tried a Logitech wireless keyboard with touchpad that's specifically made to use with a PS3. The zoom feature was aweful when using the web browser, so I returned it.
There's a way to format the PS3's hard drive to either boot up like a normal PS3 or boot up like a Linux computer. I'm gonna check the PS3 forums to see if there's any info posted about using a WinMo device.
READ THIS:
BennY- said:
www.mobilesrc.com does the same without client software on the computer
also take a look on this thread: http://forum.xda-developers.com/showthread.php?t=425686&page=1
Click to expand...
Click to collapse
Same Problem
Reamer said:
Anybody have this working on a Fuze? The only thing that will open is GMouse, and the only things that work inside it is the left click and moving the cursor but that only works if the left mouse click is held down making me highlight a bunch of stuff.
Click to expand...
Click to collapse
I have the exact same problem on my fuze running energy rom 2.0. anybody get it working on a fuze?
thedocrn said:
Same here. I tried a Logitech wireless keyboard with touchpad that's specifically made to use with a PS3. The zoom feature was aweful when using the web browser, so I returned it.
There's a way to format the PS3's hard drive to either boot up like a normal PS3 or boot up like a Linux computer. I'm gonna check the PS3 forums to see if there's any info posted about using a WinMo device.
Click to expand...
Click to collapse
No2Chem has a tool that lets you use the they keyboard but with a usb cable heres a link
http://www.nuerom.com/BlogEngine/page/nueUSBKeyboard.aspx