Test
Test
- Warm up (15 minutes)
- Run (10 meters) heart rate entre 130 and 150 bpm (Repeat 2 times)
- Run (10 meters) heart rate entre 130 and 150 bpm
To install this workout on your Suunto Ambit
You must copy and paste this code in the movescount website in the App Designer.
Watch the tutorial (french commented)
Own Variables to create
NOM | VALEUR |
---|---|
Step | 0 |
TmpDuration | 0 |
TmpDistance | 0 |
Code to copy / paste
RESULT=Step; if (Step==0) { postfix="Warm-u"; if (SUUNTO_DURATION - TmpDuration >= 900) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; TmpDistance=SUUNTO_DISTANCE; } } else if (Step==1 || Step==2) { postfix="Run"; if (SUUNTO_HR < 130) { Suunto.alarmBeep();postfix="HR MIN";} if (SUUNTO_HR > 150) { Suunto.alarmBeep();postfix="HR MAX";} if (SUUNTO_DISTANCE - TmpDistance >= 10/1000) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; TmpDistance=SUUNTO_DISTANCE; } }