From d6d9a09d505d11148599a95a5be3e1351edbe0ac Mon Sep 17 00:00:00 2001 From: hc Date: Mon, 13 Apr 2026 15:17:52 +0800 Subject: Local iHealth SDK, device detail screen, iOS event fixes --- .../Communication_SDK/Headers/IDOBindEnum.h | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100755 libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h') diff --git a/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h new file mode 100755 index 0000000..f73c91a --- /dev/null +++ b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h @@ -0,0 +1,49 @@ +// +// IDOBindEnum.h +// IDOBluetoothInternal +// +// Created by 何东阳 on 2019/8/3. +// Copyright © 2019 何东阳. All rights reserved. +// + +#ifndef IDOBindEnum_h +#define IDOBindEnum_h + +/** + * 绑定状态枚举 + * Binding status enumeration + */ +typedef NS_ENUM(NSInteger, IDO_BIND_STATUS) { + /** + * 绑定失败 + * Binding failed + */ + IDO_BLUETOOTH_BIND_FAILED = 0, + + /** + * 绑定成功 + * Binding succeeded + */ + IDO_BLUETOOTH_BIND_SUCCESS, + + /** + * 已经绑定 + * Already bound + */ + IDO_BLUETOOTH_BINDED, + + /** + * 需要授权绑定 + * Need authorization binding + */ + IDO_BLUETOOTH_NEED_AUTH, + + /** + * 拒绝绑定 + * Rejected binding + */ + IDO_BLUETOOTH_REFUSED_BINDED, + +}; + +#endif /* IDOBindEnum_h */ -- cgit