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.

    My Magic Mirror - 100x70cm

    Scheduled Pinned Locked Moved Show your Mirror
    19 Posts 10 Posters 25.9k Views 12 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.
    • yawnsY Offline
      yawns Moderator
      last edited by

      Yes, I can imagine that.
      I guess the mirror glass is mounted directly on top of the frame, right? I cannot see any ventilation drills. Did/do you somehow monitor heat inside the frame?

      M 1 Reply Last reply Reply Quote 0
      • M Offline
        marcnlx @yawns
        last edited by marcnlx

        @yawns You are correct. It’s mounted directly on top of the frame.

        I didn’t notice heat is really a problem, except a little bit for the monitor board…although it now has way more room to let air out then when the back part of the monitor was still on it!
        I was thinking about drilling some holes in the top of the frame to let the hot air out. There is also a small gap between the frame and the wall itself. On the RPi you can monitor temp as follows:

        pi@mirror:~ $ vcgencmd measure_temp
        temp=54.7'C
        pi@mirror:~ $
        

        I use a small script that shows temperature, but also shows it in Domoticz and sends a Telegram notification if the temperature gets too high:

        pi@mirror:~ $ ./myscripts/rpitemp.sh
        Raspberry Pi Temperature (domoticz) is 54.6 °C
        
        pi@mirror:~ $ cat ./myscripts/rpitemp.sh
        #!/bin/sh
        
        domoticzip=192.168.1.12
        user=xxxx
        pass=xxxx
        tempidx=204
        maxtemp=70
        
        RED='\033[0;31m'
        NC='\033[0m'
        val_temp=`vcgencmd measure_temp | cut -c 6-9`
        val_temp2=`vcgencmd measure_temp | cut -c 6-9 | cut -c 1-2`
        curl -s 'http://'$user':'$pass'@'$domoticzip'/json.htm?type=command¶m=udevice&idx='$tempidx'&nvalue=0&svalue='$val_temp'' > /dev/null
        
        if [ $val_temp2 -gt $maxtemp ]; then
            echo "${RED}Raspberry Pi Temperature ($(hostname)) is $val_temp °C ${NC}"
            curl -s -X POST "https://api.telegram.org/botxxxxxxxxxxxxxxxxxxxxxxxxxxxx/sendMessage" -F chat_id=xxxxxxxx -F text="Raspberry Pi Temperature ($(hostname)) is $val_temp °C"
        else
            echo "Raspberry Pi Temperature ($(hostname)) is $val_temp °C"
        fi
        exit
        pi@mirror:~ $
        
        1 Reply Last reply Reply Quote 1
        • P Offline
          Peter
          last edited by

          Very nice job!
          You live in the Netherlands, like me; can I ask you some questions by mail?
          You have some things in your mirror that make me very curious how you did it!
          Peter

          M 1 Reply Last reply Reply Quote 0
          • M Offline
            marcnlx @Peter
            last edited by

            @Peter said in My Magic Mirror - 100x70cm:

            Very nice job!
            You live in the Netherlands, like me; can I ask you some questions by mail?
            You have some things in your mirror that make me very curious how you did it!
            Peter

            Thanks! Yeah sure, no problem.

            1 Reply Last reply Reply Quote 0
            • Mykle1M Offline
              Mykle1 Project Sponsor Module Developer @marcnlx
              last edited by

              @marcnlx said in My Magic Mirror - 100x70cm:

              the only thing was that 30min after hanging it on the wall, “version 1” came off the wall completely

              This gave me a good laugh, thanks. :-)

              I agree. Well thought out (the 2nd one), nicely executed, well documented, pictures and a story. I commend you. Fantastic! :-)

              Create a working config
              How to add modules

              M 1 Reply Last reply Reply Quote 0
              • M Offline
                marcnlx @Mykle1
                last edited by

                @Mykle1 said in My Magic Mirror - 100x70cm:

                @marcnlx said in My Magic Mirror - 100x70cm:

                the only thing was that 30min after hanging it on the wall, “version 1” came off the wall completely

                This gave me a good laugh, thanks. :-)

                I agree. Well thought out (the 2nd one), nicely executed, well documented, pictures and a story. I commend you. Fantastic! :-)

                After I realized I could’ve expected this with “version 1” and saw the screen was still okay…same here :)

                Thanks! I just created a post the way I personally like to read it ;) I spend at least a week setting up everything, testing things out, seeing the “please create config file” after a restart a million times after making a change and forgetting an { [ , ’ or " somewhere :)
                I hope this will give people a bit of a Quick Start in configuring all modules and how I got everything working together ;)

                1 Reply Last reply Reply Quote 0
                • B Offline
                  bellroy @marcnlx
                  last edited by

                  @marcnlx, well done and kudos to you on your magic mirror. I’m moving to a new place soon always have this thought that i want to build one of this bad boy as a home accessories. With you details guides of building the magic mirror is going to be very helpful and thanks for that.

                  you mind if i ping you separately if i hit the wall and hoping you can shed some lights.

                  M 1 Reply Last reply Reply Quote 0
                  • M Offline
                    marcnlx @bellroy
                    last edited by

                    @bellroy said in My Magic Mirror - 100x70cm:

                    @marcnlx, well done and kudos to you on your magic mirror. I’m moving to a new place soon always have this thought that i want to build one of this bad boy as a home accessories. With you details guides of building the magic mirror is going to be very helpful and thanks for that.

                    you mind if i ping you separately if i hit the wall and hoping you can shed some lights.

                    No problem…just ping me if you hit any issues.

                    1 Reply Last reply Reply Quote 0
                    • S Offline
                      SoleLo
                      last edited by

                      @marcnlx firstly this mirror is awesome. How did you mount the mirror on the frame with it being bigger than the frame?

                      1 Reply Last reply Reply Quote 0
                      • brobergB Offline
                        broberg Project Sponsor
                        last edited by

                        @solelo look at the pictures and you’ll see that is fitted with four screws to hold it to the frame :)

                        S 1 Reply Last reply Reply Quote 0
                        • S Offline
                          SoleLo @broberg
                          last edited by

                          @broberg I did, did you just drill holes in the mirror also to hold it in place, I’m a little nervous to do that…

                          1 Reply Last reply Reply Quote 0
                          • O Offline
                            Overlord
                            last edited by

                            Very nice work. I like the look of your mirror and will try to make somethign similar.

                            May i ask if you have any advice on improvements since since then?

                            And also what is the purpose of the webcam on the mirror?

                            thnks in advance for your help

                            1 Reply Last reply Reply Quote 0
                            • A Offline
                              ashishtank Module Developer @marcnlx
                              last edited by

                              @marcnlx Well done, this looks amazing. Can I ask you from where did you ordered and which Plexiglass two way mirror ?

                              1 Reply Last reply Reply Quote 0
                              • Cr4z33C Offline
                                Cr4z33 @marcnlx
                                last edited by Cr4z33

                                @marcnlx very nice build although I am very disappointed about the plexiglass price.

                                I paid € 130,00 for a Pilkington MirroView glass to cover the area of a 55" TV (and beyond)! 😬

                                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