You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,36 @@
2
2
Changelog
3
3
=========
4
4
5
+
Version 6.0.5 (2025-11-21)
6
+
==========================
7
+
8
+
Fixed
9
+
-----
10
+
11
+
- **CRITICAL Temperature Conversion Bug**: Corrected temperature conversion formula for 8 sensor fields that were displaying values ~100°F higher than expected. The v6.0.4 change incorrectly used division by 5 (pentacelsius) instead of division by 10 (decicelsius) for these fields:
12
+
13
+
- ``tank_upper_temperature`` - Water tank upper sensor
14
+
- ``tank_lower_temperature`` - Water tank lower sensor
15
+
- ``discharge_temperature`` - Compressor discharge temperature (refrigerant)
16
+
- ``suction_temperature`` - Compressor suction temperature (refrigerant)
17
+
- ``evaporator_temperature`` - Evaporator coil temperature (refrigerant)
18
+
- ``ambient_temperature`` - Ambient air temperature at heat pump
- Suction, evaporator, ambient: Now showing physically realistic values
27
+
28
+
**Technical details**: Changed from ``PentaCelsiusToF`` (÷5) back to ``DeciCelsiusToF`` (÷10). The correct formula is ``(raw_value / 10.0) * 9/5 + 32``.
29
+
30
+
Changed
31
+
-------
32
+
33
+
- **Documentation**: Updated ``data_conversions.rst`` and ``device_status.rst`` to reflect correct ``DeciCelsiusToF`` conversion for refrigerant circuit and tank temperature sensors
- **Upper tank sensor temperature**. Indicates stratification - hot water at top for quick delivery. Typically hottest point in tank.
103
103
* - ``tankLowerTemperature``
104
-
- PentaCelsiusToF
104
+
- DeciCelsiusToF
105
105
- °F
106
106
- **Lower tank sensor temperature**. Indicates bulk tank temperature and heating progress. Typically cooler than upper sensor.
107
107
@@ -121,27 +121,27 @@ These temperatures monitor the heat pump refrigerant circuit health and performa
121
121
- Display Unit
122
122
- Description
123
123
* - ``dischargeTemperature``
124
-
- PentaCelsiusToF
124
+
- DeciCelsiusToF
125
125
- °F
126
126
- **Compressor discharge temperature**. Temperature of refrigerant exiting the compressor. Typically 120-180°F. High values indicate high system pressure; low values indicate efficiency issues.
127
127
* - ``suctionTemperature``
128
-
- PentaCelsiusToF
128
+
- DeciCelsiusToF
129
129
- °F
130
130
- **Compressor suction temperature**. Temperature of refrigerant entering the compressor. Typically 40-60°F. Affects superheat calculation.
131
131
* - ``evaporatorTemperature``
132
-
- PentaCelsiusToF
132
+
- DeciCelsiusToF
133
133
- °F
134
134
- **Evaporator coil temperature**. Where heat is extracted from ambient air. Typically 20-50°F. Lower outdoor air temperature reduces evaporator efficiency.
135
135
* - ``ambientTemperature``
136
-
- PentaCelsiusToF
136
+
- DeciCelsiusToF
137
137
- °F
138
138
- **Ambient air temperature** measured at heat pump inlet. Directly affects system performance. At freezing (32°F), heat pump efficiency drops significantly.
139
139
* - ``targetSuperHeat``
140
-
- PentaCelsiusToF
140
+
- DeciCelsiusToF
141
141
- °F
142
142
- **Target superheat setpoint**. Desired temperature difference between suction and evaporator ensuring complete refrigerant vaporization. Typically 10-20°F.
143
143
* - ``currentSuperHeat``
144
-
- PentaCelsiusToF
144
+
- DeciCelsiusToF
145
145
- °F
146
146
- **Measured superheat value**. Actual temperature difference. Deviation from target indicates EEV (Electronic Expansion Valve) control issues.
0 commit comments