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.

    Black screen on HMDI output, content on remote browser

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    25 Posts 3 Posters 7.5k Views 3 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.
    • S Offline
      sdetweil @MikeBishop
      last edited by

      @MikeBishop are you also running on buster?

      Sam

      How to add modules

      learning how to use browser developers window for css changes

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

        @chris_d try npm start dev to open dev window on startup

        also can u try the npm start on the pi desktop, not over ssh?

        Sam

        How to add modules

        learning how to use browser developers window for css changes

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

          @sdetweil

          Bullseye, looks like. Whatever’s in the newest RPi OS release, anyway.

          For the moment, I’ve swapped back to the other SD card that’s working. System’s been a little flaky the last few days, figured I’d try a fresh install on a new card in case that’s starting to go; hit this issue on the new one. When I have a few minutes to pull the Pi from the mirror and bring it back to my desk, I’ll give npm start dev a try on the newer one.

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

            @MikeBishop can u reflash bullseye and use my install script?
            https://github.com/sdetweil/MagicMirror_scripts

            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
              MikeBishop @sdetweil
              last edited by

              @sdetweil

              That’s actually how I installed this instance to begin with. However, I’ve narrowed my instance of the problem down.

              The node_helper for the module I wrote, MMM-Powerwall, has an async start() function. In previous MM versions, the startup code didn’t wait on async start functions to finish, and my init finished not long after MM started. This version includes the fix to wait for async modules to finish starting. I’ve confirmed that my start() function is running to the end, and MM does write

              [21.01.2023 14:30.25.915] [LOG]   Sockets connected & modules started ...
              

              …to the log, but apparently something about waiting on the module breaks the electron browser. If I hack the module to look synchronous, like so:

              start: /*async*/ function () {
              		this.asyncStart()
              	},	
              
              asyncStart: async function () {
              

              …everything starts right up. Something about the timing or threading of waiting for modules to complete is making the electron launch fail, I think.

              My next step will be to make a module that does nothing but has an async node_helper and see if I can repro the issue with that.

              @chris_d, any chance that you’re also using a module with an async start function?

              M S C 3 Replies Last reply Reply Quote 0
              • M Offline
                MikeBishop @MikeBishop
                last edited by

                @sdetweil

                Okay, I think I have a clean repro of the issue in https://github.com/MikeBishop/MMM-asyncdeath – the synchronous start function produces this in the logs and loads normally:

                [21.01.2023 14:55.02.692] [LOG]   Synchronous start-up -- all is well
                [21.01.2023 14:55.02.693] [LOG]   Sockets connected & modules started ...
                [21.01.2023 14:55.03.235] [LOG]   Launching application.
                

                The async start function produces this in the logs and fails:

                [21.01.2023 14:52.54.143] [LOG]   About to break by using await
                [21.01.2023 14:52.54.884] [LOG]   Launching application.
                [21.01.2023 14:52.56.512] [LOG]   Sockets connected & modules started ...
                

                Note the reversed order of “Launching application” and “modules started”. Seems feasible this could also happen with a synchronous module startup that takes a long time, but I haven’t tested that.

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

                  @MikeBishop great work

                  can you post your findings to issue

                  https://github.com/MichMich/MagicMirror/issues/2487

                  I reopened it

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  1 Reply Last reply Reply Quote 0
                  • C Offline
                    chris_d @MikeBishop
                    last edited by

                    @MikeBishop I’m running MMM-Calendar3 and the default modules only.

                    1 Reply Last reply Reply Quote 0
                    • 1
                    • 2
                    • 3
                    • 3 / 3
                    • 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