views:

573

answers:

1

Hello everyone! Is therу broad way to handle Bluetooth Audio/Video Remote Control Profile (AVRCP) events on WM device? I especialy interested in Comact Framework way but would be happy with just simple P/Invoke API.

Update. I've read MSDN articles on this theme but I still have no idia how to facilitate this knowledge. There no samples. Could anyone help me?

+1  A: 

Here is the MSDN page about AVRCP

Microsofts solution uses the Audio/Video Control Transport Control Protocol (AVCTP). The Microsoft component is an extension layer to the L2CAP layer in the Microsoft Bluetooth Protocol Stack.

The following list shows the supported commands:

  • Play
  • Stop
  • Pause
  • Forward
  • Backward

Other Bluetooth profiles can be found on MSDN as well.

Hope this helps

Espo