iOS AILinkBleSDK - 蓝牙SDK
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ELEightScaleAlgorithmTool.h 924B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ELEightScaleAlgorithmTool.h
  3. // Elink
  4. //
  5. // Created by iot_user on 2020/6/18.
  6. // Copyright © 2020 iot_iMac. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class ELEightScaleRecordModel;
  10. @class ELEightScaleBleDataModel;
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface ELEightScaleAlgorithmTool : NSObject
  13. /// 根据秤测量的阻抗数据调用算法解析出其他体脂数据
  14. /// @param dataModel 八电极秤测量的数据
  15. /// @param sex 女性传0,男性传1
  16. /// @param height 身高,单位cm
  17. /// @param age 年龄
  18. +(ELEightScaleRecordModel *)getRecordModelWithBleDataModel:(ELEightScaleBleDataModel *)dataModel withUserSex:(NSInteger)sex height:(NSInteger)height age:(NSInteger)age;
  19. //新算法
  20. +(ELEightScaleRecordModel *)getNewRecordModelWithBleDataModel:(ELEightScaleBleDataModel *)dataModel withUserSex:(NSInteger)sex height:(NSInteger)height age:(NSInteger)age;
  21. @end
  22. NS_ASSUME_NONNULL_END