new: ramp up over 60s instead of 10

This commit is contained in:
thiswillbeyourgithub 2022-06-13 21:06:11 +02:00
parent 9ca0760a3b
commit 7ce31f74f1
1 changed files with 3 additions and 3 deletions

View File

@ -593,9 +593,9 @@ on.".format(h, m, _BATTERY_THRESHOLD)})
wasp.system.switch(self)
if self._page == _RINGING:
wasp.system.keep_awake()
# in 10 vibrations, ramp up from subtle to strong:
wasp.watch.vibrator.pulse(duty=max(80 - 6 * self._n_vibration, 20),
ms=min(100 + 40 * self._n_vibration, 500))
# in 60 vibrations, ramp up from subtle to strong:
wasp.watch.vibrator.pulse(duty=max(80 - 1 * self._n_vibration, 20),
ms=min(100 + 6 * self._n_vibration, 500))
self._n_vibration += 1
elif self._track_HR_once:
wasp.watch.hrs.enable()