<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MagicMirror electrical cabinet door]]></title><description><![CDATA[<p dir="auto">So, here is my build…</p>
<p dir="auto">Electrical cabinet:<br />
Holds circuit brakers, patch pannel, network switches and NAS<br />
<img src="https://i.imgur.com/Ih95uuu.jpg" alt="cabinett" class=" img-fluid img-markdown" /></p>
<p dir="auto">How it should look:<br />
<img src="https://i.imgur.com/Q6JBvbV.jpg" alt="test" class=" img-fluid img-markdown" /><br />
My wife and daughter likes it.</p>
<p dir="auto">And my test setup:<br />
<img src="https://i.imgur.com/FG0NJcN.jpg" alt="test setup" class=" img-fluid img-markdown" /></p>
<p dir="auto">For now, I’m runnung it on VirtualBox running Raspbian like distro.<br />
I have one Raspberry PI 3 runing Pihole and tor proxy for now.<br />
I’ll add MagicMirror to that PI once I learn to fine tune MagicMirror and when my kids let me.</p>
<p dir="auto">I never expected it to look so good! :drooling_face:</p>
<p dir="auto">Technical:<br />
Rear is OSB board 12mm painted black<br />
Glass is blue(ish) tinted 6mm thick<br />
22" LED display, only VGA, working with RPI using adapter<br />
Aluminium L profiles 20x10x2mm to hold glass in place<br />
Dimensions are 205 cm tall, 33cm wide, 2 cm tick, heavy as f***.<br />
Between glass and board there is black cloth. Behind glass it has texture like display.<br />
On strong light, diplay is just visible because i taped black electrical tape to metal edges. And it slightly reflects light.</p>
]]></description><link>https://forum.magicmirror.builders/topic/11630/magicmirror-electrical-cabinet-door</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 23:22:31 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/11630.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 18 Nov 2019 22:12:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MagicMirror electrical cabinet door on Mon, 26 Dec 2022 15:30:05 GMT]]></title><description><![CDATA[<p dir="auto">How do you lock and unlock this mirrored door? A friend of mine is also hiding all patch panels and circuit brakers behind a mirror. He once told me that the mirrored door is the cause of too many issues. Firstly, due to complicated mechanisms, it was tough to install. He hired a <a href="https://welocksmith.co.uk/services/emergency-locksmith/" target="_blank" rel="noopener noreferrer nofollow ugc">locksmith emergency service</a> to give him a hand. Now then, the circuit brakers are out of order, and he has to take the mirror completely out.<br />
What struggles have you encountered?</p>
]]></description><link>https://forum.magicmirror.builders/post/106709</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/106709</guid><dc:creator><![CDATA[RoyCormi]]></dc:creator><pubDate>Mon, 26 Dec 2022 15:30:05 GMT</pubDate></item><item><title><![CDATA[Reply to MagicMirror electrical cabinet door on Sun, 19 Jan 2020 12:12:26 GMT]]></title><description><![CDATA[<p dir="auto">Well, I have abandoned ArduPort. Never got it to work. So I switched to json-feed.</p>
<p dir="auto">It wasn’t easy for me because I had zero knowledge about http requests. But I got it working.</p>
<p dir="auto">For anyone, with limited knowlege, like me, here is the code I’m sending from arduino ethernet server:</p>
<pre><code>void sendjson(EthernetClient cl)
{
    // send a standard http response header
    cl.println("HTTP/1.0 200 OK");
    cl.println("Content-Type: application/json");
    cl.println("Connection: close");
    cl.println();
    // 
    cl.println("{"); // start of json data
    cl.print("\"Info\":\" ");
    if(y==true){cl.print("ERR COM");} // error in comunication
    if(y==false){
      if(inverterukljucen==1){
        cl.print("ON"); // system is on
        }
        else
        {
          cl.print("OFF"); // system is off i.e. no sun
        }
      }
    cl.println("\",");
    
    cl.print("\"Baterija\":\" "); // battery voltage
    cl.print(naponbaterije);
    cl.println(" V\",");

    cl.print("\"Struja\":\" "); // current going in or ouf trom battery
    cl.print(strujabaterije);
    cl.println(" A\",");

    cl.print("\"Proizvodnja\":\" "); // production of electricity
    cl.print(snagapanela);
    cl.print(" W / ");
    cl.print((snagapanela/560)*100);
    cl.println("%\",");

    cl.print("\"Teret\":\" "); // load at inverter side
    cl.print(snagainvertera);
    cl.print(" W / ");
    cl.print((snagainvertera/1200)*100); // load percentage
    cl.println(" %\"");

    cl.println("}"); //end of json data
}
</code></pre>
<p dir="auto">And json data received by MM:</p>
<pre><code>{
"Info":" ON",
"Baterija":" 26.15 V",
"Struja":" -0.79 A",
"Proizvodnja":" 6.72 W / 1.20%",
"Teret":" 27.52 W / 2.29 %"
}
</code></pre>
<p dir="auto">And result:<br />
<img src="https://i.imgur.com/aw4JmDu.jpg" alt="alt text" class=" img-fluid img-markdown" /></p>
<p dir="auto">Back of the cabinet (I have to tie those cables):<br />
<img src="https://i.imgur.com/mNtXqq1.jpg" alt="alt text" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/68367</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/68367</guid><dc:creator><![CDATA[Kereknjek]]></dc:creator><pubDate>Sun, 19 Jan 2020 12:12:26 GMT</pubDate></item><item><title><![CDATA[Reply to MagicMirror electrical cabinet door on Mon, 06 Jan 2020 22:00:22 GMT]]></title><description><![CDATA[<p dir="auto">I’m having trouble uploading pictures…</p>
<p dir="auto">But, I’m allso having trouble with MMM-ArduPort. It connects to arduino, shows sensors, and then returns to “waiting for connection…” :confused_face:</p>
]]></description><link>https://forum.magicmirror.builders/post/67476</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/67476</guid><dc:creator><![CDATA[Kereknjek]]></dc:creator><pubDate>Mon, 06 Jan 2020 22:00:22 GMT</pubDate></item><item><title><![CDATA[Reply to MagicMirror electrical cabinet door on Mon, 06 Jan 2020 00:57:50 GMT]]></title><description><![CDATA[<p dir="auto">It’s been a while…</p>
<p dir="auto">So, I mounted my MM in place, customized it to my preference and enjoyed it for a while.</p>
<p dir="auto">If you read my other post about sending data from arduino to MM over ethernet, I’ve given up from it as I realy suck at programming web aplications.</p>
<p dir="auto">But, it’s not all lost. I’m running my “not so smart” home on multidrop RS485 network and my master node is right behind RPI3 running MM.</p>
<p dir="auto">So I made packet sniffing node using arduino nano.<br />
In short, it listens for packets that are interesting to be shown on MM, translates them to format for MMM-ArduPort and sends them over usb. If no packet is received in 5 minutes, than it sends request.</p>
<p dir="auto">So I installed MMM-ArduPort, configured config.js and then…<br />
Disaster! I was only getting black screen! I taught: “NOOOOO!!! I’m to ugly to watch my self in a mirror!”<br />
Started to remove modules one by one and nothing helped.<br />
So I deleted MagicMirror folder and went to reinstal. But instalation got frozen at “Updating packages”.<br />
Fortunatly, manual instalation worked. I reinstalled all modules and copied configuration from old config.js (yes, i made backup :D ), and finaly got it to work.</p>
<p dir="auto">Problem was that i have updated it prior installing MMM-ArduPort and somehow update crashed MM.</p>
<p dir="auto">Now it is 1:57 am so I’m going to sleep. Arduport will have to wait till morning.</p>
<p dir="auto">I’ll slap some new pictures tomorrow!</p>
]]></description><link>https://forum.magicmirror.builders/post/67330</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/67330</guid><dc:creator><![CDATA[Kereknjek]]></dc:creator><pubDate>Mon, 06 Jan 2020 00:57:50 GMT</pubDate></item><item><title><![CDATA[Reply to MagicMirror electrical cabinet door on Mon, 18 Nov 2019 22:28:10 GMT]]></title><description><![CDATA[<p dir="auto">Most Excellent! Fit it right between the door molding! Great spot for visibility!</p>
]]></description><link>https://forum.magicmirror.builders/post/64693</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/64693</guid><dc:creator><![CDATA[BD0G]]></dc:creator><pubDate>Mon, 18 Nov 2019 22:28:10 GMT</pubDate></item><item><title><![CDATA[Reply to MagicMirror electrical cabinet door on Mon, 18 Nov 2019 22:14:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kereknjek" aria-label="Profile: Kereknjek">@<bdi>Kereknjek</bdi></a> very cool!</p>
]]></description><link>https://forum.magicmirror.builders/post/64691</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/64691</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 18 Nov 2019 22:14:19 GMT</pubDate></item></channel></rss>