Skip to content

Commit 553c539

Browse files
committed
update(smart_thermostat): change rounding decimal of autotune_buffer_full.
1 parent 01cb0fc commit 553c539

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

custom_components/smart_thermostat/climate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ def device_state_attributes(self):
463463
"autotune_tuning_rule": self._autotune,
464464
"autotune_set_point": self._pidAutotune.set_point,
465465
"autotune_peak_count": self._pidAutotune.peak_count,
466-
"autotune_buffer_full": round(self._pidAutotune.buffer_full, 1),
466+
"autotune_buffer_full": round(self._pidAutotune.buffer_full, 2),
467467
"autotune_buffer_length": self._pidAutotune.buffer_length,
468468
"Kp": self._kp,
469469
"Ki": self._ki,

0 commit comments

Comments
 (0)