Ambit Apps Compilation
-
Well, it works but still have a problem, @sebchastang.
Now I changed the intervals and gave them another name, Jens1 and Jens2. But I can’t click on them in suuntolink, nothing happens.
There are two trainings in the index.json-file, Jens1 and Jens2, which begins like this:
[{“ruleId”:11000001,“name”: “Jens1”,“categoryId”:0,“activityId”:1,“userCount”:1,“binary”:[73,65,77,82,85,76
But as you see in the screenshot suuntolink shows them, but I can’t choose them, theire are still the old ones to choose: Ambit App, Ambit App2 and again Ambit App. These 3 apps even still apear when I change the name of the index.json-file, so there should me nothing. But only in Suunto Apps I see Select Suunto App (0), but the three old apps are still down there. What I’m doing wrong?
-
Sorry, another update: I can choose Jens2, but not Jens1. It’s there, but nothing happens if I click on it. Uff…
edit: Ok, this is fixed. The reason was quite simply and funny: I generated two identical workouts, only with diferent names. No it worked. Sorry for pasting such a lot of problemas, but maybe it will help other users.
-
amazing!
It took me 10 months to find this?!
not the most straight fwr way to transfer Humango intervals to my Ambit3, but I’ll take that while I wait for the next iteration of the Suunto 5. -
Sorry, wanted to say "now it works, not no it works. And “problemas” are “problems”,
-
@divy2 Good! Remember you have to set unique “ruleid” for each app.
I also noticed some issues when I update my apps, I need to select them, save sport mode and then re-enter into the sport mode and re-select them again.
Even if it is not very comfortable, it is cool to still be able to use suunto apps
-
Yes, @sebchastang, I changed the “ruleId”:11000001" into …00002, .00003 and so on.
In about two hours I’ll be out to try it. And you’re right, it’s great that this way we can still program apps. Thank you so much for the people who worked this out!
But it’s dificult to forget what Suunto did with this realy great Ambits which are still so raliables!
-
Hello everyone,
I’m trying to create a new app to monitor my zone 2 (core endurance.The code I’m trying to compile is the following:
if(SUUNTO_HR_AVG[5]<(70/100*(184–70)+70) || SUUNTO_HR_AVG[5]>(75/100*(184–70)+70))
{
Suunto.alarmBeep();
}but I encounter everytime an issue:
“[ErrorCode, COMPILATION_FAILED]\r\n[ErrorLine, 1]\r\n[ErrorColumn, 33]”Is anyone have an idea what is causing this error ?
Thanks in advance.
Kind regards.Narglix
-
@Dubosson-Aurélien I didn’t try compiling your code, but if I paste it to VS Code, it shows this.
-
@Raimo-Järvi the message says, that the „-„ character is the wrong one. Maybe it helps, if you remove them and type them again.
-
@Dubosson-Aurélien
As @Raimo-Järvi and @mabe2k noticed, you should remove the “-” character and replace 184-70 by 114 directly.To make code maintenance more easy, you could declare a variable to set your resting HR and use it in your condition:
REST_HR=70; if(SUUNTO_HR_AVG[5]<(70/100*(184-REST_HR)+70) || SUUNTO_HR_AVG[5]>(75/100*(184-REST_HR)+70)) { Suunto.alarmBeep(); } RESULT=SUUNTO_HR_AVG[5];