蓝牙串行COM连接.BlueSoleil中似乎没有针对RFCOMM服务器的API



在我的应用程序中,我想连接到电子设备(它不是电话或…!)并从中获取数据包。我需要从串行COM端口读取数据。我使用下面的代码进行连接:

        private void bSearch_Click(object sender, EventArgs e)
    {
        var listener = new BluetoothListener(BluetoothService.SerialPort);
        listener.Start();
        listener.BeginAcceptBluetoothClient(this.BluetoothListenerAcceptClientCallback, listener);
    }
    void BluetoothListenerAcceptClientCallback(IAsyncResult result)
    {
        var listener = (BluetoothListener)result.AsyncState;
        listener.BeginAcceptBluetoothClient(this.BluetoothListenerAcceptClientCallback, listener);
        BluetoothClient client = listener.EndAcceptBluetoothClient(result);
        client.Close();
    }

注意:当我手动连接到设备的蓝牙时,我可以从串行端口接收数据!但通过使用32英尺的程序,我收到了这个错误:"BlueSoleil中似乎没有RFCOMM服务器的API。"在线:

There seems to be no API in BlueSoleil for RFCOMM servers.

怎么了,我该怎么办??!!

BlueSoleil SDK不支持作为服务器,因此32feet.NET无法支持服务器/侦听器。

https://32feet.codeplex.com/wikipage?title=BlueSoleil

相关内容

  • 没有找到相关文章

最新更新