For a smartphone with Windows Mobile 6.1 with Bluetooth, I want to register it as a mouse.
Basically what I'm doing now:
- Launch the Bluetooth service on the device using Guid {00001124-0000-1000-8000-00805f9b34fb}
- Connect from the desktop PC to the device.
Result:
- The device was discovered by all services, including the HID, but there is no driver for it.
Current workaround:
- A desktop application that connects to a bluetooth service and reads a stream of data.
Desired solution:
- Register the service as a Bluetooth mouse and send mouse events from the phone.
IN:
- How can I find the right solution?
- Do I have an inf file for this?
- Do I need to add additional information to the bluetooth service?
- How can I send clicks on this service?
I am currently developing C # using .NETCF 3.5 and Microsoft.WindowsMobile.SharedSource.Bluetooth from the .NET CF SDK, but it would be nice to work in C ++ if necessary.
source share