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.

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