mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-24 19:26:37 +00:00
Fix ш18тюр
This commit is contained in:
parent
835e3f670c
commit
2f1a4df1f0
20700
firmware.map
20700
firmware.map
File diff suppressed because it is too large
Load Diff
@ -415,6 +415,7 @@ enum UnitNames {
|
|||||||
UNIT_LUX,
|
UNIT_LUX,
|
||||||
UNIT_MICROSECOND,
|
UNIT_MICROSECOND,
|
||||||
UNIT_MILLIAMPERE,
|
UNIT_MILLIAMPERE,
|
||||||
|
UNIT_MILLIMETER_MERCURY,
|
||||||
UNIT_MILLISECOND,
|
UNIT_MILLISECOND,
|
||||||
UNIT_MINUTE,
|
UNIT_MINUTE,
|
||||||
UNIT_PPB,
|
UNIT_PPB,
|
||||||
@ -436,6 +437,7 @@ const char kUnitNames[] PROGMEM =
|
|||||||
D_UNIT_LUX "|"
|
D_UNIT_LUX "|"
|
||||||
D_UNIT_MICROSECOND "|"
|
D_UNIT_MICROSECOND "|"
|
||||||
D_UNIT_MILLIAMPERE "|"
|
D_UNIT_MILLIAMPERE "|"
|
||||||
|
D_UNIT_MILLIMETER_MERCURY "|"
|
||||||
D_UNIT_MILLISECOND "|"
|
D_UNIT_MILLISECOND "|"
|
||||||
D_UNIT_MINUTE "|"
|
D_UNIT_MINUTE "|"
|
||||||
D_UNIT_PARTS_PER_BILLION "|"
|
D_UNIT_PARTS_PER_BILLION "|"
|
||||||
@ -527,8 +529,13 @@ const char kOptionBlinkOff[] PROGMEM = "BLINKOFF|" D_BLINKOFF ;
|
|||||||
#ifdef USE_WEBSERVER
|
#ifdef USE_WEBSERVER
|
||||||
const char HTTP_SNS_TEMP[] PROGMEM = "%s{s}%s " D_TEMPERATURE "{m}%s°%c{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
const char HTTP_SNS_TEMP[] PROGMEM = "%s{s}%s " D_TEMPERATURE "{m}%s°%c{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
||||||
const char HTTP_SNS_HUM[] PROGMEM = "%s{s}%s " D_HUMIDITY "{m}%s%%{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
const char HTTP_SNS_HUM[] PROGMEM = "%s{s}%s " D_HUMIDITY "{m}%s%%{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
||||||
|
#ifndef USE_MMHG
|
||||||
const char HTTP_SNS_PRESSURE[] PROGMEM = "%s{s}%s " D_PRESSURE "{m}%s " D_UNIT_PRESSURE "{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
const char HTTP_SNS_PRESSURE[] PROGMEM = "%s{s}%s " D_PRESSURE "{m}%s " D_UNIT_PRESSURE "{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
||||||
const char HTTP_SNS_SEAPRESSURE[] PROGMEM = "%s{s}%s " D_PRESSUREATSEALEVEL "{m}%s " D_UNIT_PRESSURE "{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
const char HTTP_SNS_SEAPRESSURE[] PROGMEM = "%s{s}%s " D_PRESSUREATSEALEVEL "{m}%s " D_UNIT_PRESSURE "{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
||||||
|
#else
|
||||||
|
const char HTTP_SNS_PRESSURE[] PROGMEM = "%s{s}%s " D_PRESSURE "{m}%s " D_UNIT_MILLIMETER_MERCURY "{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
||||||
|
const char HTTP_SNS_SEAPRESSURE[] PROGMEM = "%s{s}%s " D_PRESSUREATSEALEVEL "{m}%s " D_UNIT_MILLIMETER_MERCURY "{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
||||||
|
#endif
|
||||||
const char HTTP_SNS_ANALOG[] PROGMEM = "%s{s}%s " D_ANALOG_INPUT "%d{m}%d{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
const char HTTP_SNS_ANALOG[] PROGMEM = "%s{s}%s " D_ANALOG_INPUT "%d{m}%d{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
||||||
|
|
||||||
#if defined(USE_MHZ19) || defined(USE_SENSEAIR)
|
#if defined(USE_MHZ19) || defined(USE_SENSEAIR)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user