App Series por intervalos a medida
Hola a todos.
Veo que muchos preguntáis por apps para hacer series.
Yo conozco una web que te permite generar el entrenamiento que se quiera, dándote el código para crear la app.
Es bastante sencillo, y además con un video tutoría
www . betatrailrunner . com / generator
Suerte!!
Siento poner así el enlace, pero al ser mi primer post, no me deja por protección antispam.
Esta la app que intento modificar

Originalmente escrito por
joakiss
Ok, pon por aquí el código y así me hago una idea.
Esta es la app que intento modificar. Va todo bien hasta que llego a la linea de cada 15 minutos beber y cada 50 minutos gel.
Por si quieres verlo mejor es esta ( 3IN1 - HR (75-80%)
Multideporte, Entrenamiento construida por jfcalypso)
te dejo el codico aqui:
/* While in sport mode do this once per second
************************************************** **********************************************
* If you love, can you click on the bottom of the application page, thank you *
* *
* Si vous aimez, pouvez-vous cliquer sur le bas de la page de l'application, merci *
************************************************** **********************************************
3IN1------------------------------------------------------------------------------------------------
- The Heart Rate : expressed in % Karvonen (75-80%) - READING = %HR
in
- Every 15 min : beeper of 30 sec for recall of drink (WATER) - READING = H2O
- Every 30 min : beeper of 30 sec for recall of gel energy and drink - READING = GEL
----------------------------------------GENERAL INFORMATIONS-----------------------------------------
- Reading three information
- Calculation based on the average of previous 5 sec
- Remember to set your heart rate properly (HR Min and Max) in profile
- Using variables HR (75 to 80% Karvonen), to change the values, create a copy and modify
----------------------------------------------USING--------------------------------------------------
- Choose your target area on "START-STOP" and then "NEXT" to select and star your target
- For your warm-up is complete, press "START-STOP" to start,
and then click "LIGHT LOCK" to lock the buttons.
- If the pace is less than 75% HR,
* "Double beep" every 6 seconds and reading "ACC" (you must accelerate)
- If the pace is between 75 and 80% HR,
* (good pace, well) reading "OK"
- If the pace is between 80% and 83% HR,
* "Double beep" every 3 seconds and reading "SLO" (your slow)
- If the pace is greater than 83% HR,
* "Double Beep" every 2 seconds and reading display "STP "" STP" (stop your pace, you're going too fast)
- To stop your exercise, unlock on "LIGHT LOCK" and long press: "START-STOP"
3EN1-------------------------------------------------------------------------------------------------
- La Frequence Cardiaque : exprimee en % Karvonen (75-80%) %FC LECTURE = %HR
et
- Toutes les 15 min : beeper de 30 sec pour rappel de boisson (EAU)- LECTURE = H2O
- Toutes les 30 min : beeper de 30 sec pour rappel de gel energetique et boisson - LECTURE = GEL
-----------------------------------INFORMATIONS GENERALES--------------------------------------------
- Lecture de trois informations
- Calcul base sur la moyenne des 5 sec precedentes
- Pensez a regler correctement votre frequence cardiaque (FC Min et Max) dans parametres corporels
- Utilisation des variables FC (75 a 80% karvonen), pour modifier les valeurs, creer une copie et modifier.
------------------------------------------UTILISATION------------------------------------------------
- Appuyer sur "START-STOP" et ensuite sur "NEXT" pour selectionner votre exercice
- Des que votre echauffement est terminer, pressez sur "START-STOP" pour debuter,
puis sur "LIGHT LOCK" pour verrouiller les boutons
- Si le rythme est inferieur a 75% FC, (HR)
* "Double Bipper" toutes les 6 secondes et lecture "ACC" (vous devez accelerer)
- Si le rythme est entre 75 et 80% FC, (HR)
* (bon rythme, bien) lecture "OK"
- Si le rythme est entre 80% et 83% FC, (HR)
* "Double Bipper" toutes les 3 secondes et lecture "SLO" (ralentissez votre rythme, slow)
- Si le rythme est superieur a 83% FC, (HR)
* "Double Bipper" toutes les 2 secondes et lecture ecran "STP "" STP" (arreter votre rythme, vous allez trop vite)
- Pour arreter votre exercice, deverrouiller "LIGHT LOCK" et appuyer longuement sur: "START-STOP" */
/*----------------------INFORMATIONS HR/FC % KARVONEN - VITESSE/SPEED-------------------------------*/
RESULT=((SUUNTO_HR_AVG[5]-SUUNTO_USER_REST_HR)/(SUUNTO_USER_MAX_HR-SUUNTO_USER_REST_HR))*100;postfix="%HR";
if(RESULT<75)
/*Vous devez accelerer - You must accelarate - "ACC" */
{prefix="ACC";if(Suunto.mod(SUUNTO_TIME,6)==0){Suu nto.alarmBeep();}}
if (RESULT>=75&&RESULT<=80)
/*Bon rythme, bien - Good pace - "OK" */
{prefix="OK";}
if(RESULT>80&&RESULT<=83)
/*Ralentissez votre rythme - Slow down your pace - "SLO" */
{prefix="SLO";if(Suunto.mod(SUUNTO_TIME,3)==0){Suu nto.alarmBeep();}}
if(RESULT>83)
/*Arreter votre rythme vous allez trop vite
Stop your pace, you're going too fast - "STP "" STP*/
{prefix="STP";postfix="STP";if(Suunto.mod(SUUNTO_T IME,2)==0){Suunto.alarmBeep();}}
/*-----------RAPPEL BOISSON EAU TOUTES LES 15'----------REMINDER DRINK WATER ALL 0:15---------------*/
if (SUUNTO_DURATION>=900)
{if(Suunto.mod(SUUNTO_DURATION,900)<30)
{prefix="H2O";RESULT=0;postfix="H2O";Suunto.alarmB eep();}}
/*----RAPPEL COLLATION - GEL ENERGETIQUE TOUTES LES 30'----REMINDER SNACK - GEL ENERGY ALL 0:30-----*/
if (SUUNTO_DURATION>=1800)
{if(Suunto.mod(SUUNTO_DURATION,1800)<30)
{prefix="GEL";RESULT=0;postfix="H2O";Suunto.alarmB eep();}}
Gracias