0
我正在使用32feet.NET庫來創建藍牙服務。但是聽衆無法以無效的參數開始提供的消息。這可能與提供的GUID值有關。我在設計時使用Visual Studio中的Tools ---> Create Guid菜單選項生成了GUID。32feet.NET:Bluetooth偵聽器和GUID值的問題
下面我張貼代碼片段。
public static void Main()
{
BluetoothListener lsnr = new BluetoothListener(MyConsts.MyServiceUuid);
lsnr.Start();//It throws an Invalid arguement supplied exception
BluetoothClient conn = new BluetoothClient();
conn = lsnr.AcceptBluetoothClient();
Stream peerStream = conn.GetStream();
}
class MyConsts
{
public static Guid MyServiceUuid = new Guid("{1D69EDBD-9862-43fe-A242-98322AE764A4}");
}
任何想法?