Skip to content

Commit

Permalink
'e-carlin: update trpks'
Browse files Browse the repository at this point in the history
  • Loading branch information
e-carlin committed Dec 28, 2023
1 parent 78ff973 commit b8241ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/trpks/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ App.prototype.getWorkout = function () {
// is as small as it can be.
WORKOUT = body.w.map(workoutStep => {
return {
custom_target_heart_rate_high: Math.round(HEART_RATE_THRESHOLD * (workoutStep.l / 100)),
custom_target_heart_rate_low: Math.round(HEART_RATE_THRESHOLD * (workoutStep.h / 100)),
custom_target_heart_rate_high: Math.round(HEART_RATE_THRESHOLD * (workoutStep.h / 100)),
custom_target_heart_rate_low: Math.round(HEART_RATE_THRESHOLD * (workoutStep.l / 100)),
duration_time: workoutStep.s
};
});
Expand Down

0 comments on commit b8241ad

Please sign in to comment.