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

    akrlfix

    @akrlfix

    1
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    akrlfix Unfollow Follow

    Best posts made by akrlfix

    • RE: Raspberry Pi 3/Zero eInk (epaper) MagicMirror

      Hi,
      ich habe eine andere (bessere) Lösung gefunden mit Hilfe von Xvfb. Mit Xvfb wird eine virtuelle X11 session gestartet und MM darauf angezeigt. Dann wird ein Screenshot vom framebuffer gemacht und auf dem ePaper angezeigt.

      # Create Virtual MagicMirror Display
      sudo apt update
      sudo apt install xvfb
      Xvfb :1 -screen 0 800x480x24 -fbdir /home/pi &
      cd /home/pi/MagicMirror
      DISPLAY=:1 nohup npm start &
      
      # Create Screenshot
      cat /home/pi/Xvfb_screen0 | convert xwd:- bmp:/home/pi/screenshot.bmp 
      # Run Python Script to update ePaper Display
      python3 /home/pi/Workspace/ePaper/epd_7in5_V2_test.py
      
      posted in Tutorials
      A
      akrlfix

    Latest posts made by akrlfix

    • RE: Raspberry Pi 3/Zero eInk (epaper) MagicMirror

      Hi,
      ich habe eine andere (bessere) Lösung gefunden mit Hilfe von Xvfb. Mit Xvfb wird eine virtuelle X11 session gestartet und MM darauf angezeigt. Dann wird ein Screenshot vom framebuffer gemacht und auf dem ePaper angezeigt.

      # Create Virtual MagicMirror Display
      sudo apt update
      sudo apt install xvfb
      Xvfb :1 -screen 0 800x480x24 -fbdir /home/pi &
      cd /home/pi/MagicMirror
      DISPLAY=:1 nohup npm start &
      
      # Create Screenshot
      cat /home/pi/Xvfb_screen0 | convert xwd:- bmp:/home/pi/screenshot.bmp 
      # Run Python Script to update ePaper Display
      python3 /home/pi/Workspace/ePaper/epd_7in5_V2_test.py
      
      posted in Tutorials
      A
      akrlfix