MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. Bangee
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 1
    • Followers 3
    • Topics 12
    • Posts 122
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Where to buy good two way mirrors ?

      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

      posted in Hardware
      BangeeB
      Bangee
    • RE: Where to buy good two way mirrors ?

      I’ve made a privat order with the contact form on the right side: Here ->

      posted in Hardware
      BangeeB
      Bangee
    • RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror

      @Jopyth I never did this before but I’ll try ;-)

      posted in System
      BangeeB
      Bangee
    • RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror

      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… :-)

      posted in System
      BangeeB
      Bangee
    • RE: MMM-PIR-Sensor - White Screen

      If you use pin 7 in your config its nr 4

      You have to use the gpio nr.

      posted in Troubleshooting
      BangeeB
      Bangee
    • RE: MMM-PIR-Sensor - White Screen

      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:
      GPIO
      I’ve got a Pi2 and use Pin 2 for power, Pin 6 for Ground and Pin 15 for Data.
      – correctin grn pin

      PIR Sensor

      and dont forget to add the config :-)

      posted in Troubleshooting
      BangeeB
      Bangee
    • RE: Where to buy good two way mirrors ?

      @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.

      posted in Hardware
      BangeeB
      Bangee
    • RE: Where to buy good two way mirrors ?

      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.

      posted in Hardware
      BangeeB
      Bangee
    • RE: Where to buy good two way mirrors ?

      I’ve ordered there different pices of mirrors. 12%, 4mm and 20%.

      posted in Hardware
      BangeeB
      Bangee
    • RE: MMM-PIR-Sensor - White Screen

      That looks fine.

      Did you try to remove your folder MMM-PIR-Sensor an reinstall the modul?

      posted in Troubleshooting
      BangeeB
      Bangee
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 12
    • 13
    • 5 / 13