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.

ELAILinkPeripheral.h 753B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // ELAILinkPeripheral.h
  3. // AILinkBleSDK
  4. //
  5. // Created by LarryZhang on 2023/3/31.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @class CBPeripheral;
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ELAILinkPeripheral : NSObject
  11. @property (nonatomic, strong) CBPeripheral *peripheral;
  12. @property (nonatomic, strong) NSDictionary *advertisementData;
  13. @property (nonatomic, strong) NSNumber *RSSI;
  14. @property (nonatomic, assign) NSTimeInterval timestamp;
  15. @property (nonatomic, copy) NSString *macAddressString;
  16. @property (nonatomic, strong) NSData *macData;
  17. @property (nonatomic, assign) UInt16 cid;
  18. @property (nonatomic, assign) UInt16 vid;
  19. @property (nonatomic, assign) UInt16 pid;
  20. @property (nonatomic, strong) NSUUID *identifier;
  21. @end
  22. NS_ASSUME_NONNULL_END