使用这些CoreBluetooth
库,是否可以扫描并连接到鼠标和键盘等 HID 设备?
另外,是否可以充当 HID 设备?
我尝试使用以下方法扫描所有可用的蓝牙设备:
[self.centralManager scanForPeripheralsWithServices:nil options:nil];
但它没有列出任何 HID 设备。
我尝试使用 HID 设备的 UUID 充当 HID 设备,但是当我使用计算机运行扫描时,它没有找到它。
[[CBMutableService alloc] initWithType:[CBUUID UUIDWithString:HID_UDID] primary:YES];
这可能吗?