iOS AILinkBleSDK - 蓝牙SDK
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.

ELFasciaGunBleDataModel.h 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // ELFasciaGunBleDataModel.h
  3. // AILinkBleSDK
  4. //
  5. // Created by LarryZhang on 2022/1/15.
  6. // Copyright © 2022 IOT. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(UInt8, FasciaGunChargingStatus);
  11. @interface ELFasciaGunBleDataModel : NSObject
  12. @property (nonatomic, assign) BOOL started;
  13. @property (nonatomic, assign) UInt16 workingTime;
  14. @property (nonatomic, assign) UInt8 currentGear;
  15. @property (nonatomic, assign) UInt8 maxGear;
  16. @property (nonatomic, assign) BOOL countdownEnabled;
  17. @property (nonatomic, assign) UInt16 countdownTime;
  18. @property (nonatomic, assign) UInt8 pressureValue;
  19. @property (nonatomic, assign) FasciaGunChargingStatus chargingStatus;
  20. @property (nonatomic, assign) UInt8 batteryLevel;
  21. @end
  22. typedef NS_ENUM(UInt8, FasciaGunChargingStatus) {
  23. FasciaGunChargingStatus_Uncharged = 0x00,
  24. FasciaGunChargingStatus_Charging = 0x01,
  25. FasciaGunChargingStatus_Full = 0x02,
  26. FasciaGunChargingStatus_Unsupported = 0xFF,
  27. };
  28. NS_ASSUME_NONNULL_END