From 2137cc5fdf9f5df20aa316a30d682922588662b7 Mon Sep 17 00:00:00 2001 From: Alireza Fatehi <107924035+alireza-dhp@users.noreply.github.com> Date: Tue, 20 Aug 2024 14:04:44 +0200 Subject: [PATCH] add disInformationReceivedWithKeysAsStrings function to PolarConnector --- iosApp/iosApp/Services/Bluetooth/PolarConnector.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/iosApp/iosApp/Services/Bluetooth/PolarConnector.swift b/iosApp/iosApp/Services/Bluetooth/PolarConnector.swift index 9689f155..91104fd6 100644 --- a/iosApp/iosApp/Services/Bluetooth/PolarConnector.swift +++ b/iosApp/iosApp/Services/Bluetooth/PolarConnector.swift @@ -273,6 +273,10 @@ extension PolarConnector: PolarBleApiDeviceFeaturesObserver { } extension PolarConnector: PolarBleApiDeviceInfoObserver { + func disInformationReceivedWithKeysAsStrings(_ identifier: String, key: String, value: String) { + print("Disinformation received by \(identifier): \(key); \(value)") + } + func batteryLevelReceived(_ identifier: String, batteryLevel: UInt) { print("Battery level for \(identifier): \(batteryLevel)") }