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.

ELNoiseMeterBleStatusModel.h 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // ELNoiseMeterBleStatusModel.h
  3. // AILinkBleSDK
  4. //
  5. // Created by LarryZhang on 2022/12/21.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ELNoiseMeterBleStatusModel : NSObject
  10. //0x01:频率计权A/C 1
  11. @property (nonatomic, assign) NSInteger frequencyWeightingACValue;
  12. //0x03:测量等级及范围 5
  13. @property (nonatomic, assign) NSInteger measurementLevelValue;
  14. @property (nonatomic, assign) NSInteger measurementLevelMin;
  15. @property (nonatomic, assign) NSInteger measurementLevelMax;
  16. //0x04:Max/Min模式 1
  17. @property (nonatomic, assign) NSInteger maxMinModel;
  18. //0x05:时间加权(Fast/Slow) 1
  19. @property (nonatomic, assign) NSInteger timeWeightedFastSlowModel;
  20. //0x06:数值保持(hold) 3
  21. @property (nonatomic, assign) NSInteger valueHoldModel;
  22. @property (nonatomic, assign) NSInteger valueHoldValue;
  23. //0x07:报警 2
  24. @property (nonatomic, assign) BOOL alarmOn;
  25. @property (nonatomic, assign) BOOL alarmValue;
  26. //0x08:背光 1
  27. @property (nonatomic, assign) BOOL backlightOn;
  28. //0x09:噪音值 3
  29. @property (nonatomic, assign) NSInteger noiseValueStatus;
  30. @property (nonatomic, assign) NSInteger noiseValue;
  31. //0x0B:供电 2
  32. @property (nonatomic, assign) BOOL powerSupplyCharging;
  33. @property (nonatomic, assign) BOOL powerSupplyLow;
  34. @property (nonatomic, assign) NSInteger powerPercent;
  35. @end
  36. NS_ASSUME_NONNULL_END