8

我需要一个函数 didReceiveWriteRequests 的示例实现,当中央 iOS 设备执行 'writeValue:' 将数据写入蓝牙 iOS 外围设备时,它在蓝牙 iOS 外围设备上运行。

但我在网上搜索并找不到示例。Apple 文档仍然没有示例代码。

4

1 回答 1

13

我让它工作了。这是我的工作代码:

// Processes write command received from a central.
- (void)peripheralManager:(CBPeripheralManager *)peripheral didReceiveWriteRequests:(NSArray *)requests
{

    CBATTRequest*       request = [requests  objectAtIndex: 0];
    NSData*             request_data = request.value;
    CBCharacteristic*   write_char = request.characteristic;
    //CBCentral*            write_central = request.central;
    //NSUInteger            multi_message_offset = request.offset;

    // Face commands this PWR RX to advertise serno UUID?
    int total_write_requests = 0;
    if([ write_char.UUID isEqual: [CBUUID UUIDWithString: YOUR_CHARACTERISTIC_UUID]] )
    {


        // Read desired new_state data from central:
        unsigned char* new_state = (unsigned char*)[request_data   bytes];
        my_new_state = new_state[0];
        #endif
        NSLog(@"        - advertise serno UUID: %s", my_new_state ? "TRUE" : "FALSE" );

        // Select UUID that includes serno of PWR RX, for advertisements:

        ++total_write_requests;
    }

    if( total_write_requests )
        [peripheral respondToRequest:request    withResult:CBATTErrorSuccess];  // result = success
    else
    {
        NSLog(@"_no_write_request_FAULT !!");
    }
}
于 2013-07-11T13:38:00.813 回答