mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 15:11:59 +01:00
[netatmo] No restriction on max value for rain quantity (#13620)
* [netatmo] No max value for rain quantity Fix #13619 Signed-off-by: Laurent Garnier <lg.hc@free.fr>
This commit is contained in:
parent
b6c073d088
commit
becb30187e
@ -84,7 +84,7 @@ public class NetatmoConstants {
|
||||
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),
|
||||
RAIN_QUANTITY(0, Double.MAX_VALUE, 0.1, MILLI(SIUnits.METRE), "sum_rain", "sum_rain", false),
|
||||
RAIN_INTENSITY(0, 150, 0.1, Units.MILLIMETRE_PER_HOUR, "", "", false),
|
||||
WIND_SPEED(0, 160, 1.8, SIUnits.KILOMETRE_PER_HOUR, "", "", false),
|
||||
WIND_ANGLE(0, 360, 5, Units.DEGREE_ANGLE, "", "", false),
|
||||
|
Loading…
Reference in New Issue
Block a user