AIFit-SDK for ble body fat scale
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

AppUser.h 494B

123456789101112131415161718192021222324252627
  1. //
  2. // AppUser.h
  3. // AIFit-Demo
  4. //
  5. // Created by steven wu on 2019/12/19.
  6. // Copyright © 2019 wujia121. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface AppUser : NSObject
  11. @property (nonatomic, assign) float weightKg;
  12. /**Be Noted:
  13. male: 1 female: 2
  14. */
  15. @property (nonatomic, assign) int sex;
  16. @property (nonatomic, assign) int age;
  17. @property (nonatomic, assign) int height;
  18. @property (nonatomic, assign) int adc;
  19. @end
  20. NS_ASSUME_NONNULL_END