Interval 2x3
2min speed, 3 min rest
- warm-up (10 minutes)
- interval (Repeat 9 times)
- speed-up (2 minutes) speed between 11 and 13 km/h
- Recover (3 minutes)
- Slow-down (5 minutes)
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 |
Code to copy / paste
RESULT=Step; if (Step==0) { postfix="warm-u"; if (SUUNTO_DURATION - TmpDuration >= 600) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; } } else if (Step==1 || Step==3 || Step==5 || Step==7 || Step==9 || Step==11 || Step==13 || Step==15 || Step==17) { postfix="speed-"; if (SUUNTO_PACE < 11) { Suunto.alarmBeep();postfix="SP MIN";} if (SUUNTO_PACE > 13) { Suunto.alarmBeep();postfix="SP MAX";} if (SUUNTO_DURATION - TmpDuration >= 120) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; } } else if (Step==2 || Step==4 || Step==6 || Step==8 || Step==10 || Step==12 || Step==14 || Step==16 || Step==18) { postfix="Recove"; if (SUUNTO_DURATION - TmpDuration >= 180) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; } } else if (Step==19) { postfix="Slow-d"; if (SUUNTO_DURATION - TmpDuration >= 300) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; } }