From b72d83af4c3d2d8dbc2de41557e0dda8f0492a30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20=C3=96hrstr=C3=B6m?= Date: Thu, 5 May 2022 20:45:10 +0200 Subject: [PATCH] Fix typo in hydroclima driver. --- src/driver_hydroclima.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver_hydroclima.cc b/src/driver_hydroclima.cc index c0ea93a..9dd4aae 100644 --- a/src/driver_hydroclima.cc +++ b/src/driver_hydroclima.cc @@ -171,7 +171,7 @@ namespace if (i+1 >= len) return; average_heater_temperature_last_month_ = toTemperature(bytes[i+1], bytes[i]); - info = renderJsonOnlyDefaultUnit("average_temperature_heater_last_month"); + info = renderJsonOnlyDefaultUnit("average_heater_temperature_last_month"); t->addSpecialExplanation(i+offset, 2, KindOfData::CONTENT, Understanding::FULL, "*** %02X%02X (%s)", bytes[i], bytes[i+1], info.c_str()); i+=2;