From 6853e88116620abe0ba738ec716f5b14b0a39e38 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Fri, 23 May 2025 16:38:25 +0200 Subject: [PATCH] Update i18n.h --- tasmota/include/i18n.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasmota/include/i18n.h b/tasmota/include/i18n.h index c73c39a11..a806b1b09 100644 --- a/tasmota/include/i18n.h +++ b/tasmota/include/i18n.h @@ -973,10 +973,11 @@ const float kSpeedConversionFactor[] = {1, // none // {s} = , {m} = , {e} = const char HTTP_SNS_HR[] PROGMEM = "
"; const char HTTP_SNS_HR_THIN[] PROGMEM = "
"; + const char HTTP_SNS_F_TEMP[] PROGMEM = "{s}%s " D_TEMPERATURE "{m}%*_f " D_UNIT_DEGREE "%c{e}"; const char HTTP_SNS_F_VOLTAGE[] PROGMEM = "{s}%s " D_VOLTAGE "{m}%*_f " D_UNIT_VOLT "{e}"; const char HTTP_SNS_F_CURRENT[] PROGMEM = "{s}%s " D_CURRENT "{m}%*_f " D_UNIT_AMPERE "{e}"; -const char HTTP_SNS_F_CURRENT_MA[] PROGMEM = "{s}%s " D_CURRENT "{m}%*_f " D_UNIT_MILLIAMPERE "{e}"; +const char HTTP_SNS_F_POWER[] PROGMEM = "{s}%s " D_POWERUSAGE "{m}%*_f " D_UNIT_WATT "{e}"; const char HTTP_SNS_F_DISTANCE_CM[] PROGMEM = "{s}%s " D_DISTANCE "{m}%1_f " D_UNIT_CENTIMETER "{e}"; const char HTTP_SNS_F_NOX[] PROGMEM = "{s}%s " D_NOX "{m}%*_f" "{e}"; const char HTTP_SNS_F_VOC[] PROGMEM = "{s}%s " D_VOC "{m}%*_f" "{e}";