1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-02 00:20:30 +01:00

Update rainmachine solar radiation to reflect it is per day, not per … (#166040)

This commit is contained in:
John Meyers
2026-03-26 09:11:12 -04:00
committed by GitHub
parent 299c6556bb
commit 6c864a1725
3 changed files with 4 additions and 4 deletions

View File

@@ -102,7 +102,7 @@ CV_WX_DATA_VALID_TEMP_RANGE = vol.All(vol.Coerce(float), vol.Range(min=-40.0, ma
CV_WX_DATA_VALID_RAIN_RANGE = vol.All(vol.Coerce(float), vol.Range(min=0.0, max=1000.0))
CV_WX_DATA_VALID_WIND_SPEED = vol.All(vol.Coerce(float), vol.Range(min=0.0, max=65.0))
CV_WX_DATA_VALID_PRESSURE = vol.All(vol.Coerce(float), vol.Range(min=60.0, max=110.0))
CV_WX_DATA_VALID_SOLARRAD = vol.All(vol.Coerce(float), vol.Range(min=0.0, max=5.0))
CV_WX_DATA_VALID_SOLARRAD = vol.All(vol.Coerce(float), vol.Range(min=0.0, max=100.0))
SERVICE_NAME_PAUSE_WATERING = "pause_watering"
SERVICE_NAME_PUSH_FLOW_METER_DATA = "push_flow_meter_data"

View File

@@ -131,9 +131,9 @@ push_weather_data:
selector:
number:
min: 0
max: 5
max: 100
step: 0.1
unit_of_measurement: "MJ/m²/h"
unit_of_measurement: "MJ/m²/d"
et:
selector:
number:

View File

@@ -175,7 +175,7 @@
"name": "Measured rainfall"
},
"solarrad": {
"description": "Current solar radiation (MJ/m²/h).",
"description": "Daily solar radiation (MJ/m²/d).",
"name": "Solar radiation"
},
"temperature": {