Skip to content
This repository has been archived by the owner on Feb 14, 2022. It is now read-only.

Commit

Permalink
increased drastically vibration power for alarms
Browse files Browse the repository at this point in the history
  • Loading branch information
ggoraa committed May 31, 2021
1 parent f2d3016 commit 727fde0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Added:
- Continous beeps and vibrations(exactly every 7,5 seconds) if wheel or/and app were disconnected.
- Settings to change PWM coloring thresholds(when main arcs turns orange or red)

### Changed:
- Increased drastically vibration power for alarms

## [[2.2 Stable] - 29.05.2021](https://github.com/Wheellog/WheelLog.Garmin/releases/tag/2.2)

### Added:
Expand Down
8 changes: 4 additions & 4 deletions src/util/alarms/Alarms.mc
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ module Alarms {
}

var alarmProfile = [
new Attention.VibeProfile(100, 50),
new Attention.VibeProfile(0, 50),
new Attention.VibeProfile(100, 50),
new Attention.VibeProfile(0, 50)
new Attention.VibeProfile(100, 2000),
new Attention.VibeProfile(0, 2000),
new Attention.VibeProfile(100, 2000),
new Attention.VibeProfile(0, 2000)
];
}

0 comments on commit 727fde0

Please sign in to comment.