• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
  1. Home
  2. lolobyte
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

lolobyte

@lolobyte

51
Reputation
5.6k
Profile views
292
Posts
0
Followers
0
Following
Joined Nov 17, 2016, 1:11 PM
Last Online Mar 28, 2024, 8:44 AM

lolobyte Unfollow 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
    L
    lolobyte
    Mar 17, 2017, 5:23 PM
  • 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
    L
    lolobyte
    Apr 10, 2017, 6:31 PM
  • 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
    L
    lolobyte
    Jan 24, 2017, 7:06 AM
  • 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
    L
    lolobyte
    Jan 27, 2017, 8:26 AM
  • RE: Mobile app (bachelor thesis)

    I’m waiting for ios App beta testing. ;-)

    Done

    posted in Development
    L
    lolobyte
    Nov 17, 2016, 10:31 PM
  • 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
    L
    lolobyte
    Jan 23, 2017, 1:26 PM
  • 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
    L
    lolobyte
    Feb 10, 2017, 9:10 PM
  • RE: Error found: Error: Module version mismatch. Expected 50, got 46.

    @yawns
    My Problem is:
    Error: Module version mismatch. Expected 50, got 51.
    NOT: Expected 50, got 46

    Hello, i have another version of electron:

    pi@raspberrypi:~/MagicMirror $ npm list | grep electron
    ├─┬ electron-prebuilt@1.4.6
    │ ├─┬ electron-download@3.0.1
    npm ERR! extraneous: stylelint@7.5.0 /home/pi/MagicMirror/node_modules/stylelint
    

    What must be done here?

    npm rebuild --runtime=electron --target=1.4.6 --disturl=https://atom.io/download/atom-shell --abi=50

    Is that ok???

    posted in Troubleshooting
    L
    lolobyte
    Nov 18, 2016, 10:50 PM
  • 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
    L
    lolobyte
    Feb 18, 2017, 7:52 PM
  • 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
    L
    lolobyte
    Dec 2, 2016, 10:42 AM

Latest posts made by lolobyte

  • RE: MMM-MagicReplicator

    @ilovric OK…

    posted in Productivity
    L
    lolobyte
    Dec 7, 2023, 8:34 PM
  • RE: MMM-PoemOfTheDay show standard, but no german language!

    @sdetweil

    Good idea.
    I made it like the example on the github page.

      detectLanguageApiKey: "{API_KEY}",
    
    posted in Entertainment
    L
    lolobyte
    Apr 9, 2022, 4:45 PM
  • RE: MMM-PoemOfTheDay show standard, but no german language!

    @sdetweil

    ok, you’re right.

    The braces.

    Resolved.

    Thanks a lot.

    posted in Entertainment
    L
    lolobyte
    Apr 9, 2022, 1:52 PM
  • RE: MMM-PoemOfTheDay show standard, but no german language!

    @sdetweil

    Thank you for your quick response.

    Here is a part of my config…
    I have already inserted the api-key.

                    {
                            module: "MMM-PoemOfTheDay",
                            position: "lower_third",
                            config: {
                                    textLimit: 1000,
                                    lineLimit: 10,
                                    detectLanguageApiKey: "{xxxxxxxxxxxxxxxx}",
                                    languageSet: ["de"],    //["en", "es"]
                                    updateInterval: 120000,
                                    },
                    },
    
    
    posted in Entertainment
    L
    lolobyte
    Apr 9, 2022, 12:29 PM
  • MMM-PoemOfTheDay show standard, but no german language!

    When trying to switch to German “de” language, pm log say’s:

    There was an error filteringByLanguage, returning all poems

    Any ideas?

    posted in Entertainment
    L
    lolobyte
    Apr 9, 2022, 11:59 AM
  • RE: How many Ram needed?

    @bennkoo
    Hello Friend.

    2GB is more as enough only for the MM2!

    posted in Hardware
    L
    lolobyte
    Nov 28, 2020, 8:03 PM
  • RE: Dell Monitor 19" 1905FP for my Magic Mirror

    @kusselin

    OK, much better…
    :-)

    posted in Hardware
    L
    lolobyte
    Nov 27, 2020, 8:43 AM
  • 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
    L
    lolobyte
    Nov 25, 2020, 5:51 PM
  • 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
    L
    lolobyte
    Nov 24, 2020, 9:51 PM
  • 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
    L
    lolobyte
    Nov 23, 2020, 8:18 PM
Enjoying MagicMirror? Please consider a donation!
MagicMirror created by Michael Teeuw.
Forum managed by Sam, technical setup by Karsten.
This forum is using NodeBB as its core | Contributors
Contact | Privacy Policy