JLChen
2021-08-10 c4b015770e8a29f18e19cc44b3df46c20a4762f4
hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLAppliances/HDLGeothermal/GeothermalBackInfo.java
@@ -49,8 +49,13 @@
            this.gNightTemp = this.curState[6] & 0xFF;
            this.gLeaveTemp = this.curState[7] & 0xFF;
            this.gAutoTemp = this.curState[8] & 0xFF;
            this.gCurrentTemp = this.curState[9] & 0xFF;
//            this.gCurrentTemp = this.curState[9] & 0xFF;
            //当前温度(环境温度) bit7 0=正值 1=负值
            if(((this.curState[9] & 0xFF) >> 7) > 0){
                this.gCurrentTemp = -(this.curState[9] & 0x7F);
            }else{
                this.gCurrentTemp = this.curState[9] & 0x7F;
            }
        }
    }