Skip to content

Commit

Permalink
Support one decimal for pressure value (openhab#13257)
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
  • Loading branch information
jlaur authored and psmedley committed Feb 23, 2023
1 parent 415b791 commit be306c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public enum MeasureClass {
INSIDE_TEMPERATURE(0, 50, 0.3, SIUnits.CELSIUS, "temp", "measure", true),
OUTSIDE_TEMPERATURE(-40, 65, 0.3, SIUnits.CELSIUS, "temp", "measure", true),
HEAT_INDEX(-40, 65, 1, SIUnits.CELSIUS, "", "", false),
PRESSURE(260, 1260, 1, HECTO(SIUnits.PASCAL), "pressure", "measure", true),
PRESSURE(260, 1260, 0.1, HECTO(SIUnits.PASCAL), "pressure", "measure", true),
CO2(0, 5000, 50, Units.PARTS_PER_MILLION, "co2", "measure", true),
NOISE(35, 120, 1, Units.DECIBEL, "noise", "measure", true),
RAIN_QUANTITY(0, 150, 0.1, MILLI(SIUnits.METRE), "sum_rain", "sum_rain", false),
Expand Down

0 comments on commit be306c9

Please sign in to comment.