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.

    Raspberry 4 with two 24-inch screens ?

    Scheduled Pinned Locked Moved Hardware
    17 Posts 7 Posters 9.4k Views 6 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.
    • bheplerB Offline
      bhepler Module Developer @Cbob
      last edited by

      @Cbob It should be possible. The two screens will be considered one large desktop and the mirror framework will treat it as such. You’ll have a line down the middle where the monitors meet, but you can get around that with some clever CSS work.

      1 Reply Last reply Reply Quote 0
      • C Offline
        Cbob
        last edited by

        Hello,

        Thank you for your reply.

        So I propose to create a mirror with 2 vertical screens and 1 raspberry pi 4. There will be no message in the middle, but just on the sides.
        For example weather forecast, traffic, calendar and some information on the left screen ; and Spotify, RSS feed on the right screen.

        The idea is to “recycle” 2 screens of 24 inches to make a big mirror.
        But the screens will not necessarily stick together, there will be space between them. If you have some examples on the method or the files to modify let me know :)

        Thank you.

        bheplerB 1 Reply Last reply Reply Quote 0
        • bheplerB Offline
          bhepler Module Developer @Cbob
          last edited by bhepler

          @Cbob - It shouldn’t require much modification. Just avoid the following positions in your config.js file: fullscreen_above, fullscreen_below, bottom_center, middle_center, top_center, top_bar and bottom_bar. Those positions are centered on the desktop and will straddle the break between your monitors. That leaves you six positions to put modules. You should be okay.

          Now… if you want to get really advanced, you can modify the framework to add locations just to the left and right of the break between the monitors. That will involve adding new locations to the index.html and some significant modification of the CSS file. But it is possible. I would suggest getting your mirror built first and then investigating this possibility.

          1 Reply Last reply Reply Quote 1
          • S Offline
            SammyJankins @Cbob
            last edited by

            @Cbob Re: Raspberry 4 with two 24-inch screens ?

            I was thinking just the same!!! i need to buy a raspi 4 first tho… maybe in xmas!!!
            If someone has the right config for the css file that @bhepler taked about please write a post.

            thanks in advance.

            1 Reply Last reply Reply Quote 1
            • lavolp3L Offline
              lavolp3 Module Developer @Cbob
              last edited by lavolp3

              @Cbob That is a very great and expensive idea!!

              How to troubleshoot modules
              MMM-soccer v2, MMM-AVStock

              1 Reply Last reply Reply Quote 0
              • C Offline
                Cbob
                last edited by

                @lavolp3 I have 2 recycled 24 inch screens (easily found and easily for repair), and the big screen (46/50 inch) is more expensive :)

                @SammyJankins “If someone has the right config for the css”, it interests me too :)

                1 Reply Last reply Reply Quote 0
                • C Offline
                  Cbob
                  last edited by

                  I work on my project but i have a probleme :/.
                  I can not activate the 2nd screen with magic miror.

                  could you tell me how to activate the 2nd screen ? Raspbian works well on both, but I can not find how to activate the 2nd screen with magic mirror ?

                  thank you :)

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

                    @Cbob you will have to run two instances of MagicMirror, and use the electron options to position the one instance on each screen.

                    see here for another user positioning the MM screen on the right monitor

                    https://forum.magicmirror.builders/topic/11158/cannot-get-magic-mirror-to-start-on-second-screen/9

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    1 Reply Last reply Reply Quote 0
                    • C Offline
                      Cbob
                      last edited by

                      thank you for your answer, but I did not succeed.

                      I have two instances that launch, but it appears on the same screen. Are you solution for to help me ?

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

                        @Cbob
                        following the configuration instructions

                        https://github.com/MichMich/MagicMirror#general

                        you can add a section for passing to the browser, electron
                        add that line in front of the modules: line

                        this says,
                        not fullscreen
                        800 pixels wide
                        and starting (left edge is 0) at pixel 600

                         electronOptions: {fullscreen:false, width:800, x:600},
                        

                        so, if your screen is 1920*2 wide
                        to get the window onto the second screen,
                        x:1920 seems right

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        1 Reply Last reply Reply Quote 1
                        • B Offline
                          Bruno
                          last edited by

                          Guys, I’m having problem starting two instances of magic mirror.

                          I have a Raspberry Pi 4. One HDMI port is connected on my PC Screen, the other one on my TV (just for example. I’ll use two screens on my actual mirror).

                          I am able to start Magic Mirror on the second screen putting this line on the config.js of the second instance

                          electronOptions: {fullscreen:true, x:1920},
                          

                          (My first screen is 1920px wide).

                          I can get two instances to work, the problem is they are ALWAYS the same instance.

                          One instance is installed on ~/MagicMirror. The second is on ~/MagicMirror2.
                          I have two start scripts:

                          ~/MagicMirror/mm.sh

                          cd /home/pi/MagicMirror
                          DISPLAY=:0 npm start
                          

                          And ~/MagicMirror2/mm2.sh

                          cd /home/pi/MagicMirror2
                          DISPLAY=:0 npm start
                          

                          The first instance I have my modules and the second is the default instance (default config.js) that comes with the instalation (except for the “electronOptions” above, “address” and “ipWhiteList”).

                          The problem is that the second instance I start ALWAYS is the same as the first one.
                          For example, if I use “pm2 start mm”, my first instance appears on my first screen.
                          After that I use “pm2 start mm2” and also the FIRST INSTANCE appears on the second screen.

                          Any thoughts on how to correct that? What am I doing wrong?

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

                            @Bruno use pm2 info mm, and pm2 mm2 to make sure they are starting the right script

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            1 Reply Last reply Reply Quote 0
                            • B Offline
                              Bruno
                              last edited by

                              Ok, sorry. Just found out… I was using the same port on both instances :neutral_face:

                              1 Reply Last reply Reply Quote 0
                              • B Offline
                                banbutcher
                                last edited by

                                for display 1 - mm.sh

                                cd /home/pi/MagicMirror
                                DISPLAY=:0 npm start
                                

                                for display 2 - mm2.sh

                                cd /home/pi/MagicMirror
                                DISPLAY=:1 npm start
                                

                                i could be wrong tho…

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

                                  @banbutcher no, on PI4 there is only one ‘display’…
                                  you have to use the electronOptions, x:??? value to set the left edge of each (0 is left)

                                  Sam

                                  How to add modules

                                  learning how to use browser developers window for css changes

                                  1 Reply Last reply Reply Quote 0
                                  • B Offline
                                    banbutcher
                                    last edited by

                                    @sdetweil

                                    i knew i could be wrong!! :D

                                    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 / 1
                                    • 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