wjc
2023-06-28 14de918a79943e4961b09fa01ed320c6cad41f2e
HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/common/IHDLClient.java
New file
@@ -0,0 +1,52 @@
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();
}