// // ELRemoteControlBleManager.h // Elink // // Created by cliCk on 2019/7/2. // Copyright © 2019 iot_iMac. All rights reserved. // #import #import "ELRemoteControlBleHeader.h" #import "ELBluetoothManager.h" @class ELPeripheralModel; NS_ASSUME_NONNULL_BEGIN @protocol ELRemoteControlBleDelegate @optional /** 回调蓝牙状态 */ - (void)remoteControlManagerUpdateState:(ELBluetoothState )state; /** 回调所有遥控器设备 */ - (void)remoteControlManagerScanDevices:(NSArray *)deviceList; @end @interface ELRemoteControlBleManager : ELBluetoothManager @property (nonatomic,weak) id remoteControlDelegate; + (ELRemoteControlBleManager *)shareManager; /** APP下发控制命令 */ - (void)sendRemoreControlData:(RemoteControlType )type; @end NS_ASSUME_NONNULL_END