grandfather-clock: adjust default meridian timings

master
June Bennison 2025-01-30 22:08:37 +11:00
parent 762219dca2
commit 434b7848b2
2 changed files with 5 additions and 5 deletions

View File

@ -12,10 +12,10 @@ Defaults:
- The attention buzz for the hour chime is 1000ms long.
- The buzz for each hour count is 250ms long.
- The buzz for each fraction count is 250ms long.
- The widget will count out 4 fractions of an hour (15 min interval).
- The widget will count out 4 fractions of an hour (a 15 min interval).
- The time between count buzzes is 500ms.
- The meridian buzzes are 100ms long.
- The time between meridian buzzes is 50ms long.
- The meridian buzzes are 50ms long.
- The time between meridian buzzes is 300ms.
## Requests

View File

@ -8,8 +8,8 @@
const fraction_count_buzz_ms = 250;
const fractions_of_hour = 4; // 4 = 15min intervals, 6 = 10min intervals
const wait_ms = 500;
const meridian_buzz_ms = 100;
const meridian_buzz_wait_ms = 50;
const meridian_buzz_ms = 50;
const meridian_buzz_wait_ms = 300;
let date;
let fractionMs = 3600000 / fractions_of_hour;