Andar - correr 30'
Andar - correr.
- Correr - Andar (Repeat 6 times)
- Andar (2 minutes)
- Correr (3 minutes) pace between 6:00 and 6:30 min:s/km
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 || Step==2 || Step==4 || Step==6 || Step==8 || Step==10) { postfix="Andar"; if (SUUNTO_DURATION - TmpDuration >= 120) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; } } else if (Step==1 || Step==3 || Step==5 || Step==7 || Step==9 || Step==11) { postfix="Correr"; if (SUUNTO_PACE > 6.50) { Suunto.alarmBeep();postfix="PC MIN";} if (SUUNTO_PACE < 6.00) { Suunto.alarmBeep();postfix="PC MAX";} if (SUUNTO_DURATION - TmpDuration >= 180) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; } }