package com.hdl.sdk.link.common; /** * Created by Tong on 2021/9/28. * 包含所有操作 */ public interface IHDLClient { /** * 搜索网关 */ void searchGateway(); /** * 获取网关详细信息 */ void getGatewayInfo(); /** * 获取设备列表 */ void getDeviceList(); /** * 获取功能列表 */ void getFunctionList(); /** * 获取功能属性 */ void getFunctionAttribute(); /** * 设备控制 */ void deviceControl(); /** * 获取设备状态 */ void getDeviceStatus(); /** * 改变设备状态 */ void changeDeviceStatus(); }