From af3480f93219c486f51d6aeac5e910dac8f9c382 Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期四, 19 三月 2020 15:51:25 +0800 Subject: [PATCH] 2020-03-19 1.HDLDiyImageVerticalSeekBar 进度修改为从下到上。 --- hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/Core/HDLCommand.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/Core/HDLCommand.java b/hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/Core/HDLCommand.java index 129a88e..2ed4b1f 100644 --- a/hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/Core/HDLCommand.java +++ b/hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/Core/HDLCommand.java @@ -405,9 +405,9 @@ * 鎺у埗鍦扮儹妯″潡娓╁害 * * @param info - * @param state 2020-03-15 + * @param tempInt 2020-03-15 */ - public static void geothermalCtrlTemp(final AppliancesInfo info, int state) { + public static void geothermalCtrlTemp(final AppliancesInfo info, int tempInt) { // HDLDeviceManager.isGeothermalCtrlSuccess = false; HDLDeviceManager.setDeviceCtrlSuccessStateWithInfo(info, false); if (geothermalCtrlFailTimer != null) { @@ -415,7 +415,7 @@ geothermalCtrlFailTimer = null; } if (info.getBigType() == Configuration.GEOTHERMAL_BIG_TYPE) { - byte[] sendbytes = GeothermalParser.getGeothermalAddByteTemp(info, state); + byte[] sendbytes = GeothermalParser.getGeothermalAddByteTemp(info, tempInt); addSendData(info, sendbytes, Configuration.CONTROL); geothermalCtrlFailTimer = new Timer(); -- Gitblit v1.8.0