They will send you an offer and auftragsbestätigung.
I think its around 150 CHF / m2.
But you’ll have to pick it up by yourselfe, without delivery
They will send you an offer and auftragsbestätigung.
I think its around 150 CHF / m2.
But you’ll have to pick it up by yourselfe, without delivery
I’ve made a privat order with the contact form on the right side: Here ->
@Jopyth I never did this before but I’ll try ;-)
Ok, that’s a nice modul :-)
I’ve insert an restart function for the MM app and the ability to turn you monitor on and off:
insert in node_helper.js at line 54:
if (query.action === 'RESTART')
{
res.send({'status': 'success'});
exec('pm2 restart mm', function(error, stdout, stderr){ callback(stdout); });
return;
}
if (query.action === 'MONITORON')
{
res.send({'status': 'success'});
exec('/opt/vc/bin/tvservice -p', function(error, stdout, stderr){ callback(stdout); });
return;
}
if (query.action === 'MONITOROFF')
{
res.send({'status': 'success'});
exec('/opt/vc/bin/tvservice -o', function(error, stdout, stderr){ callback(stdout); });
return;
}
in remote.js on line 131:
'restart-mm-button': function () {
Remote.getWithStatus("action=RESTART");
},
'monitor-on-button': function () {
Remote.getWithStatus("action=MONITORON");
},
'monitor-off-button': function () {
Remote.getWithStatus("action=MONITOROFF");
}
in remote.html on line 40:
<!-- MagicMirror menu -->
<div id="restart-mm-button" class="menu-button power-menu">
<span class="fa fa-recycle" aria-hidden="true"></span>
<span class="text">%%TRANSLATE:RESTARTMM%%</span>
</div>
<div id="monitor-on-button" class="menu-button power-menu">
<span class="fa fa-toggle-on" aria-hidden="true"></span>
<span class="text">%%TRANSLATE:MONITORON%%</span>
</div>
<div id="monitor-off-button" class="menu-button power-menu">
<span class="fa fa-toggle-off" aria-hidden="true"></span>
<span class="text">%%TRANSLATE:MONITOROFF%%</span>
</div>
and the translations/en.json and de.json on line 8 ff:
"RESTARTMM": "Restart MagicMirror2",
"MONITORON": "Turn monitor ON",
"MONITOROFF": "Turn monitor OFF",
"RESTARTMM": "Starte MagicMirror2 neu",
"MONITORON": "Bildschirm einschalten",
"MONITOROFF": "Bildschirm ausschalten",
I think thats it.
The evil this is a must for my mirror… so thats next. I think we can do this like the IFTTT module does it.
Install modules remotly will be the next big thing… :-)
If you use pin 7 in your config its nr 4
You have to use the gpio nr.
ok so lets go step by step:
cd ~/MagicMirror/modules/
now we will remove the PIR folder:
rm -rf MMM-PIR-Sensor
and from here, we’re going to reinstall the MMM-PIR-Sensor modul:
git clone https://github.com/paviro/MMM-PIR-Sensor.git
cd MMM-PIR-Sensor
run the following cmd here:
npm install
and wait, this can take a few minutes.
Now you’ll have to add pi to gpio
sudo useradd -g pi gpio
and reboot your Raspi:
sudo reboot
You’ll have to connect your PIR Sensor the right way with your Raspi.
I’ve connected my PIR Sensor on the following Pins:
I’ve got a Pi2 and use Pin 2 for power, Pin 6 for Ground and Pin 15 for Data.
– correctin grn pin
and dont forget to add the config :-)
@bibi I wish I could, I understand a still a lot, but I don’t use it anymore…
I’m from the german part of Switzerland, close to Zurich.
https://forum.magicmirror.builders/topic/117/bangee-s-mirror/16
This one is also built with a 24" Monitor and a 12 %, 4mm Mirror.
I would recommend this one.
I’ve ordered there different pices of mirrors. 12%, 4mm and 20%.
That looks fine.
Did you try to remove your folder MMM-PIR-Sensor an reinstall the modul?