Hello,
Given a Windows Mobile 6.1 smartphone with Bluetooth I want to register it as a mouse.
Basically what I do now:
- Start the Bluetooth service on device with Guid {00001124-0000-1000-8000-00805f9b34fb}
- Connect from desktop PC to device.
Result:
- Device is detected with all services including the HID one but there is no driver for it
Current workaround:
- Desktop application that connects to the bluetooth service and reads the data stream
Desired solution:
- Register the service as Bluetooth mouse and send mouse events from phone.
Q:
- How do I get to the desired solution?
- Do a I have to write an inf file for it?
- I have to add extra information to the bluetooth service?
- How can I send mouse clicks over this service?
Currently I am developing in C# using .NETCF 3.5 and Microsoft.WindowsMobile.SharedSource.Bluetooth assembly from .NET CF SDK but it would be no problem to work in C++ if needed.