From 89482016db49f38c7ede206c15784fcf6b1dcefa Mon Sep 17 00:00:00 2001 From: Ulrich Meine <145987006+Scorgan01@users.noreply.github.com> Date: Sun, 7 Jun 2026 01:22:29 +0200 Subject: [PATCH] Align unit name for temperature in OBPFormatter between --- lib/obp60task/OBP60Formatter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/obp60task/OBP60Formatter.cpp b/lib/obp60task/OBP60Formatter.cpp index 9eb3916..d35bc96 100644 --- a/lib/obp60task/OBP60Formatter.cpp +++ b/lib/obp60task/OBP60Formatter.cpp @@ -519,11 +519,11 @@ FormattedData formatValue(GwApi::BoatValue *value, CommonData &commondata, bool } if (String(tempFormat) == "C") { temp = temp - 273.15; - result.unit = "C"; + result.unit = "Deg C"; } else if (String(tempFormat) == "F") { temp = (temp - 273.15) * 9 / 5 + 32; - result.unit = "F"; + result.unit = "Deg F"; } else{ result.unit = "K";