1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // ELNoiseMeterBleSettingModel.h
- // AILinkBleSDK
- //
- // Created by LarryZhang on 2022/12/21.
- //
-
- #import <Foundation/Foundation.h>
-
- NS_ASSUME_NONNULL_BEGIN
-
- @interface ELNoiseMeterBleSettingModel : NSObject
-
- //0x01:频率计权A/C 1
- @property (nonatomic, assign) NSInteger frequencyWeightingACValue;
-
- //0x03:测量等级及范围 6
- @property (nonatomic, assign) NSInteger measurementLevelStatus;
- @property (nonatomic, assign) NSInteger measurementLevelValue;
- @property (nonatomic, assign) NSInteger measurementLevelMin;
- @property (nonatomic, assign) NSInteger measurementLevelMax;
-
- //0x04:Max/Min模式 1
- @property (nonatomic, assign) NSInteger maxMinMode;
-
- //0x05:时间加权(Fast/Slow) 1
- @property (nonatomic, assign) NSInteger timeWeightedFastSlowMode;
-
- //0x06:数值保持(hold) 3
- @property (nonatomic, assign) NSInteger valueHoldMode;
- @property (nonatomic, assign) NSInteger valueHoldValue;
-
- //0x07:报警 3
- @property (nonatomic, assign) BOOL alarmOn;
- @property (nonatomic, assign) BOOL alarmStop;
- @property (nonatomic, assign) NSInteger alarmValue;
-
- //0x08:背光 1
- @property (nonatomic, assign) BOOL backlightOn;
-
- //0x0A:历史
- @property (nonatomic, assign) NSInteger historyStatus;
- @property (nonatomic, strong) NSData *historyData;
-
- //0x0C:设备绑定 1
- @property (nonatomic, assign) NSInteger deviceBindingStatus;
-
- @end
-
- NS_ASSUME_NONNULL_END
|