Prep for generic use

This commit is contained in:
Theo Arends 2024-01-16 17:52:06 +01:00
parent 34b98f5527
commit 5545c82e68
1 changed files with 2 additions and 2 deletions

View File

@ -935,8 +935,8 @@ const float kSpeedConversionFactor[] = {1, // none
// xdrv_02_webserver.ino
#ifdef USE_WEBSERVER
// {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
const char HTTP_SNS_HR[] PROGMEM = "<tr><td colspan=2 style='font-size:2px'><hr/>{e}";
const char HTTP_SNS_HR_THIN[] PROGMEM = "<tr><td colspan=2 style='font-size:2px'><hr size=1/>{e}";
const char HTTP_SNS_HR[] PROGMEM = "<tr><td colspan=2 style='font-size:2px'><hr/></td></tr>";
const char HTTP_SNS_HR_THIN[] PROGMEM = "<tr><td colspan=2 style='font-size:2px'><hr size=1/></td></tr>";
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_MA[] PROGMEM = "{s}%s " D_CURRENT "{m}%*_f " D_UNIT_MILLIAMPERE "{e}";