繁体   English   中英

iOS蓝牙低功耗(BLE)无法发现TX特性

[英]iOS Bluetooth Low Energy (BLE) not discovering TX characteristic

我正在使用arduino Feather BLE板,并尝试创建一个可以通过BLE将数据发送到板的iOS应用。 我可以连接,但无法访问txCharacteristic

func peripheral(_ peripheral: CBPeripheral, didDiscoverCharacteristicsFor service: CBService, error: Error?) {
    guard let characteristics = service.characteristics else {
        return
    }

    for characteristic in characteristics {
        if characteristic.properties.contains(.write) || characteristic.properties.contains(.writeWithoutResponse) {
            writableCharacteristic = characteristic
        }

        //            if(characteristic.uuid == CBUUID(string: "6e400002-b5a3-f393-e0a9-e50e24dcca9e"))
        //            {
        //                txCharacteristic = characteristic
        //            }

        var txUUID = CBUUID(string: "6e400002-b5a3-f393-e0a9-e50e24dcca9e")
        let temp = characteristic.uuid.uuidString;
        switch characteristic.uuid {
        case txUUID:
            txCharacteristic = characteristic;
            break;
        default:
            break;
        }

        peripheral.setNotifyValue(true, for: characteristic)
    }
}

该代码有效,但仅发现以下UUID:

temp    String  "00001532-1212-EFDE-1523-785FEABCD123"  
temp    String  "00001531-1212-EFDE-1523-785FEABCD123"  
temp    String  "00001534-1212-EFDE-1523-785FEABCD123"  

我发现这些UUID是DFU UUID。 我如何才能发现txCharacteristic?


添加了更多信息,以了解我如何调用discoverCharacteristics():

extension SimpleBluetoothIO: CBPeripheralDelegate {
func peripheral(_ peripheral: CBPeripheral, didDiscoverServices error: Error?) {
    guard let services = peripheral.services else {
        return
    }

    targetService = services.first
    if let service = services.first {
        targetService = service
        peripheral.discoverCharacteristics(nil, for: service)
    }
}

通过阅读以下网站上的信息,我能够弄清楚这一点: https : //learn.adafruit.com/getting-started-with-the-nrf8001-bluefruit-le-breakout/adding-app-support

特别是这部分(请注意,UART是服务,TX和RX是服务的特征):

UART Service UUID: 6E400001-B5A3-F393-E0A9-E50E24DCCA9E
TX Characteristic UUID: 6E400002-B5A3-F393-E0A9-E50E24DCCA9E
RX Characteristic UUID: 6E400003-B5A3-F393-E0A9-E50E24DCCA9E

因此,我需要使用UART服务ID调用pheral.discoverServices()。 在下面的示例中self.serviceUUID =“ 6e400001-b5a3-f393-e0a9-e50e24dcca9e”

func centralManager(_ central: CBCentralManager, didConnect peripheral: CBPeripheral) {
    //peripheral.discoverServices(nil)
    //peripheral.discoverServices([CBUUID(string: "6e400001-b5a3-f393-e0a9-e50e24dcca9e")])

    // Disover peripheral with service UUID that was given to us during initialization (self.serviceUUID)
    peripheral.discoverServices([CBUUID(string: self.serviceUUID)])
}

然后在didDiscoverCharacteristicsFor服务中,我需要查找TX特征ID:

// Did Discover Characteristics
func peripheral(_ peripheral: CBPeripheral, didDiscoverCharacteristicsFor service: CBService, error: Error?) {
    guard let characteristics = service.characteristics else {
        return
    }

    for characteristic in characteristics {
        if characteristic.properties.contains(.write) || characteristic.properties.contains(.writeWithoutResponse) {
            writableCharacteristic = characteristic
        }

        // TX Characteristic UUID: 6E400002-B5A3-F393-E0A9-E50E24DCCA9E
        // https://learn.adafruit.com/getting-started-with-the-nrf8001-bluefruit-le-breakout/adding-app-support
        let txUUID = CBUUID(string: "6e400002-b5a3-f393-e0a9-e50e24dcca9e")
        switch characteristic.uuid {
        case txUUID:
            txCharacteristic = characteristic;
            break;
        default:
            break;
        }

        peripheral.setNotifyValue(true, for: characteristic)
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM