Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. lolobyte
    MagicMirror² v2.15.0 is available! For more information about this release, check out this topic.
    • Profile
    • Following 0
    • Followers 0
    • Topics 13
    • Posts 287
    • Best 45
    • Groups 0

    lolobyte

    @lolobyte

    50
    Reputation
    5644
    Profile views
    287
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    lolobyte Follow

    Best posts made by lolobyte

    • RE: [ORDER CLOSED] Two way mirror order in Germany

      Hey Boy’s and ??Girls??here some Pictures.
      All Mirrorrs arrive’d well and safe the Heilbronn city.

      Each of you can contact me to join a pickup date and time.

      I prefer Friday in the evening after 7’o clock or Sutterday and Sunday in the morning till 9:00 ore the eveningtime after 7:00 o’clock.

      What do u mean Heilbronn Team?

      0_1489771158956_IMG_0961 (Medium).JPG

      0_1489771218189_IMG_0962 (Medium).JPG

      0_1489771250218_IMG_0963 (Medium).JPG

      posted in Hardware
      lolobyte
      lolobyte
    • RE: [ORDER CLOSED] Two way mirror order in Germany

      @Hawking

      Here is my Cam picture behind the mirror from @Goldjunge_Chriz.

      RaspiCam with old mirror glass
      0_1491848840362_CAM_PIC_Light.JPG

      RaspiCam with new mirror glass
      0_1491848871878_RaspiCam_flur.JPG

      my Mirror
      0_1491848985629_IMG_0975 (Medium).JPG

      posted in Hardware
      lolobyte
      lolobyte
    • RE: Do I need a Rasberry Pi to build a MM2? (I'm new)

      No, every PC, Mac or Linux system witch is compatible which electron node js.

      See http://electron.atom.io/

      posted in General Discussion
      lolobyte
      lolobyte
    • RE: how to disable screensaver?

      @sgtwtf

      follow this install guide, you will find this entry’s: https://github.com/MichMich/MagicMirror/wiki/Jessie-Lite-Installation-Guide

      Disable the screensaver

      Go to LXDE-autostart config:

      sudo nano /etc/xdg/lxsession/LXDE/autostart

      add the following lines:

      @xset s noblank
      @xset s off
      @xset -dpms 
      

      Save and close, using the commands CTRL-O and CTRL-X.

      Go to lightdm.conf:

      sudo nano /etc/lightdm/lightdm.conf

      add the following lines:

      xserver-command=X -s 0 -dpms
      

      Reboot the raspberry pi:

      sudo apt-get install xscreensaver
      sudo apt-get remove xscreensaver
      sudo reboot
      
      posted in Troubleshooting
      lolobyte
      lolobyte
    • RE: Mobile app (bachelor thesis)

      I’m waiting for ios App beta testing. 😉

      Done

      posted in Development
      lolobyte
      lolobyte
    • RE: [ORDER CLOSED] Two way mirror order in Germany

      @Goldjunge_Chriz

      Hey guys.
      If @mantha 's car can carry for you actually total 3,04m² / 22,80kg (including @manta 's mirror) then it will be possible to put this mirrors also in my car with the mirrors from Heilbronn Team.

      ok, here the list taken from the master list for Ulm Team @mantha
      @binderth | 0,35m² | not confirmed | confirmed
      @fox | 0,18m² | not confirmed | confirmed
      @ace0024 | 0,76m² | not confirmed | confirmed
      @tomster | 1,20m² | not confirmed | confirmed
      @mantha pickup in Heilbronn actually 3,04m² / 22,80kg

      and here the list taken from the master list for Heilbronn Team @lolobyte
      @mcg | 0,50m² | not confirmed | confirmed
      @CFenner | 0,45m² | not confirmed | confirmed
      @sero | 0,20m² | confirmed | confirmed
      @yaye | 0,20m² | confirmed | confirmed
      @mantha | 0,55m² | confirmed | confirmed
      @Mire | 0,80m² | confirmed | confirmed
      @jupilde | 0,54m² | confirmed | confirmed
      @lolobyte | 0,96m² | confirmed | confirmed 😉
      @webmasterrm | 0,20m² | confirmed | confirmed
      @todro | 0,614m² | confirmed | confirmed
      @Deepgear | 0,69m² | confirmed | confirmed
      @Jeff | 0,40m² | maybe | not in master list (order change)

      To all members listed here. Please confirm your pickup in Heilbronn/Ulm
      If other members wish this service, please post it here.

      The total weight for me is actually 54,33kg for both Teams.
      Permissible total weight in my car = 550 kg
      Luggage compartment volume = 455l / 1590l (Folded back seat bench)

      posted in Hardware
      lolobyte
      lolobyte
    • RE: Backing Up Magic Mirror

      @AAPS

      sudo nano /home/pi/Backup.sh
      
      #!/bin/bash
      
      # VARIABLEN - HIER EDITIEREN
      BACKUP_PFAD="/yourBACKUPpath"
      BACKUP_ANZAHL="5"
      BACKUP_NAME="raspicam3-HN_BMGT"
      DIENSTE_START_STOP="service mysql"
      # ENDE VARIABLEN
      
      # Stopp any services before backup
      ${DIENSTE_START_STOP} stop
      
      # Create backup with dd in your desired path
      dd if=/dev/mmcblk0 of=${BACKUP_PFAD}/${BACKUP_NAME}-$(date +%Y%m%d-%H%M%S).img bs=1MB
      
      # Star services after backup
      ${DIENSTE_START_STOP} start
      
      # Delete old backup after X backups
      pushd ${BACKUP_PFAD}; ls -tr ${BACKUP_PFAD}/${BACKUP_NAME}* | head -n -${BACKUP_ANZAHL} | xargs rm; popd
      

      Make executable and move the script to /usr/bin/

      sudo chmod 755 /home/pi/Backup.sh
      sudo mv /home/pi/Backup.sh /usr/local/bin/Backup.sh
      
      crontab -e
      
      
      00 01 * * * /usr/local/bin/Backup.sh
      

      Every day at 01:00 in the night a backup with crontab.

      Restore your Backup to your SD-Karte under Windows with Win32 Disk imager or with Linux with following command.

      dd if=/path/backup.img of=/dev/sda bs=1MB
      

      create manual a backup with your pi

      sudo dd if=/dev/mmcblk0 of=/yourBACKUPpath/Rpi_32gb_backup.img bs=2M
      
      posted in General Discussion
      lolobyte
      lolobyte
    • RE: Picam behind the mirror for on/off

      @Bones

      read this…

      https://forum.magicmirror.builders/topic/1172/how-do-you-switch-on-off-wake-up-yours

      posted in Requests
      lolobyte
      lolobyte
    • RE: Motion Detection with RaspiCam, Non-Module version

      @bhepler

      Hi, i do the same at first and restor my sw installation.
      But after the same procedure of sw installation this error was again on top.

      I resolve, by my sw, the reason for that was: motion must start after pm2 startin mm.

      My mm start’s automaticly after rebooting.
      My motion also. => collision of SW.

      By doing motion in an cron job with delay time al was fun an running as iwant.

      in my case i do following:
      don’t foget to install screen.

      sudo apt-get intsall screen

      My motion is running in a screen session.
      then the cronjob

      crontab -e

      and set motion with following parameters:

      @reboot sleep 150; screen -S motion -dmS sudo motion -c /home/pi/motion/motion-mmalcam.conf

      i hope this is helpfull for you and other persons here.

      posted in Tutorials
      lolobyte
      lolobyte
    • RE: [ORDER CLOSED] Two way mirror order in Germany

      @yawns @gustav1976 @Jeff @cpramhofer @yawns

      I’m a bit confused what to do next.
      The mirror price is actually 100% more expensive than my already bought mirror with the same dimensions.

      I’m waiting too like yawns!

      posted in Hardware
      lolobyte
      lolobyte

    Latest posts made by lolobyte

    • RE: How many Ram needed?

      @bennkoo
      Hello Friend.

      2GB is more as enough only for the MM2!

      posted in Hardware
      lolobyte
      lolobyte
    • RE: Dell Monitor 19" 1905FP for my Magic Mirror

      @kusselin

      OK, much better…
      🙂

      posted in Hardware
      lolobyte
      lolobyte
    • RE: Dell Monitor 19" 1905FP for my Magic Mirror

      @kusselin

      Hi, Friend.

      Yes, you need two power supplies!
      The standard one 4 the Raspberry pi 3 (5V/2,5A) or (5V/3A) for version pi 4.

      For your panel you need the 12 V/4A (ampere) not 4W (wat) power supply.
      4W ist to poor power. This one has 12*4=48W

      Please read “Instruction to connect the controller board to the LCD” for example in the board specs at ebay.

      Best regards

      posted in Hardware
      lolobyte
      lolobyte
    • RE: Dell Monitor 19" 1905FP for my Magic Mirror

      @kusselin

      Hello Friend.

      here some links for your panel:

      Important:

      search for version v.1: M190EN03 V1
      You also need a power adapter (Ouput 12V/4A) for it.

      ebay

      AliExpress

      good luck

      posted in Hardware
      lolobyte
      lolobyte
    • RE: What Monitor did you use?

      @kusselin : Hello freiend.

      Like i wrote in this post here “15” Panel from an old laptop found in the trash with a separate Controller (from Amazon).
      HDMI+DVI+VGA+Audio LCD Controller Kit for 15.6" B156XW02 V.2 LED Panel 1366x768"

      1. Disassemble your laptop.
        IMG_0869 (Small).JPG

      2. Search for Panel manufacturer (like this one)
        IMG_0134 (Small).JPG
        and

      IMG_0138 (Small).JPG

      1. search on ebay, amazon or other supplier for a LCD drive controller board of your panel manufacturerer. In my case i has found this for the lenovo…
        IMG_0749 (Small).JPG
        and this one for the packard bell
        packard bell driver board for panel B156xw02

      hope you have some helpfull informations for your search.

      at least it looks like this

      IMG_0882 (Small).JPG

      or this

      IMG_0854 (Small).JPG

      posted in Hardware
      lolobyte
      lolobyte
    • RE: ipWhitelist HowTo

      @gjones444
      hi
      you must configure your config.js and maybe your interent router.

      This is my adress for global access to the mm2 via internet browser

      http://raspi-mm2.xxxxxxxxxxxxxx.myfritz.net:8116/

      an this is a part of my configuration in my config .js

      var config = {
              address: "0.0.0.0",
              port: 8116,
              ipWhitelist: [],
      
      

      Port forward configuration for my router for global access
      0_1564226812443_Portfreigabe_01.jpg

      screenshot browser:
      0_1564226449423_RaspiMM2_Browser_01.jpg

      screenshot VNC Viewer:
      0_1564226343512_RaspiMM2_VNC_01.jpg

      posted in Tutorials
      lolobyte
      lolobyte
    • RE: Using the Raspberry Pi Camera to see through the mirror

      @Synthic Hi, here my cam through my mirror on daytime and with lights and my setup. All pictures later…

      This one cam through mirror with lights.
      0_1560008793333_06-2019_02_08-051500-snapshot.jpg
      0_1560018279380_05-2019_02_22-110000-snapshot.jpg

      0_1560018651806_IMG_0884 (Medium).JPG

      0_1560018768186_IMG_0882 (Medium).JPG

      0_1560018830359_IMG_0779 (Medium).JPG

      posted in Troubleshooting
      lolobyte
      lolobyte
    • RE: How do I access my Pi from an externel network to install modules and change config.js?

      Possible with any DynDNS Provider such „No-IP.com“, „dyndns.com“ or „ANYDNS“.

      I use the „MyFritz!“ DynDNS service delivered with my Fritz!Box router.

      Very easy to setup.
      Only necessary to enable „Port Forwarding“ for your MM2 pi and you have access from any location of the world.
      http://raspi-mm2.xxxxxxxxxxxxxxxxxx.myfritz.net:8080/
      Works great.

      0_1555413392090_Portfreigaben.PNG

      posted in General Discussion
      lolobyte
      lolobyte
    • RE: The Italian "dual" Job [Build]

      @cupola
      Maybe he hopes to became a answer.

      I have asked this guy @N3fasto aprox. 3 weeks ago to explain me his configuration.

      No aswer!

      posted in Show your Mirror
      lolobyte
      lolobyte
    • RE: MMM-MyCommute

      @aries1984
      Bitte mir dann auch wenn moglich.

      Thanks

      posted in Transport
      lolobyte
      lolobyte