// // ELNoiseMeterBleStatusModel.h // AILinkBleSDK // // Created by LarryZhang on 2022/12/21. // #import NS_ASSUME_NONNULL_BEGIN @interface ELNoiseMeterBleStatusModel : NSObject //0x01:频率计权A/C 1 @property (nonatomic, assign) NSInteger frequencyWeightingACValue; //0x03:测量等级及范围 5 @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:报警 2 @property (nonatomic, assign) BOOL alarmOn; @property (nonatomic, assign) BOOL alarmValue; //0x08:背光 1 @property (nonatomic, assign) BOOL backlightOn; //0x09:噪音值 3 @property (nonatomic, assign) NSInteger noiseValueStatus; @property (nonatomic, assign) NSInteger noiseValue; //0x0B:供电 2 @property (nonatomic, assign) BOOL powerSupplyCharging; @property (nonatomic, assign) BOOL powerSupplyLow; @property (nonatomic, assign) NSInteger powerPercent; @end NS_ASSUME_NONNULL_END