From 9c9e04d139c6a437962ef2cfc6b06ec719c5e5db Mon Sep 17 00:00:00 2001 From: nonix <1888777+nonix@users.noreply.github.com> Date: Fri, 9 Apr 2021 17:33:46 +0200 Subject: [PATCH] decode Units --- tasmota/xdrv_13_display.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/tasmota/xdrv_13_display.ino b/tasmota/xdrv_13_display.ino index fe599d7a7..eec88ba8f 100755 --- a/tasmota/xdrv_13_display.ino +++ b/tasmota/xdrv_13_display.ino @@ -695,6 +695,7 @@ void DisplayText(void) cp = get_string(bbuff, sizeof(bbuff), cp); char unit[4]; cp = get_string(unit, sizeof(unit), cp); + decode_te(unit); define_dt_var(num, gxp, gyp, textbcol, textfcol, font, textsize, txlen, time, dp, bbuff, unit); } }