1
0
mirror of https://github.com/home-assistant/core synced 2024-07-05 17:29:15 +00:00

Use more observations in NWS (#120687)

Use more observations
This commit is contained in:
MatthewFlamm 2024-06-27 13:47:25 -04:00 committed by GitHub
parent 89dfca962f
commit eb2d2ce1b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -78,8 +78,8 @@ HOURLY = "hourly"
OBSERVATION_VALID_TIME = timedelta(minutes=60)
FORECAST_VALID_TIME = timedelta(minutes=45)
# A lot of stations update once hourly plus some wiggle room
UPDATE_TIME_PERIOD = timedelta(minutes=70)
# Ask for observations for last four hours
UPDATE_TIME_PERIOD = timedelta(minutes=240)
DEBOUNCE_TIME = 10 * 60 # in seconds
DEFAULT_SCAN_INTERVAL = timedelta(minutes=10)