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

    Posts

    Recent Best Controversial
    • RE: MagicMirror is stolen by commercial

      @MichMich yes but the thing i don’t like is that they sell it as their idea.

      I also just placed a link to a german blog. here is the original vendor http://www.perseusmirrors.com/

      posted in General Discussion
      D
      DirkS
    • MagicMirror is stolen by commercial

      https://g-pulse.de/der-smarte-spiegel/?utm_source=Facebook&utm_medium=SocialMedia&utm_term=adwecl&utm_content=FB_smarte_spiegel_allgemein2&utm_campaign=smarte_spiegel_allgemein2

      I just found. They are telling it a brand new idea…

      posted in General Discussion
      D
      DirkS
    • RE: Motion Detector

      @done as discribed above by @cpramhofer (thanks to you :) ) i created the monitor_on and off.sh script.
      With FHEM i’m polling the PIR status and use a DOIF to call on or off. Because my homeautomation depends in FHEM i have much more control instead of using a MM module, i switch much more devices with the PIR as well. I have several Pi’s with FHEM installed so it is also on the PI for the Mirror.

      posted in Utilities
      D
      DirkS
    • RE: Motion Detector

      @bibi yes you need to include it into /boot/config.txt

      posted in Utilities
      D
      DirkS
    • RE: Motion Detector

      Hi,

      for all the people here I wrote it more cleary :D

      i had big problems by switching off my screen with the PIR or another module with camera. The problem was not the module itself it is a firmware problem of the PI. I could see the same problem outside of MagicMirror as well by trying different things.

      Reported also here:
      https://github.com/raspberrypi/linux/issues/487

      The symptom is that after a while of switching on and off the screen it remains off.

      Dmesg reports the problem:

      Nov  1 08:22:00 MagicMirror kernel: [86411.138649] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.138665] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.138670] detected fb_set_par error, error code: -22
      Nov  1 08:22:00 MagicMirror kernel: [86411.139138] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.139148] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.139152] detected fb_set_par error, error code: -22
      Nov  1 08:22:00 MagicMirror kernel: [86411.140642] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.140654] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.140659] detected fb_set_par error, error code: -22
      Nov  1 08:22:00 MagicMirror kernel: [86411.140777] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.140785] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.140789] detected fb_set_par error, error code: -22
      Nov  1 08:22:00 MagicMirror kernel: [86411.140856] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.140863] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.140868] bcm2708_fb_pan_display(0,0) returns=-22
      Nov  1 08:22:00 MagicMirror systemd[1]: Started Getty on tty6.
      Nov  1 08:22:00 MagicMirror kernel: [86411.256398] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.256413] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.256418] detected fb_set_par error, error code: -22
      Nov  1 08:22:00 MagicMirror kernel: [86411.256758] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.256770] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.256775] bcm2708_fb_pan_display(0,0) returns=-22
      Nov  1 08:22:00 MagicMirror kernel: [86411.296428] raspberrypi-firmware soc:firmware: Request 0x00040002 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.296455] bcm2708_fb soc:fb: bcm2708_fb_blank(0) failed: -22
      

      Switching off the screen with

      /opt/vc/bin/tvservice -o

      and on with

      /opt/vc/bin/tvservice --preferred && sudo chvt 6 && sudo chat 7

      does not work reliable! The git issue tells you more about.

      The workaround is a not yet described solution inside the config.txt

      https://github.com/raspberrypi/documentation/pull/245/files

      the option “hdmi_blanking=1” is your friend in this case! :D

      Now i’m switching off the screen with

      vcgencmd display_power 0

      and on with

      vcgencmd display_power 1

      And it is working now like a charm! Did started to use it one day before this report and it is still working without any issue :)

      Honestly speaking i don’t use any MM module for switching off anymore. But maybe my discovered solution will help any other and might be a way to change the module as well.

      If you have trouble with on/off as well please check the output of dmesg. If you have the frambuffer problem you can fix it.

      My personal solution is to have the PIR state at FHEM and from FHEM i’m using a script to switch the screen. But that’s a special case and for the most people here the usage of a MM Module will be the better way.

      regards
      Dirk

      posted in Utilities
      D
      DirkS
    • RE: PIR-Sensor - put your mirror to sleep if not used

      Hi,

      i had big problems by switching off my screen with the PIR or another module with camera. The problem was not the module itself it is a firmware problem of the PI. I could see the same problem outside of MagicMirror as well by trying different things.

      Reported also here:
      https://github.com/raspberrypi/linux/issues/487

      The symptom is that after a while of switching on and off the screen it remains off.

      Dmesg reports the problem:

      Nov  1 08:22:00 MagicMirror kernel: [86411.138649] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.138665] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.138670] detected fb_set_par error, error code: -22
      Nov  1 08:22:00 MagicMirror kernel: [86411.139138] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.139148] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.139152] detected fb_set_par error, error code: -22
      Nov  1 08:22:00 MagicMirror kernel: [86411.140642] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.140654] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.140659] detected fb_set_par error, error code: -22
      Nov  1 08:22:00 MagicMirror kernel: [86411.140777] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.140785] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.140789] detected fb_set_par error, error code: -22
      Nov  1 08:22:00 MagicMirror kernel: [86411.140856] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.140863] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.140868] bcm2708_fb_pan_display(0,0) returns=-22
      Nov  1 08:22:00 MagicMirror systemd[1]: Started Getty on tty6.
      Nov  1 08:22:00 MagicMirror kernel: [86411.256398] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.256413] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.256418] detected fb_set_par error, error code: -22
      Nov  1 08:22:00 MagicMirror kernel: [86411.256758] raspberrypi-firmware soc:firmware: Request 0x00048003 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.256770] bcm2708_fb soc:fb: Failed to allocate GPU framebuffer (-22)
      Nov  1 08:22:00 MagicMirror kernel: [86411.256775] bcm2708_fb_pan_display(0,0) returns=-22
      Nov  1 08:22:00 MagicMirror kernel: [86411.296428] raspberrypi-firmware soc:firmware: Request 0x00040002 returned status 0x80000001
      Nov  1 08:22:00 MagicMirror kernel: [86411.296455] bcm2708_fb soc:fb: bcm2708_fb_blank(0) failed: -22
      

      Switching off the screen with

      /opt/vc/bin/tvservice -o

      and on with

      /opt/vc/bin/tvservice --preferred && sudo chvt 6 && sudo chat 7

      does not work reliable! The git issue tells you more about.

      The workaround is a not yet described solution inside the config.txt

      https://github.com/raspberrypi/documentation/pull/245/files

      the option “hdmi_blanking=1” is your friend in this case! :D

      Now i’m switching off the screen with

      vcgencmd display_power 0

      and on with

      vcgencmd display_power 1

      And it is working now like a charm! Did started to use it one day before this report and it is still working without any issue :)

      Honestly speaking i don’t use any MM module for switching off anymore. But maybe my discovered solution will help any other and might be a way to change the module as well.

      If you have trouble with on/off as well please check the output of dmesg. If you have the frambuffer problem you can fix it.

      My personal solution is to have the PIR state at FHEM and from FHEM i’m using a script to switch the screen. But that’s a special case and for the most people here the usage of a MM Module will be the better way.

      regards
      Dirk

      posted in System
      D
      DirkS
    • RE: MMM-FHEM shows values from FHEM devices ...

      Did you try to use some more modules of FHEM for different device types? It does not work correctly. The fading between the information is not working as i discovered.

      posted in Utilities
      D
      DirkS
    • RE: Introduce yourself!

      Hi i’m Dirk from Germany. I’m 35 years old and an application engineer for laser marking systems in industries.

      Collecting a lot of hobbies such as Modding, Networking, Renovation, Garden, building things in general.

      It was very nice to get in touch with the Magic Mirror Project and started to build my first. Searched a very long time for a good place that it can be a part of our daily life. Found it a couple of month later and resulted in an InWall Mirror. Will be completed soon! :D

      Nice to be here!

      regards
      Dirk

      posted in General Discussion
      D
      DirkS
    • RE: Where to get (cheap) acrylic mirror from in Germany

      Yesterday i’ve got the MySpiegel.de mirror. I’m satisfied!

      It is still packed in foil because the frame did not arrive, yet. So i will show pictures of it soon.

      posted in Hardware
      D
      DirkS
    • RE: Motion Detector

      So here i found a workaround. Maybe it fixes the issue but let’s see. I just modified my test script and need to see it the next hrs/days

      https://github.com/raspberrypi/documentation/pull/245/files

      https://github.com/raspberrypi/linux/issues/487

      posted in Utilities
      D
      DirkS
    • 1 / 1