123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- //
- // ELEightScaleSDKHeader.h
- // Elink
- //
- // Created by iot_user on 2020/6/3.
- // Copyright © 2020 iot_iMac. All rights reserved.
- //
-
- #ifndef ELEightScaleSDKHeader_h
- #define ELEightScaleSDKHeader_h
- #import "ELSDKHeader.h"
-
-
- typedef NS_ENUM(NSUInteger, EightScaleWeightType) {
- EightScaleWeightTypeAuto = 0x01,//Real-time weight(实时体重)
- EightScaleWeightTypeStable = 0x02,//Stabilize weight(稳定体重)
- };
-
- //Weight data(体重数据)
- typedef struct EightScaleWeightStruct{
- //Weight type(体重类型)
- EightScaleWeightType weightType;
- //Original weight(体重原始值)
- int weight;
- //Weight decimal point(体重小数点)
- int point;
- //unit(单位)
- ELDeviceWeightUnit unit;
- } EightScaleWeightStruct;
-
- //Impedance measurement process(阻抗测量过程)
- typedef NS_ENUM(NSUInteger, EightScaleAdcTestStep) {
- EightScaleAdcTestStepTesting = 0x01,//Measuring impedance(测阻抗中)
- EightScaleAdcTestStepFailure = 0x02,//Impedance measurement failed(测阻抗失败)
- //The impedance measurement is successful, bring the impedance data, and use the APP algorithm (APP will calculate according to the algorithm identification of byte7)
- //测阻抗成功,带上阻抗数据,并使用APP算法(APP 会根据byte7的算法标识进行计算)
- EightScaleAdcTestStepSuccess = 0x03,
- EightScaleAdcTestStepTestEnd = 0x04,//End of impedance measurement.(测阻抗结束。)
- };
- // 阻抗类型
- typedef NS_ENUM(NSUInteger, EightScaleAdcType) {
- EightScaleAdcTypeFeet = 0x00,//Two-foot impedance(双脚阻抗)
- EightScaleAdcTypeHands = 0x01,//Hands resistance(双手阻抗)
- EightScaleAdcTypeLeftHand = 0x02,//Left hand impedance(左手阻抗)
- EightScaleAdcTypeRightHand = 0x03,//Right hand impedance(右手阻抗)
- EightScaleAdcTypeLeftFoot = 0x04,//Left foot impedance(左脚阻抗)
- EightScaleAdcTypeRightFoot = 0x05,//Right foot impedance(右脚阻抗)
- EightScaleAdcTypeLWholeBody = 0x06,//Left whole body impedance(左全身阻抗)
- EightScaleAdcTypeRWholeBody = 0x07,//Right whole body impedance(右全身阻抗)
- EightScaleAdcTypeRHand_LFoot = 0x08,//Impedance of right hand and left foot(右手左脚阻抗)
- EightScaleAdcTypeLHand_RFoot = 0x09,//Impedance of left hand and right foot(左手右脚阻抗)
- EightScaleAdcTypeTrunk = 0x0A,//Torso impedance(躯干阻抗)
- };
- //Impedance data(阻抗数据)
- typedef struct EightScaleAdcStruct{
- //Impedance measurement stage(阻抗测量阶段)
- EightScaleAdcTestStep adcTestStep;
- //Impedance type(阻抗类型)
- EightScaleAdcType adcType;
- //Impedance value(阻抗值)
- unsigned int adc;
- //Algorithm Id(算法Id)
- int algorithmID;
-
- }EightScaleAdcStruct;
-
- //Heart rate measurement process(心率测量过程)
- typedef NS_ENUM(NSUInteger, EightScaleHeartRateTestStep) {
- EightScaleHeartRateTestStepTesting = 0x01,//Heart rate measurement(心率测量中)
- EightScaleHeartRateTestStepSuccess = 0x02,//Successful heart rate measurement, bring heart rate data(测心率成功,带上心率数据)
- EightScaleHeartRateTestStepFailure = 0x03,//Failed to measure heart rate(测心率失败)
- };
-
- //Temperature data(温度数据)
- typedef struct EightScaleTempStruct{
- //Positive and negative temperature(正负温度)
- BOOL negative;
- //temperature(温度)
- int temp;
- //Decimal point(小数点)
- int point;
- //unit(单位)
- ELDeviceTemperatureUnit unit;
- }EightScaleTempStruct;
-
-
- typedef NS_ENUM(NSUInteger, EightScaleSwitchUnitResult) {
- EightScaleSwitchUnitResultSuccess =0,//Successful operation(操作成功)
- EightScaleSwitchUnitResultFailure =1,//operation failed(操作失败)
- EightScaleSwitchUnitResultOperation =2,//In operation(正在操作中)
- };
-
- //Measurement status(测量状态)
- typedef NS_ENUM(NSUInteger, EightScaleTestStatus) {
- EightScaleTestStatusIdle = 0,//Idle(闲置)
- EightScaleTestStatusTesting = 1,//Testing(测量中)
- EightScaleTestStatusComplete = 2,//Complete(测量完成)
- EightScaleTestStatusError = 3,//Error(测量出错)
- };
-
- #endif /* ELEightScaleSDKHeader_h */
|