diff options
| author | hc <haocheng.xie@respiree.com> | 2026-04-13 15:17:52 +0800 |
|---|---|---|
| committer | hc <haocheng.xie@respiree.com> | 2026-04-13 15:17:52 +0800 |
| commit | d6d9a09d505d11148599a95a5be3e1351edbe0ac (patch) | |
| tree | a5f5891983d1ff207e99f683a5e151519cef4980 /libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h | |
| parent | e4fb9966e762852bf17f21c8406501d42fae0b61 (diff) | |
Local iHealth SDK, device detail screen, iOS event fixes
Diffstat (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h')
| -rwxr-xr-x | libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h | 49 |
1 files changed, 49 insertions, 0 deletions
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 @@ | |||
| 1 | // | ||
| 2 | // IDOBindEnum.h | ||
| 3 | // IDOBluetoothInternal | ||
| 4 | // | ||
| 5 | // Created by 何东阳 on 2019/8/3. | ||
| 6 | // Copyright © 2019 何东阳. All rights reserved. | ||
| 7 | // | ||
| 8 | |||
| 9 | #ifndef IDOBindEnum_h | ||
| 10 | #define IDOBindEnum_h | ||
| 11 | |||
| 12 | /** | ||
| 13 | * 绑定状态枚举 | ||
| 14 | * Binding status enumeration | ||
| 15 | */ | ||
| 16 | typedef NS_ENUM(NSInteger, IDO_BIND_STATUS) { | ||
| 17 | /** | ||
| 18 | * 绑定失败 | ||
| 19 | * Binding failed | ||
| 20 | */ | ||
| 21 | IDO_BLUETOOTH_BIND_FAILED = 0, | ||
| 22 | |||
| 23 | /** | ||
| 24 | * 绑定成功 | ||
| 25 | * Binding succeeded | ||
| 26 | */ | ||
| 27 | IDO_BLUETOOTH_BIND_SUCCESS, | ||
| 28 | |||
| 29 | /** | ||
| 30 | * 已经绑定 | ||
| 31 | * Already bound | ||
| 32 | */ | ||
| 33 | IDO_BLUETOOTH_BINDED, | ||
| 34 | |||
| 35 | /** | ||
| 36 | * 需要授权绑定 | ||
| 37 | * Need authorization binding | ||
| 38 | */ | ||
| 39 | IDO_BLUETOOTH_NEED_AUTH, | ||
| 40 | |||
| 41 | /** | ||
| 42 | * 拒绝绑定 | ||
| 43 | * Rejected binding | ||
| 44 | */ | ||
| 45 | IDO_BLUETOOTH_REFUSED_BINDED, | ||
| 46 | |||
| 47 | }; | ||
| 48 | |||
| 49 | #endif /* IDOBindEnum_h */ | ||
