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.

ELDemoScanVC.h 518B

12345678910111213141516171819202122232425
  1. //
  2. // ELDemoScanVC.h
  3. // AILinkBleSDK_Example
  4. //
  5. // Created by LarryZhang on 2022/12/12.
  6. // Copyright © 2022 zhengzida. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class ELAILinkPeripheral, ELDemoDeviceModel;
  11. @interface ELDemoScanVC : UIViewController
  12. @property (nonatomic, copy) NSArray<NSNumber *> *cids;
  13. @property (nonatomic, copy) void (^selectedBlock)(ELAILinkPeripheral *per);
  14. @property (nonatomic, strong) ELDemoDeviceModel *demoDeviceModel;
  15. @end
  16. NS_ASSUME_NONNULL_END