您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

iFreshDevice.h 611B

12345678910111213141516171819202122232425
  1. //
  2. // iFreshDevice.h
  3. // iFreshSDK
  4. //
  5. // Created by steven wu on 2021/6/23.
  6. // Copyright © 2021 IOT. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "AiFreshHeader.h"
  10. #import <CoreBluetooth/CoreBluetooth.h>
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface iFreshDevice : NSObject
  13. @property (nonatomic, assign) AiFrushDeviceType deviceType;
  14. @property (nonatomic,copy) NSString *mac; //蓝牙地址
  15. @property (nonatomic, strong) CBPeripheral *peripheral;
  16. @property (nonatomic, strong) NSDictionary *advertisementData;
  17. @property (nonatomic, strong) NSNumber *RSSI;
  18. @end
  19. NS_ASSUME_NONNULL_END