标签: xamarin.ios xamarin spp
我有蓝牙设备,如何通过SPP配置文件在xamarin(monotouch)中以编程方式连接到它,并读取设备消息 我需要以编程方式识别可用设备并选择我的设备? 我试试这段代码
CBCentralManager _manager = new CBCentralManager (); var spp = Guid.Parse("00001101-0000-1000-8000-00805f9b34fb"); _manager.ScanForPeripherals(new [] { spp });
答案 0 :(得分:0)
我也有同样的问题,发现你无法访问BlueTooth SPP。
相反,您需要通过外部附件API。
这thread帮助我朝着正确的方向努力。希望它也可以帮到你!