new: gradual wake by default over 10m instead of 15

This commit is contained in:
thiswillbeyourgithub 2022-05-08 13:54:16 +02:00
parent db9350dffc
commit c78c0b12d5
1 changed files with 2 additions and 2 deletions

View File

@ -70,9 +70,9 @@ _BATTERY_THRESHOLD = const(15)
_ANTICIPATE_ALLOWED = const(2400)
# number of seconds SleepTk can wake you up before the alarm clock you set
# only relevant if smart_alarm is enabled. (default: 2400)
_GRADUAL_WAKE = array("H", [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 15])
_GRADUAL_WAKE = array("H", [1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
# nb of minutes before alarm to send a tiny vibration, designed to wake
# you more gently. (default: array("H", [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 15]) )
# you more gently. (default: array("H", [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) )
_TIME_TO_FALL_ASLEEP = const(14)
# minutes you take to fall asleep (default: 14, according to https://sleepyti.me/)
_CYCLE_LENGTH = const(90)