[Question] No stupid questions - ask anything here
-
@SuuntoPartnerTeam I am trying to display the baro trend in my S+ like the litte arrow that shows how the barometer is changing:

I used to have the icons for the 9 diffeent symbols like this:
{ "name": "trend", "source": "Fusion/Altitude/PressureTrend", "type": "subscribe" }, <eval input="{zapp_bottom_input}" outputFormat="keyValue 1=|2=|3=|4=|5=|6=|7=|8=|9=" />Now something must have changed in the background and the icons don’t work anymore. Can you tell me the current output for this?
Thx!
-
@Tomas5
Log refers to saved data, which is why the graph only works after at least one activity with HR data has been recorded while using the app. Currently this isn’t available in the simulator. In g1.html of the graph example, the average HR data for the previous exercise is displayed.You can use a path like:
/Activity/Log/{logIndex}/{Window}/{WindowIndex}/{Parameter}
which works both with and without a leading /.Thanks for pointing this out, it definitely needs to be added to the documentation.
-
@assaf1007 hrv is available only via belt afaik
-
The “Watch displays” docs say
Note: SuuntoPlus is no longer maintained for UI1(s、m、l).
Does this mean that the Vertical 1, which has UI1 l, is not supported? Or, just that no updates to this first public release of s+ will be coming for these watch models?
-
@SuuntoPartnerTeam thanks for explaining, i was mistaken that logIndex -1 is reading log forcurrently recorded excercise.
-
@SuuntoPartnerTeam
Hi, one question regarding date calculations. I saw in the Suunto Reference that Date is not supported in the standard built in objects.
So I need to do all date calculations based on seconds? Is this true?Thanks
-
@suuntopartnerteam I’m still a little bit confused about the
setText()behavior.For example
I create two template files, both with a<div id="testid" ....>section.
In the main.jsevaluate()function I set the textsetText('#testid', 'testvalue');This put’s the text in th div-section. If the text is changed, the div-section updates accordingly.
However, when I change the template to the second tempate (and call
unload('_cm');) the div-section on the new template, which has the same id, isn’t updated at all.Do you have any advise on how to handle this?
-
-
As with web development, ids are meant to uniquely determine an element. You shouldn’t use the same id for different elements. This is true even when those elements are inside different HTML templates, if both templates may be active at some point during the runtime of the app
-
You cannot change a template that is not active. The uiViewSet might be something worth looking at, depending on what you’re trying to achieve
-
-
Hey @hitriy .
You can fetch data from any device which supports being in peripheral mode – even a laptop. In your case, you would need to write an application for your phone which communicates with the watch using Bluetooth Low Energy.
-
Hi @harry08 .
That is right, you can only get precise current time or the day of the week. The rest needs to be calculated manually
-
Is it possible to get the Suunto Plus Guide a user has selected for the current workout? The goal would to the show a graphic representation (for example bar chart) to show all intervals of the workout and vertical ruler showing the current point in the workout.
-
@SuuntoPartnerTeam said in [Question] No stupid questions - ask anything here:
The uiViewSet might be something worth looking at
Thanks for the hint! This worked for my case.