blob: ce76451549eaabbc201e797e53037c7584161e8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//
// NT13BMacroFile.h
// iHealthSDKStatic
//
// Created by user on 2019/9/20.
// Copyright © 2019 ihealthSDK. All rights reserved.
//
#ifndef NT13BMacroFile_h
#define NT13BMacroFile_h
#define NT13BDiscover @"NT13BDiscover"
#define NT13BConnectFailed @"NT13BConnectFailed"
#define NT13BConnectNoti @"NT13BConnectNoti"
#define NT13BDisConnectNoti @"NT13BDisConnectNoti"
/**
TemperatureUnit
*/
typedef NS_ENUM(NSInteger, NT13BTemperatureUnit) {
/// NotDefined
NT13BTemperatureUnit_NotDefined = 0,
/// Degrees Celsius
NT13BTemperatureUnit_C,
/// Fahrenheit
NT13BTemperatureUnit_F,
};
typedef void (^DisposeMeasureBlock)(NSDictionary *result);
typedef void (^DisposeDisconnectBlock)(BOOL result);
#endif /* NT13BMacroFile_h */
|