You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BLEUser.h 517B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // InetBleSDK
  3. //
  4. // Created by iot_wz on 2018/9/1.
  5. // Copyright © 2018年 iot_wz. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface BLEUser : NSObject
  9. /**
  10. eg: male:1, femail: 2
  11. */
  12. @property (nonatomic, assign) int userSex;
  13. /**
  14. eg: 26
  15. */
  16. @property (nonatomic, assign) int userAge;
  17. /**
  18. eg: 175
  19. */
  20. @property (nonatomic, assign) int userHeight;
  21. /**
  22. eg: 56.5kg
  23. */
  24. @property (nonatomic, assign) float userWeight;
  25. /**
  26. eg: 560
  27. */
  28. @property (nonatomic, assign) int userAdc;
  29. @end