我想开发一个桌面应用程序(在Windows上,最好在.NET上),它接受来自移动设备的蓝牙连接,然后将命令发送到此应用程序。
我之前从未使用过蓝牙技术。我已经找到了这类应用程序的开源示例,但我没有运气。我实际上在Microsoft上发现了一个用于Windows CE蓝牙堆栈的托管(.NET)包装器,但是无法在我的Windows 7上使用它。
你知道讨论这个话题的任何好文章吗?有关该主题的任何其他信息来源?我应该从哪里开始?
感谢。
答案 0 :(得分:1)
一个快速的VB代码示例,显示了我们的32feet.NET共享源蓝牙(和OBEX和IrDA)库的使用:
Dim lsnr As New BluetoothListener(MyConsts.MyServiceUuid)
lsnr.Start()
' Now accept new connections, perhaps using the thread pool to handle each
Dim conn As New BluetoothClient = lsnr.AcceptBluetoothClient()
Dim peerStream As Stream = conn.GetStream()
...
来自http://www.alanjmcf.me.uk/comms/bluetooth/32feet.NET%20--%20User%20Guide.html
的用户指南 获取图书馆希望你觉得它很有用。有任何问题,请在这里或我们的论坛上提问。 http://inthehand.com/forums/default.aspx?GroupID=29