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

    Posts

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

      For me it’s very useful to arrive on Friday in the early evening time.

      Witch Friday its not very important.

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

      @Goldjunge_Chriz

      yea, here they are. My mirrors. Nice. And this is my Heilbronn Team!?

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

      hi, and what are you doing with the mirrors wich are picked up?

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

      Hey, it will be nice to have some little news and updates from you about the actions you made with our orders. I mean perhaps once per week or similar.

      ;-(

      posted in Hardware
      lolobyteL
      lolobyte
    • RE: Display what would you buy?

      Now, my opinion is, all of them will work. You need only a VGA to HDMI adapter.

      posted in Hardware
      lolobyteL
      lolobyte
    • RE: Modules MMM-traffic
      1. it’s the Hour you may start to reach your target destination at your desired time in 3.
      2. you understood it
      3. is your planed arrival tine to your target destination.

      Good luck

      posted in General Discussion
      lolobyteL
      lolobyte
    • RE: Is there a place where people can share their config files?

      https://forum.magicmirror.builders/topic/1844/share-your-config-js-right-here/2

      posted in General Discussion
      lolobyteL
      lolobyte
    • RE: Share your config.js right here....

      @cowboysdude

      As a file or as shown script?

      posted in General Discussion
      lolobyteL
      lolobyte
    • RE: Dead MicroSD

      @theusu5k

      The Raspian.org is working on an option to install and boot from USB.

      Actually last i know is in beta development.

      posted in Hardware
      lolobyteL
      lolobyte
    • RE: The oldest to make a Magic Mirror?

      Hi folks,

      47 in April; not a April joke! ;-)

      posted in General Discussion
      lolobyteL
      lolobyte
    • RE: Picam behind the mirror for on/off

      @Bones

      you’re wellcome

      posted in Requests
      lolobyteL
      lolobyte
    • RE: Throwing down the gauntlet

      @strawberry-3.141

      … and all for custom css i think!

      posted in Troubleshooting
      lolobyteL
      lolobyte
    • RE: Throwing down the gauntlet

      @strawberry-3.141

      Hi, @strawberry-3-141 , i’m missing something in your code.

      Where is the second curved bracket? Is somewhere more code?

      posted in Troubleshooting
      lolobyteL
      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
      lolobyteL
      lolobyte
    • RE: MMM-RandomQuranAyah

      Nice,it’s similar to Bible Verse module.

      posted in Education
      lolobyteL
      lolobyte
    • RE: MMM-Traffic config error

      @bocapie
      Hi, that’s a part of my config.js with the trafic module for you as an example.

                      {
                              "module": "MMM-Traffic",
                              "position": "top_left",
                              "header": "YourHeaderName",
                              "classes": "bright small",
                              "config": {
                                      "api_key": "xxxxxxxxxYourApiKeyxxxxxxxxxx",
                                      "mode": "driving",
                                      "language": "de",
                                      "show_summary": "true",
                                      "origin": "YourStartLocation",
                                      "destination": "YourDestinationLocation",
                                      "arrival_time": "0700",
                                      "route_name": "YourRouteName",
                                      "changeColor": true,
                                      "showGreen": false,
                                      "limitYellow": 5,
                                      "limitRed": 20,
                                      "traffic_model": "pessimistic",
                                      "interval": 120000
                              }
                              },
      
      
      posted in Troubleshooting
      lolobyteL
      lolobyte
    • RE: [ORDER CLOSED] Two way mirror order in Germany

      Late but done now.

      posted in Hardware
      lolobyteL
      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
      lolobyteL
      lolobyte
    • 1
    • 2
    • 3
    • 4
    • 5
    • 14
    • 15
    • 3 / 15