Skip to content

Commit

Permalink
Set entire-day blocking limit to 3 degrees.
Browse files Browse the repository at this point in the history
  • Loading branch information
jskripsky committed Nov 22, 2023
1 parent dfd50c2 commit 448ebb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/Jobs.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 448ebb4

Please sign in to comment.