teste
teste
- Ida (1200 meters)
- Alongamento (5 minutes)
- Zona 2 (Repeat 3 times)
- Treino (10 minutes) heart rate entre 160 and 164 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="Ida"; if (SUUNTO_DISTANCE - TmpDistance >= 1200/1000) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; TmpDistance=SUUNTO_DISTANCE; } } else if (Step==1) { postfix="Alonga"; if (SUUNTO_DURATION - TmpDuration >= 300) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; TmpDistance=SUUNTO_DISTANCE; } } else if (Step==2 || Step==3 || Step==4) { postfix="Treino"; if (SUUNTO_HR < 160) { Suunto.alarmBeep();postfix="HR MIN";} if (SUUNTO_HR > 164) { Suunto.alarmBeep();postfix="HR MAX";} if (SUUNTO_DURATION - TmpDuration >= 600) { Suunto.alarmBeep(); Step=Step+1; TmpDuration=SUUNTO_DURATION; TmpDistance=SUUNTO_DISTANCE; } }