Suunto app Forum Suunto Community Forum
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    [Question] No stupid questions - ask anything here

    Scheduled Pinned Locked Moved Suunto Plus Development
    130 Posts 36 Posters 13.4k Views 35 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Thibault B.T Offline
      Thibault B. Bronze Member @Raimo Järvi
      last edited by

      @Raimo-Järvi
      Thanks for your answer!

      1. I hadn’t thought about exploring the autocomplete suggestions—great idea! It works really well. I mapped values to zones based on what I’ve observed in my previous activities using ZoneSense.

      2. OK. Then, personally, I really miss an intermediate size between sp-d-xs and sp-d-s 😕
        You seem to confirm that there’s no way to slightly increase the size (I was about to experiment with canvas…). Easily supporting all watches wasn’t my main concern anyway—I would have been fine defining this intermediate font size per watch model if needed.

      3. Regarding older watches: does it still make sense to support watches older than the Suunto 9 Peak Pro, or is the information in the documentation confirmed?
        “Note: SuuntoPlus is no longer maintained for UI1 (s, m, l).”
        Does this mean that my app simply cannot be installed on those watches?

      Raimo JärviR 1 Reply Last reply Reply Quote 0
      • A Offline
        AYamshanov Bronze Member @brechtvb
        last edited by

        @brechtvb I had an option to switch my device to NO_PIN mode and I followed this approach to continue development and do not stuck ¯(ツ)/¯

        1 Reply Last reply Reply Quote 0
        • Raimo JärviR Offline
          Raimo Järvi @Thibault B.
          last edited by

          @Thibault-B. said in [Question] No stupid questions - ask anything here:

          1. Regarding older watches: does it still make sense to support watches older than the Suunto 9 Peak Pro, or is the information in the documentation confirmed?
            “Note: SuuntoPlus is no longer maintained for UI1 (s, m, l).”
            Does this mean that my app simply cannot be installed on those watches?

          Information in documentation is a bit vague again, but I think it’s trying to say that UI1 watches don’t get any updates to SuuntoPlus features. If you don’t use any SuuntoPlus features that have been added to UI2 watches (e.g. settings), I think apps should still work in UI1 watches. Older watches also have less JavaScript memory, that’s another potential cause for app incompatibility. But since I’m not aware of the latest SuuntoPlus developments, I may be interpreting the documentation incorrectly.

          Pragmatic Programmer

          Thibault B.T 1 Reply Last reply Reply Quote 0
          • Thibault B.T Offline
            Thibault B. Bronze Member @Raimo Järvi
            last edited by Thibault B.

            @Raimo-Järvi Make sense thanks.

            Other question: how to make a pop-up like the multi-sport one when long pressing a button (progress ring, etc)? I saw the reference in documentation regarding the lock pop-up but it also lock the button which is not what I want. I want to use such pop-up as toggle for an option.
            @suuntopartnerteam can you provide support on that? Thank you.

            Raimo JärviR 1 Reply Last reply Reply Quote 0
            • Raimo JärviR Offline
              Raimo Järvi @Thibault B.
              last edited by

              @Thibault-B. You can catch long press with onLongPress in pushButton element. And maybe Popup example in SuuntoPlus editor could work for toggling an option. But I don’t know how to get the progress ring. I don’t know if it’s part of the multi-sport popup, or if it’s generic functionality that can also be used elsewhere. In theory, you could catch onLongPressStart and implement your own progress ring view, but that would probably be difficult to implement.

              Pragmatic Programmer

              1 Reply Last reply Reply Quote 0
              • surfboomerangS Offline
                surfboomerang
                last edited by

                Can a CSS guru help me out?

                I want to show the current speed in the center of the screen. This works fine without a postfix, but as soon as I add a postfix, the speed fields shifts slightly to the left because both <span> elements are centered together.

                How do I center the first <span> element and put the postfix right of it?

                    <div class="sp-d-s p-hc" style="top:calc(87% - 50%e)">
                      <span>
                        <eval input="/Activity/Current/Speed" outputFormat="{zapp_speed_format}" default="--" />
                      </span>
                      <span class="cm-mid sp-t-s" style="padding-top:6px; padding-left:4px">
                        <postfix />
                      </span>
                    </div>
                

                Suunto Vertical Titanium Solar
                OnePlus Nord 4

                1 Reply Last reply Reply Quote 0
                • Timo HelferT Offline
                  Timo Helfer
                  last edited by Timo Helfer

                  Hey guys, could someone make HRV reading work?

                  I do not get the values, even tough the Suunto Smart Belt is conencted.

                  In the SImulator it says “undefined” for /HrvRmssd

                  3b15736a-9e26-4429-b7f4-d9b54347d637-image.png

                  1 Reply Last reply Reply Quote 0
                  • bhamp0B Offline
                    bhamp0
                    last edited by

                    Hi guys!
                    Is there any solution to get the NGP values?
                    I tried two different syntaxes: /Activity/Move/-1/NormalizedGradedPace/Current and /Activity/Move/-1/NGP/Current but both are unrecognized.
                    Thanks a lot 🙂

                    1 Reply Last reply Reply Quote 0
                    • bhamp0B Offline
                      bhamp0
                      last edited by bhamp0

                      I tried to investigate a bit more about my own question.
                      I’ve been able to find two files in SuuntoPlus Editor that are listing all the available ressources:

                      • .vscode/extensions/suunto.suuntoplus-editor-1.42.0/node_modules/@suunto-internal/suuntoplus-tools/lib/project/resource-common.js <= for generic ressources, not depending on parameters <= big array
                      • .vscode/extensions/suunto.suuntoplus-editor-1.42.0/node_modules/@suunto-internal/suuntoplus-tools/lib/project/resource.js <= for parametric ressources <= multiple regexes, still readable 🙂

                      Can’t find anything related to NGP, so I might conclude this is not available?

                      1 Reply Last reply Reply Quote 0
                      • M Online
                        matram
                        last edited by

                        Tried to develop my own data screen.

                        fc718e2e-4d56-48ae-a876-2fede0a9803a-image.png

                        Nice experience so far, many thanks to the devs for making this possible.

                        My question comes to the “big picture”. I want to do structured trading with my own data screen(s). Currently I am using intervals.icu although I have been hacking on my own FIT file editor. When intervals upload training session, I get an extra data screen from intervals which I cannot modify and I also have my normal data screens which are not aware of the structure of the training.

                        Any hints on the best way forward to combine my data screen with structured training?

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post

                        Suunto Terms | Privacy Policy