Skip to main content

遥控设备类

class RemoteDevice

描述: 遥控设备

class RemoteDevice(val id: Int) : IAutelRemoteDevice {

//用于分配连接信息的协议对象
private var protoProtocol: ProtoProtocol? = null

//key管理器对象
private var keyManager: IKeyManager? = null

//状态缓存管理
private var statesCacheManager : IStatesCacheManager? = null

}