MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-Scenes2

    Scheduled Pinned Locked Moved System
    23 Posts 5 Posters 8.9k Views 4 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.
    • H Offline
      hrmax23 @hrmax23
      last edited by

      I may have spoken too soon. It has been working for about 12 hours but just froze on MMM-MyStandings so maybe that module has a similar issue.

      S 1 Reply Last reply Reply Quote 0
      • S Offline
        sdetweil @hrmax23
        last edited by sdetweil

        @hrmax23 many of the modules have a design flaw copied from one of the original modules.

        the web side provides the timing control to request data, which is reset when the helper responds.

        but if the helper encounters an error( network glitch, timeout… ), it does not respond. and so the main side is waiting and the helper thinks it is done… deadlock not recoverable until restart

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        mumblebajM 1 Reply Last reply Reply Quote 0
        • mumblebajM Offline
          mumblebaj Module Developer @sdetweil
          last edited by

          @sdetweil Can I ask a stupid question? When I initially started coding my first module I was advised to handle the suspend and resume in the module and picked the samples up from I think your sample module or maybe it was another module. Apologies if it was not yours.

          Are we saying it is bad practice to use the two together? I.e. handling the suspend and resume etc. in module and should rather leave it out completely?

          Check out my modules at: https://github.com/mumblebaj?tab=repositories
          Check my blog-post: https://mumblebaj.xyz/
          Check my MM Container: https://hub.docker.com/repository/docker/mumblebaj/magicmirror/general

          S M 2 Replies Last reply Reply Quote 0
          • S Offline
            sdetweil @mumblebaj
            last edited by sdetweil

            @mumblebaj well, it depends…

            if you want you module to continue to get data in the background when suspended, then no need to hook suspend and resume…

            but those calls will count against your data cap at the provider…
            my code doesn’t ‘handle’ the suspend/resume, just stays informed…

            also, if you had a long refresh interval (once every hour for example) , the data might be stale if you don’t refresh on wake up… like overnight.
            my system suspends all (hides) to blackout the screen as my monitors don’t support off/on…
            in this case the calls made while suspended would be wasted work…

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            mumblebajM 1 Reply Last reply Reply Quote 0
            • mumblebajM Offline
              mumblebaj Module Developer @sdetweil
              last edited by

              @sdetweil Thanks Sam for the explanation. So it depends on the module design and data provider etc.

              Check out my modules at: https://github.com/mumblebaj?tab=repositories
              Check my blog-post: https://mumblebaj.xyz/
              Check my MM Container: https://hub.docker.com/repository/docker/mumblebaj/magicmirror/general

              S 1 Reply Last reply Reply Quote 0
              • M Offline
                MMRIZE @mumblebaj
                last edited by

                @mumblebaj
                Usually, implementing the suspend and resume methods of the MM module is useful when your module depends on expensive resources. When your module is inactivated, it would be better to stop consuming resource.
                But that mechanism is somehow annoying for me, so I ignore those methods. :D

                S 1 Reply Last reply Reply Quote 1
                • S Offline
                  sdetweil @mumblebaj
                  last edited by

                  @mumblebaj said in MMM-Scenes2:

                  So it depends on the module design and data provider etc

                  correct… other users might not know or understand the data provider issues, so in my opinion, if you are posting for other users consumption, you should consider this as a design requirement… (to be debugged later if you don’t do it from the beginning)

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  1 Reply Last reply Reply Quote 1
                  • S Offline
                    sdetweil @MMRIZE
                    last edited by sdetweil

                    @MMRIZE said in MMM-Scenes2:

                    But that mechanism is somehow annoying for me, so I ignore those methods

                    what could be annoying… they call, you set a flag.
                    you save any timer handle when u start it anyhow…

                    so on sleep you stop it, and on resume you restart the timer… what could be so hard
                    if you get data back while suspended, you don’t call updateDom(), and don’t restart the data request

                    tiny amount of code…

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    mumblebajM M 2 Replies Last reply Reply Quote 0
                    • mumblebajM Offline
                      mumblebaj Module Developer @sdetweil
                      last edited by

                      @sdetweil and @MMRIZE Thanks for the useful information.

                      Check out my modules at: https://github.com/mumblebaj?tab=repositories
                      Check my blog-post: https://mumblebaj.xyz/
                      Check my MM Container: https://hub.docker.com/repository/docker/mumblebaj/magicmirror/general

                      1 Reply Last reply Reply Quote 0
                      • M Offline
                        MMRIZE @sdetweil
                        last edited by MMRIZE

                        @sdetweil

                        what could be annoying… they call, you set a flag.

                        It may be a relative point of view.

                        Let’s assume my module is using a paid API that has a daily quota. To save the consumption API quota on unused time, it would be better to suspend/resume the process of the node_helper(usually node_helper takes a charge to consume API)

                        However, some API needs an expensive re-establishment fee for their usage. For example, some Google APIs might have short valid lifetimes of retrieved tokens and data. So, it needs to begin with handshaking again at some point. It may require the additional cost of the connection/auth/indexing process. If some 3rd party module tries to resume/suspend my module in a habitual rapid cycle, It might be another abused waste of consumption and, even worse, unpredictable.
                        I said this would be annoying for me.

                        Of course, I might also be able to manage the lifecycle of resource consumption, but I think it is not worth it, at least based on my experience with MM modules. (Yup, I’m the one who made most many modules in this scene.)
                        I prefer background-alive with silence than suspend/resume modules frequently. It is more stable. (at least for me.)

                        S 1 Reply Last reply Reply Quote 0
                        • S Offline
                          sdetweil @MMRIZE
                          last edited by

                          @MMRIZE yes, there can be consequences

                          Sam

                          How to add modules

                          learning how to use browser developers window for css changes

                          mumblebajM 1 Reply Last reply Reply Quote 0
                          • mumblebajM Offline
                            mumblebaj Module Developer @sdetweil
                            last edited by

                            @sdetweil Hence I always warn users of API limitations. if they exceed then it becomes their issue.

                            Check out my modules at: https://github.com/mumblebaj?tab=repositories
                            Check my blog-post: https://mumblebaj.xyz/
                            Check my MM Container: https://hub.docker.com/repository/docker/mumblebaj/magicmirror/general

                            S 1 Reply Last reply Reply Quote 0
                            • S Offline
                              sdetweil @mumblebaj
                              last edited by

                              @mumblebaj well… not really. the modules mostly don’t recover, the user doesn’t know, and then we waste time trying to debug it. lots of modules don’t report failures in the node_helper either.

                              Sam

                              How to add modules

                              learning how to use browser developers window for css changes

                              1 Reply Last reply Reply Quote 0
                              • M Offline
                                mmmmh Project Sponsor
                                last edited by

                                What do I need to configure to have no indicators and no need for an region for them?

                                (I am not sure if this is considered necroing a thread but I see other module discussions also going on for several pages. If this thread should end, I asked the same question here.)

                                S 1 Reply Last reply Reply Quote 0
                                • S Offline
                                  sdetweil @mmmmh
                                  last edited by sdetweil

                                  @mmmmh because his doc says

                                  <div class="scenes_indicator">
                                    <span class="scenes_indicator_scene index_0 inactive first">□</span>
                                    <span class="scenes_indicator_scene index_1 active">■</span> <!-- current scene -->
                                    <span class="scenes_indicator_scene index_2 inactive last">□</span>
                                  </div>
                                  

                                  you can use in custom.css

                                  .scenes_indicator {
                                            display : none;
                                   }
                                  

                                  Sam

                                  How to add modules

                                  learning how to use browser developers window for css changes

                                  M 1 Reply Last reply Reply Quote 0
                                  • M Offline
                                    mmmmh Project Sponsor @sdetweil
                                    last edited by

                                    @sdetweil Thanks, it works.

                                    1 Reply Last reply Reply Quote 0

                                    Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                    Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                    With your input, this post could be even better 💗

                                    Register Login
                                    • 1
                                    • 2
                                    • 1 / 2
                                    • First post
                                      Last post
                                    Enjoying MagicMirror? Please consider a donation!
                                    MagicMirror created by Michael Teeuw.
                                    Forum managed by Sam, technical setup by Karsten.
                                    This forum is using NodeBB as its core | Contributors
                                    Contact | Privacy Policy