A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Subcategories

  • 32 Topics
    236 Posts
    M
    Hi MagicMirror team, I wanted to share with the community my MagicMirror project featuring a completely custom-built LEGO frame! Hardware Setup: Display: Vertical monitor Computer: Initially Beelink (mini PC), now migrating to Dell OptiPlex D10U System: Ubuntu (Server → Desktop) PIR sensor for automatic screen on/off control via MQTT Implemented Modules: Clock & Calendar (with Italian custom calendar) Weather (Italian weather with hourly and daily forecasts) Compliments (motivational messages) News Feed (Italian news) Automatic screen control via PIR sensor and Node.js Unique Feature: The LEGO frame is completely customizable and modular. It includes: LEGO minifigures on top Colorful decorations on the sides with bricks from various collections Decorative elements (stars, clouds, stickers) Design that perfectly integrates into the home environment Technical Challenges Solved: MQTT integration for PIR control Italian weather modules configuration Optimization for vertical display Power management and automatic screen shutdown The project became not only functional but also a decorative element appreciated by the whole family. The LEGO frame makes the MagicMirror less “techy” and more accessible, especially for children. [image: 1763043465078-lego-frame.jpeg] ![alt text](image url) Thanks for this amazing open source project! Michele!!
  • Wondering....

    3
    0 Votes
    3 Posts
    2k Views
    bheplerB
    @TGBB No, it won’t work. The reflective coating on the back of your cheap mirror is an all-or-nothing thing. If you scrape it off, you’re basically turning your mirror into a window. Do some searching for a glass manufacturer. I know there are several people on this forum from the UK. Surely they can point you in the right direction. Worst case scenario, you can talk to your local glass shop / glazier and ask them to broker the purchase for you. That way you can depend upon their expertise in the industry to source the mirror for you.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
  • Pi alternative

    5
    0 Votes
    5 Posts
    3k Views
    C
    I have MM running on a NanoPi 3 Fire (octacore 1G) … http://www.friendlyarm.com/index.php?route=product/product&product_id=206
  • IKEA Ribba 910x610

    3
    0 Votes
    3 Posts
    3k Views
    h0schiH
    @l0cal said in IKEA Ribba 910x610: i used the 500 x400 mm ribba. the frame outside had 350 mm, inside just about 260mm, 270 mm without passe-partout and glass. Oh - that will be close :-/ Thanks for your Informations.
  • Where to buy cheap two way glass?

    2
    0 Votes
    2 Posts
    2k Views
    brobergB
    Check your local glass shops if they order glass from Pilkington (www.pilkington.com) and ask about pricing on Mirropane and Mirroview. Mirroview costs over here around 1100sek/sqm (thats about 130usd/sqm) but do note, that is just material costs, if you want it cut to shape, smoothed edges etc it will cost more.
  • New to this and want to build a smart mirror. Help!

    3
    0 Votes
    3 Posts
    1k Views
    N
    Thank you for the quick response, the main problem I seem to be having is finding a two-way mirror that is 36’’ x 36’'.
  • Cutting a two way glass mirror

    5
    0 Votes
    5 Posts
    3k Views
    B
    i “adjusted” my mirror glass aswell. I had also had a headache doing it. But it worked out. Do it like a regular glass cut. Scratch it with a glas-cutting- thing and break it immediately, while the cut is “hot” If you are too scared, go to a glas-dealer and ask them to cut it professionally.
  • How to make it as slim as possible?

    19
    0 Votes
    19 Posts
    12k Views
    D
    Hey sorry this is a really old post, but I found that using a laptop LCD with a display adapter helped me make my mirror under 1 inch in thickness. The glass I used was 6mm, and the thickest component I have is the raspberry pi, at about half an inch.
  • [CLOSED] Two way community order for Europe - Open until 19 November 2017

    Locked
    51
    0 Votes
    51 Posts
    51k Views
    G
    @pgram said in [CLOSED] Two way community order for Europe - Open until 19 November 2017: Hi, I know I’m a few days too late, but I would like to ask if you still can supply a magic mirror for a 24" monitor. the exact dimensions i’ll send if your answer is positive. thanks, paolo I’m sorry, but participation is no longer possible. the next order will start in the spring ;) Best regards
  • Two way mirror in EU

    2
    0 Votes
    2 Posts
    2k Views
    N
    I am also looking for a reliable supplier in EU. If someone knows a website or store, please share.
  • Proximity sensor "switch" behind mirror?

    7
    0 Votes
    7 Posts
    8k Views
    brobergB
    Capacitive touch doesn’t work through mirrors. Mostly because the coating that gives you the reflection is almost always metallic.
  • Wood type for mirror frame

    4
    0 Votes
    4 Posts
    3k Views
    cowboysdudeC
    Yes you can use ANY material that you can make work. I would have preferred steel or alum but I have NO clue how to weld and paying someone would be VERY expensive…sooooooooooo I used the material I work with almost everyday…Wood. It’s inexpensive [depending on what you use] … I used mahogany alot… I have 3 built and they all have that in them…plus pine.
  • Software architecture

    1
    0 Votes
    1 Posts
    1k Views
    M
    Hi guys, we are looking for a software architecture of the “package” MagicMirror ^2. We build our own Magic Mirror for a project at University and have to build a chart about the software architecture, hardware architecture and the front and backend. We hope anyone can help us with this, because we are a little bit overstrained with all these codes. Thank you so much! Sara,Jana,Ariane und Annika
  • Dell D620 Laptop PC

    5
    0 Votes
    5 Posts
    3k Views
    C
    Thanks all, I have Magic Mirror working on Laktop Ubuntu and also Raspberry PI… sometimes with these instructions they tell you exactly what to do, but I dont understand why, lol
  • python script into MagicMirror module

    4
    0 Votes
    4 Posts
    4k Views
    ?
    @sureshkocherla Ok, Let’s see the example. MMM-Tools is using several external shell scripts in the module. https://github.com/eouia/MMM-Tools See the node_helpers.js (https://github.com/eouia/MMM-Tools/blob/master/node_helper.js) First, Child process could not be used on the frontend, so you need to build node_helpers.js for it. in line 10 var exec = require('child_process').exec child_proces.exec is declared to use. You might need other methods like spawn or fork for your purpose. in line 123. getIP : function() { exec (this.scripts['IP'], (err, stdout, stderr)=>{ if (err == null) { var matched = stdout.trim().match(/\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/) this.status['IP'] = (matched) ? matched[0] : "Unknown" } }) }, this is all for your using exec. exec ("your command", function callback(error, outputonsuccess, outputonerr) { console.log(error, outputonsuccess, outputonerror) }) Try this in your module. ※ child_process.exec is a just simple method to get result of external command. But when you need more complexed function, you could consider spawn or fork or execFile instead exec https://dzone.com/articles/understanding-execfile-spawn-exec-and-fork-in-node this doc will be help.
  • 0 Votes
    3 Posts
    2k Views
    K
    Thanks for the response. I ended up buying a two way mirror sample (1/8" thick) from twowaymirrors.com. As long as the monitor is completely flush against the back of the mirror, the reflection is identical to that of a regular mirror. :) So I think I’ll go with a real two way mirror as opposed to a film. Cheers!
  • Canadians: where is the best source for mirror material?

    1
    0 Votes
    1 Posts
    1k Views
    C
    I know about smartmirrors.ca, anywhere else?
  • MMM-Swipe installation & work flow

    1
    0 Votes
    1 Posts
    889 Views
    S
    MMM-Swipe installation & work flow
  • Acrylic Mirror Sheet

    2
    0 Votes
    2 Posts
    2k Views
    V
    Or this one: http://www.cutplasticsheeting.co.uk/mirrored-sheeting/two-way-acrylic-mirror Supposedly people have used them for magic mirrors…
  • 0 Votes
    4 Posts
    3k Views
    ?
    https://www.seeedstudio.com/ReSpeaker-4-Mic-Array-for-Raspberry-Pi-p-2941.html?utm_source=facebookads&utm_medium=ads Similar device?