From 448ebb47be956dab2717028078a4333d109715f4 Mon Sep 17 00:00:00 2001 From: Juraj Skripsky Date: Wed, 22 Nov 2023 08:28:59 +0100 Subject: [PATCH] Set entire-day blocking limit to 3 degrees. --- README.md | 2 +- src/Jobs.fs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a1be969..138eb1c 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Checks weather prognosis for the upcoming night. If temperatures **drop below ze ### Blocking Duration -If the temperature **rises above 5 degrees** during the day, the blocking stops at noon, otherwise it covers the entire day. +If the temperature **rises above 3 degrees** during the day, the blocking stops at noon, otherwise it covers the entire day. ### External Services diff --git a/src/Jobs.fs b/src/Jobs.fs index cf8c161..47255f0 100644 --- a/src/Jobs.fs +++ b/src/Jobs.fs @@ -10,7 +10,7 @@ module Jobs = let private minNightTempLimit = 0.0 let private dayHoursRange = (8, 16) - let private minDayTempLimit = 5.0 + let private minDayTempLimit = 3.0 let private allCourts = [Court1; Court2; Court3] let private morning = TimeOnly(8, 0)