Hi all, I have a Bluetooth Car Stereo (A2DP) and to connect it is rather laborious with WM6 as you have to get into the Settings>Connections>Bluetooth screen, right-click the device, and 'Set as Wireless Stereo' every time!
I have not found a way to create a shortcut icon that will directly load the Bluetooth page. Can anyone help show me how? I assume it is a rundll command but am not sure how to do it.
Visit http://www.teksoftco.com section Freeware and download A2DPToggle
works a treat , only thing i had to do was re pair my headset for it to work .
Great thanks!
Hi everyone,
I have started looking into using a PS3 controller as an input device for my Diamond.
I want the adility to play games using a PS3 contoller over bluetooth, as the device doesnt have good controls for games. I have managed to get my ps3 controller to work over usb on my pc Next step is to get my controller over blueooth to my pc, I will keep updating this thread
I have found some useful web pages
how get input from PS3 controller over wired with source code: http://www.codeproject.com/KB/mcpp/wiredps3axis.aspx
How to get ps3 controller over bluetooth on linux with source code: http://fedoraforum.org/forum/showthread.php?t=199246
I dont really know what Im doing when it comes to wm6 and making a device work with wm6. I dont know much about the bluetooth stack either. I will probably need to write some sort of a driver at some point. To catch the input from the controller and convert it into a command on my diamond.
So any help of any kind would be great. Any problems you can see with my plan?
Sorry not sure if this is the right place to put this thread so move if you want.
Well, that didnt go to well.
The controller is appearing in my bluetooth manager on my pc, but i cant connect or query its services.
Now Im really stuck
if someone could help me get some trace data from the connection, or enlighten me to a way of getting some information out of the bluetooth stack.
Thx,
Chris McNamee
Assuming that the PS3 doesn't use a proprietary communication protocol that can't be reverse engineered, this should be possible.
However, I suggest looking here first to get source and discussion re use of the Wii mote on the PPC first.
Then re implement the PS3's control mechanisms.
http://www.codeplex.com/WiiMoB/Thread/View.aspx?ThreadId=10953
There's further discussions here:
http://forum.xda-developers.com/showthread.php?t=335973
and here:
http://forums.neurostechnology.com/index.php?topic=9759.0
to get you started. Interesting project though!
V
Thanks
Cheers vijay555,
I will have a look as soon as I get a bit of free time
Hmmmm
Thanks vijay555
There is some excellent information on some of those links, but will need to get a wiimote. I cant tell if the drivers have been loaded by the wm6
but i was wondering, how does wm6 know which device its talking to over bluetooth?
It must be via a device serial or something, but what is the term for it?
like i said im a bit of a novice
Yeah, now we're cooking
I found an alternative, the wii remote/classic controller it uses bluetooth and there is lots of source code and examples
http://sourceforge.net/projects/wiiuse/
it comes with a libaray for windows and an example of how to use
all the source code is there to downloading
Now all I need is a wii remote
and to get it going on my pc, then port to PPC.
Then I need to write a frontend to control what action on the mote do on my PPC. Should be easy
sounds like an interesting project, keep us updated!
It has begun
Yesterday I bought a wii controller and got it talking to my pc using the wiiuse.
Wiiuse is open source and it has code already to interpret the controls of the wiimote, including the ir sensing, accelerometer, wii nunchuck, and the classic controller. Which we be very useful, as I dont need to work it out myself.
Also I have got wiimob, kind of working. It uses a library called bluetools to controller the bluetooth (which is pay for, so will need to find/make an alternative at some point but works for now). I have got to the point the author got stuck at (comment in the code says he never got passed), so Im kind of on my own now. Wiimob can search for wiimotes, then search it services but fails when trying to get a stream to the service. Im pretty sure this is because the RemoteService class returned by the bluetools doesnt have the correct GUID, which cause the connection to be refused by the remote device as it doesnt exist.
It is all looking very promising at the min
next steps:
get the bluetools talking to a service on my pc and see if I get the right GUID to determine if its the bluetools code which is failing to get the GUID or the wiimote not giving its GUID for the service.
Will post back with any news
Interesting
It seems that the library doesnt want to connect to a human input device, it wont connect to the wiimote or my bluetooth keyboard. It does seem to work to other services like Obex file transfer.
Hmmm, what?
Guess I found try and find some samples of people using this library and human input device or find a new library. Im not really up for trying to create my own at the min, as it would take a while
O dear
Its really not going well, either my knowledge isnt up to the job or it cant be done.
I have tried hard, but windows mobile is missing the all important hid.dll driver to get a listing of pair bluetooth hid devices so i can open a handle to the device. So I then looked into opening a connection myself and bypassing the hid driver, but from what I can work out it needs two l2cap connections open to the device, 1 on channel 11 for writing and another on channel 13 for reading data. But windows mobile doesnt have an api to access the l2cap layer of the bluetooth stack, the layer down (hci) can be extended but this would take along time to implement as I would then have to implement the l2cap layer myself.
Its turning into a losing battle, I really now doubting that I can do this.
The only idea left is how does the windows mobile use a bluetooth keybaord, does it use a generic driver which it extends or is it complete in its self. If it does uses a generic driver, i need to find some doc.
If anyone has any advice about how to implement l2cap connection or any thing about connecting to a hid device in windows mobile I would be very greatful.
Thanks guys,
But I think this is dead, like many other projects to try and get windows mobile work with a wiimote.
Things have taken a turn
Yeah,
A very helpful guy pointed me down a new line of throught,
I now beleive that I maybe able to do this
well, i need the win ce 6 platform builder
i owuld like to help but not got a clue about these things! keep up the good work
Well, any suggestions
Hmm, the wiimote uses bluetooth hid profile to communicate which talks over a l2cap connection. HID profile uses the universal serial bus (USB) architecture but send data over bluetooth
http://www.bluetooth.com/Bluetooth/Technology/Works/HID.htm
I have two options from what i can see
1. Well, I have found source for a sample keybaord device which I could rip off but cant get it to compile
2. Gain access to the L2CAP layer of the bluetooth stack by extending the stack with some of my own code. Then create my own connections to the wiimote and start sending and receiving reports to the device.
Any suggestions on the best approach?
both will take alot of time either way.
Hmm,
The L2CAP sample code requires some of the core dll for wm. These include coredll.dll and the btd.dll
during the build linking fails as I dont have the lib files, to get the lib files I need to build the os, as these files can change depending on the options specified during the build. I dont really want to do this, as it will limit the software to only one os version of wm, the one i build against.
Next question is can I do a library call and get the function points at runtime?
Well I think I may have to ask on a new thread. I hope so, as it would over come alot of problems, and it wouldnt limit the code to certain versions of the wm
Opened my mouth too quick
I using the wince 6 sdk,
But windows mobile 6 is based on wince 5. Hopefull I will have more luck with the wince 5 sdk
Well, that went a bit better.
Ive got pasted all compiling errors with the sample code I found. I have all the needed include and library files.
When trying to link the compiled code I get a single error now.
1>Compiling...
1>l2capdev.cpp
1>Compiling resources...
1>Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>Linking...
1>uafxcw.lib(dllmodul.obj) : error LNK2005: DllMain already defined in l2capdev.obj
1> Creating library Windows Mobile 6 Professional SDK (ARMV4I)\Release/l2capdev.lib and object Windows Mobile 6 Professional SDK (ARMV4I)\Release/l2capdev.exp
1>Windows Mobile 6 Professional SDK (ARMV4I)\Release/l2capdev.dll : fatal error LNK1169: one or more multiply defined symbols found
1>Build log was saved at "file://d:\Documents and Settings\Chris\My Documents\Visual Studio 2008\Projects\Bak new l2capdev\l2capdev\Windows Mobile 6 Professional SDK (ARMV4I)\Release\BuildLog.htm"
1>l2capdev - 2 error(s), 0 warning(s)
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
If anyone can help with this error it would be great.
Sorry guys, but Ive got alot of coursework on at the min.
So it might go a bit quite on here for a bit, but done worry.
Im still working on this when I get some spare time, but I dont have much at the min
Any progress on this mcnamee?
No luck
Well, I have given up on this for awhile.
I would like to start working on this project again when I have some more time.
But for now this is dead.
Chris McNamee
If you are interested in alternatives to the MSI or Chainpus BGP100 bluetooth gamepad, google search "modded by bacteria" go to the "work in progress" section of his forums, and search for the thread "Re-housed Bluetooth controller". The creator of the site, Bacteria, will be transplanting the innards of the BGP100 into an SNES controller. Previously, he has transplanted it into a PS1 controller. It seams feasible to DIY into almost any controller housing.
PS3 for EVO?
I'd love to use the bluetooth connectivity for my Evo and playing ROMs. any ideas?
Apologies if this has been mentioned...
I often find myself late at night having to reach for the keyboard to type something in the browser on the PC. On Screen Keyboard helps, but it's slow. Gmote helped even more, but I'd like the step further and go with the voice input.
I've used Windows 7's voice recognition, but I find that my android phone does a better job at recognising some things.
I'd like to either use my phone as a wireless microphone for my PC to use with Windows 7's voice recognition, or just being able to use the voice input from the android phone to input text on the PC.
However, for some reason neither Gmote or Teamviewer allows you to use the mic button on your android keyboard. Thus preventing us lazy people from dictating to the computer.
Droidcam works for video and audio, but not as a Recording Device in the Windows sound settings and therefore can't be used as a voice recognition device.
Long question short:
How do I input text on the PC by shouting at my phone?
And yes, I chose a lollipop because it looks like a mic.
easy
mindlessbeing said:
I often find myself late at night having to reach for the keyboard to type something in the browser on the PC. On Screen Keyboard helps, but it's slow. Gmote helped even more, but I'd like the step further and go with the voice input.
I've used Windows 7's voice recognition, but I find that my android phone does a better job at recognising some things.
I'd like to either use my phone as a wireless microphone for my PC to use with Windows 7's voice recognition, or just being able to use the voice input from the android phone to input text on the PC.
However, for some reason neither Gmote or Teamviewer allows you to use the mic button on your android keyboard. Thus preventing us lazy people from dictating to the computer.
Droidcam works for video and audio, but not as a Recording Device in the Windows sound settings and therefore can't be used as a voice recognition device.
Long question short:
How do I input text on the PC by shouting at my phone?
And yes, I chose a lollipop because it looks like a mic.
Click to expand...
Click to collapse
easy... i use unified remote...
i think splashtop and gpp remote also works!
This may have been discussed over time but I am learning. It quickly gets very convoluted to search for answers and the tech docs on what each profile does is hefty to say the least. Hoping someone with experience could help me make sense if an idea I had is old and wouldn't work anyway.
Would it be possible to use a BT user profile that is allowed by WP8 to be used for a keyboard connection for text input into Wp8, as a workaround the HiD BT profile not being present?
If a keyboard was made that used the AVRCP profile (if that profile has a keyboard) could you then use that profile on WP8 with a keyboard?
Sorry, I'm over my head obviously but am curious.
Advanced Audio Distribution Profile (A2DP 1.2)
Audio/Video Remote Control Profile (AVRCP 1.4)
Hands Free Profile (HFP 1.5)
Phone Book Access Profile (PBAP 1.1)
Object Push Profile (OPP 1.1)
Out of Band (OOB) & Near Field Communications (NFC)
None of those profiles support keyboard input. WP8 APIs allow for RAW-Bluetooth connections so Devs might be able to connect a Bluetooth keyboard and read it's keystrokes into the App but you won't be able to input data into another App as the connections is closed as soon as the App hosting the HID profile disconnects.
StevieBallz said:
None of those profiles support keyboard input. WP8 APIs allow for RAW-Bluetooth connections so Devs might be able to connect a Bluetooth keyboard and read it's keystrokes into the App but you won't be able to input data into another App as the connections is closed as soon as the App hosting the HID profile disconnects.
Click to expand...
Click to collapse
Thank you for the reply. That makes sense to me so I appreciate your time.
Has anyone experience with the freedom keyboard advertised "Compatible with Android, Windows 7/8 (Desktop and Mobile), Apple iOS, BlackBerry and Symbian " by Amazon. does it work with the Samsung WP8 phone?
Second after searching in the phonebook I have now all the letters shown in the apllication, just blank without anything. Any Idea how I get rid of it? Strange
[email protected] said:
Has anyone experience with the freedom keyboard advertised "Compatible with Android, Windows 7/8 (Desktop and Mobile), Apple iOS, BlackBerry and Symbian " by Amazon. does it work with the Samsung WP8 phone?
Second after searching in the phonebook I have now all the letters shown in the apllication, just blank without anything. Any Idea how I get rid of it? Strange
Click to expand...
Click to collapse
I think you asked this in another thread about a different device. The title on that device is misleading and some of the reviews even speak to WP7/8 not working on it.
Windows Phone 7 and Windows Phone 8 does not allow a BT keyboard or a USB keyboard to be attached or synced to the device for text input.
There are no keyboards available for your device.
Human Interface Bluetooth Profile is not part of Windows Phone 7 or Windows Phone 8. Below is a list of the current BT user profiles developers can use, please note that you do not see HID listed. As I noted in your other thread about BT keyboards, this is a known issue with thousands of requests to have it changed. You too can add your comments to MS here: http://windowsphone.uservoice.com/f...port-for-hid-human-interface-device-bluetooth
List of supported BT profiles and versions:
Advanced Audio Distribution Profile (A2DP 1.2)
Audio/Video Remote Control Profile (AVRCP 1.4)
Hands Free Profile (HFP 1.5)
Phone Book Access Profile (PBAP 1.1)
Object Push Profile (OPP 1.1)
Out of Band (OOB) & Near Field Communications (NFC)
As far as your phone book goes, I believe there is no way to eliminate the unused letters and the letters only show up when you exceed a certain number of contacts. The same thing occurs in the start menu when you go over a certain amount of apps, you will see alphabetical. (I may not be understanding your issue, take a screen shot with your phone and post it) to take screen shots press the power and home button at the same time.