Ana içeriğe geç

Ekolayzır Ayarlama

Bağlı cihazın sunduğu ekolayzır ayarlarını okuyun, kullanıcı arayüzünde gösterin ve kullanıcının seçtiği ayarı uygulayın.

Ön Koşullar

  • Cihaz bağlı ve hazırdır.
  • Cihaz DeviceEqualizerAPI protokolüne uyar.
  • Mümkün olduğunda cihazın döndürdüğü bir ayarı kullanın.

API Referansı

Framework

AIBuds.xcframework

İçe Aktarma

Swift
import AIBuds
import AIBudsFoundation

Protokol

Ekolayzır işlemleri DeviceEqualizerAPI protokolüyle tanımlanır.

Swift
/// The protocol for device API that supports equalizer.
protocol DeviceEqualizerAPI: DeviceAPI {
    /// All available preset and custom equalizer settings reported by the device.
    var allEQSettings: [EQSettingModel] { get }

    /// The currently active equalizer setting.
    var eqSetting: EQSettingModel? { get }

    /// Applies the specified equalizer setting to the device.
    /// - Parameters:
    ///   - equalizerSetting: The equalizer configuration to be applied.
    ///   - completion: A closure that is invoked when the operation completes.
    ///     - success: `true` if the setting was successfully applied; otherwise `false`.
    ///     - error: An `NSError` object if an error occurs during the operation; otherwise `nil`.
    func setEqualizer(
        _ equalizerSetting: EQSettingModel,
        completion: AIBudsCompletionHandler?
    )
}

Örnek Yöntemi

Belirtilen ekolayzır ayarını cihaza uygular.

Swift
/// Applies the specified equalizer setting to the device.
/// - Parameters:
///   - equalizerSetting: The equalizer configuration to be applied.
///   - completion: A closure that is invoked when the operation completes.
///     - success: `true` if the setting was successfully applied; otherwise `false`.
///     - error: An `NSError` object if an error occurs during the operation; otherwise `nil`.
func setEqualizer(
    _ equalizerSetting: EQSettingModel,
    completion: AIBudsCompletionHandler?
)

Parametreler

ParametreTürAçıklama
equalizerSettingEQSettingModelCihaza uygulanacak ayar.
completionAIBudsCompletionHandler?İşlem tamamlandığında çağrılan isteğe bağlı callback.

Callback Parametreleri:

AdTürAçıklama
successBool / BOOLSeçilen ayarın uygulanıp uygulanmadığı.
errorNSError?Hata ayrıntıları; işlem başarılıysa nil.

Dönüş Değeri

Bu yöntem doğrudan değer döndürmez. Sonuç completion callback’i aracılığıyla sağlanır.

Kullanım Örnekleri

Swift
import AIBuds
import AIBudsFoundation

guard let device = device as? DeviceEqualizerAPI else {
    print("Device does not support equalizer")
    return
}

guard let selectedSetting = device.allEQSettings.first else {
    print("The device did not provide an equalizer setting")
    return
}

device.setEqualizer(selectedSetting) { success, error in
    guard success else {
        print("Failed to apply equalizer: \(error?.localizedDescription ?? "Unknown error")")
        return
    }
    print("Equalizer applied: \(selectedSetting.name ?? "Unnamed setting")")
}

Özel Ayarlar

Bağlı cihazın bildirdiği özel yuvalardan birini kullanın. gains.count cihaza özgü bant sayısını verir; minimumGain ve maximumGain ise -12...12 dB aktarım aralığını tanımlar. customSetting(index:gains:), sıfır tabanlı yuvayı customModeStart ile başlayan bir moda eşler ve geçersiz girişte nil döndürür.

Swift
// A returned custom setting identifies a slot and its supported band count.
guard let reportedSetting = device.allEQSettings.first(where: \.isCustom),
    let slot = reportedSetting.customIndex?.intValue
else {
    return
}

// Supply one gain per reported band. Every value must be within -12...12 dB.
let gains = Array(repeating: 0, count: reportedSetting.gains.count)
guard let customSetting = EQSettingModel.customSetting(index: slot, gains: gains) else {
    return
}

device.setEqualizer(customSetting, completion: nil)

defaultBandCount, yerleşik ön ayarların kullandığı bant sayısıdır. Bağlı cihaz farklı bir bant sayısı bildirirse bunu geçersiz kılmak için kullanmayın.

Hata Yönetimi

success == false durumunu yönetin ve varsa error değerini kullanıcıya gösterin. Genel API, ekolayzıra özgü hata kodları tanımlamaz.