簡體   English   中英

寫入操作不會以 xamarin 形式更新 iOS 的特征值

[英]The write operation doesn't update the characteristic value for iOS in xamarin forms

我正在使用 xamarin 表單創建一個BLE 應用程序 在 Android 中一切正常,我能夠讀寫 GATT 特性。 在 iOS 中,我能夠成功讀取,但寫入操作不會更新特性值 寫操作沒有錯誤,正在執行,但特征值沒有變化。 我嘗試了名為light blue 的iOS 本機應用程序,其工作正常,特征值已更新,我僅在 Xamarin 表單應用程序中遇到問題。 這是我的代碼

 private async Task<string> ProcessDeviceInformationService(IService deviceInfoService)
        {
            try
            {
               await adapter.ConnectToDeviceAsync(device);
                var sb = new StringBuilder("Getting information from Device Information service: \n");
                 var characteristics =  deviceInfoService.GetCharacteristicsAsync();
                var characteristic = await deviceInfoService.GetCharacteristicAsync(Guid.Parse("00002a2b-0000-1000-8000-00805F9B34FB"));
                
                try
                {
                    
                    if (characteristic != null)
                    {
                        var sbnew = new StringBuilder("BLE Characteristics\n");
                        byte[] senddata = Encoding.UTF8.GetBytes(string.IsNullOrEmpty(SendMessageLabel.Text) ? "12" : SendMessageLabel.Text);

 

                       
                    
                                                    
                                                 
                        
                        characteristic.ValueUpdated += (o, args) =>
                          {
                        
                         var bytes = characteristic.Value;
                                                 };
                                               await characteristic.WriteAsync(senddata);

 

                                                                                                     
                      

 

                        string str = Encoding.UTF8.GetString(senddata);

 

                  

 

                        sbnew.AppendLine($"Characteristics found on this device: {string.Join(", ", str.ToString())}");
                            CharactericsLabel.Text = sbnew.ToString();
                        

 


                    }
                }
                catch (Exception ex)
                {
                    //return ex.Message;
                    DisplayAlert("Notice", ex.Message.ToString(), "OK");

 

                }

我嘗試了延遲,我也嘗試在沒有外圍設備響應的情況下進行寫入,但它不起作用。 這是我的外圍代碼

 // Current Time characteristic
BluetoothGattCharacteristic currentTime = new BluetoothGattCharacteristic(CURRENT_TIME,
        //Read-only characteristic, supports notifications
        BluetoothGattCharacteristic.PROPERTY_READ | BluetoothGattCharacteristic.PROPERTY_NOTIFY | BluetoothGattCharacteristic.PROPERTY_WRITE_NO_RESPONSE,
        BluetoothGattCharacteristic.PERMISSION_READ | BluetoothGattCharacteristic.PROPERTY_WRITE);
BluetoothGattDescriptor configDescriptor = new BluetoothGattDescriptor(CLIENT_CONFIG,
        //Read/write descriptor
        BluetoothGattDescriptor.PERMISSION_READ | BluetoothGattDescriptor.PERMISSION_WRITE);
currentTime.addDescriptor(configDescriptor);
// Local Time Information characteristic
BluetoothGattCharacteristic localTime = new BluetoothGattCharacteristic(LOCAL_TIME_INFO,
        //Read-only characteristic
        BluetoothGattCharacteristic.PROPERTY_READ,
        BluetoothGattCharacteristic.PERMISSION_READ);
BluetoothGattCharacteristic sampleText = new BluetoothGattCharacteristic sampleText = new BluetoothGattCharacteristic(SAMPLE_TEXT,
        //Read-only characteristic
        BluetoothGattCharacteristic.PROPERTY_WRITE_NO_RESPONSE | BluetoothGattCharacteristic.PROPERTY_READ | BluetoothGattCharacteristic.PROPERTY_NOTIFY,
        BluetoothGattCharacteristic.PERMISSION_WRITE | BluetoothGattCharacteristic.PERMISSION_READ);

我不知道如何解決任何建議。我什至嘗試了信號量,但它沒有幫助,正如您在我的代碼中看到的那樣

private static async Task<string> WriteAndWaitForResponseAsync(
    ICharacteristic characteristic,
    byte[] senddata)
        {
            var semaphore = new SemaphoreSlim(0, 1);
            string result = null;

            characteristic.ValueUpdated += (o, args) =>
            {
                var bytes = characteristic.Value;

                result = Encoding.UTF8.GetString(bytes);  // Note I don't know if this is your intended behaviour with the values you get back, you can decide what to actually do with the response.
                                                          // Notify a value has been received.
                semaphore.Release();
            };

            await characteristic.WriteAsync(senddata,new CancellationToken(true)).ConfigureAwait(false);

            // Wait until we receive a notification.
            await semaphore.WaitAsync(); // I strongly suggest you look in to CancellationTokens but I am not going in to that now.
           
            return result;
        }

我懷疑線程是這里問題的一部分,您訂閱了該事件,調用WriteAsync但最終在收到數據/事件之前離開了該方法。 我建議您需要在收到數據之前嘗試阻止該方法離開。

嘗試類似:

private static async Task<string> WriteAndWaitForResponseAsync(
    ICharacteristic characteristic,
    byte[] senddata)
{
    var semaphore = new SemaphoreSlim(0, 1);
    string result = null;

    characteristic.ValueUpdated += (o, args) =>
    {
        // Make sure you read from the new value in event not the existing characteristic.
        var bytes = args.Characteristic.Value;

        result = Encoding.UTF8.GetString(bytes);  // Note I don't know if this is your intended behaviour with the values you get back, you can decide what to actually do with the response.
        // Notify a value has been received.
        semaphore.Release();
    };
    
    await characteristic.WriteAsync(senddata);

    // Wait until we receive a notification.
    await semaphore.WaitAsync(); // I strongly suggest you look in to CancellationTokens but I am not going in to that now.

    return result;
}

然后,您可以從當前的方法中調用此方法,例如:

string str = await WriteAndWaitForResponseAsync(characteristic, senddata);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM