• 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. thobach
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
T
Offline
  • Profile
  • Following 0
  • Followers 1
  • Topics 0
  • Posts 41
  • Groups 0

thobach

@thobach

2
Reputation
862
Profile views
41
Posts
1
Followers
0
Following
Joined Dec 14, 2016, 9:09 PM
Last Online Jan 12, 2025, 8:35 AM

thobach Unfollow Follow

Best posts made by thobach

  • RE: Gesture recognition

    I also built a gesture detection module using infrared sensors:
    https://github.com/thobach/MMM-Gestures
    It requires an Arduino and two infrared sensors for detecting presence and up, down, left, right, close and far hand gestures.
    It can be used to turn the mirror into sleep mode when its not used, shows compliments when you stand in front of it and allows to scroll through the news ticker and view more news details incl. the full news article.

    posted in General Discussion
    T
    thobach
    Feb 26, 2017, 6:05 PM
  • RE: Wunderlist shuts down May 6th

    @mchrdk @binderth @lavolp3 I created a new module for Microsoft To Do at https://github.com/thobach/MMM-MicrosoftToDo. The migration from Wunderlist to Microsoft To Do was quite seamless.

    Could you please test it and provide me some feedback? Thanks!

    posted in General Discussion
    T
    thobach
    Dec 24, 2019, 10:19 AM

Latest posts made by thobach

  • RE: weather module with temp/precipitation graph for 1-2 days

    @AnduriI You may like https://github.com/thobach/MMM-OpenWeather24Hours which I built and migrated from Darksky to OpenWeather.

    posted in Requests
    T
    thobach
    Sep 24, 2023, 8:33 AM
  • RE: Help Finding gesture controlled module

    @ayotrav You might want to check out my https://github.com/thobach/MMM-Gestures module

    posted in Requests
    T
    thobach
    Sep 3, 2023, 6:43 AM
  • RE: electron-rebuild problems with MagicMirror 2.22.0

    @karsten13 What are your thoughts on adding npm install @electron/rebuild --unsafe-perm; \ as part of the container image creation process to https://gitlab.com/khassel/magicmirror/-/blob/master/build/Dockerfile-debian?

    posted in Troubleshooting
    T
    thobach
    Mar 16, 2023, 9:16 PM
  • RE: MMM-ToDo Microsoft (missing ordering options)

    I’m the author of https://github.com/thobach/MMM-MicrosoftToDo in case that’s the module you’re referring to ;)

    Hashtags are already color coded if you specify the “highlightTagColor” parameter (see https://github.com/thobach/MMM-MicrosoftToDo#installation).

    Sorting is possible with the parameter “orderBy”, unfortunately the API does not allow to order by title, which means it would need to be manually implemented on-top if that is a priority for you.
    I added though sorting by importance if you set the “orderBy” parameter to “importance”.

    posted in Troubleshooting
    T
    thobach
    Jan 22, 2023, 6:34 PM
  • RE: Vcgencmd display cron job not working

    @Nneuland I assume you are now on Bullseye - see here https://forum.magicmirror.builders/topic/16865/mmm-remotecontrol-or-vcgencmd-issue and change the settings to use the fake KMS driver (fkms) instead of kms.

    posted in Troubleshooting
    T
    thobach
    Nov 27, 2022, 7:00 AM
  • RE: MMM-Remote-control all working except for monitor on and off

    @diemen112 @karsten13 For bullseye I needed to change the display driver to the fake kms one (dtoverlay=vc4-fkms-v3d in /boot/config.txt) to have any effect of vcgencmd.
    Afterwards vcgencmd only worked from the host, but not from @karsten13’s docker container. There I ran into the same problem with my MMM-Gestures module:

    [09.10.2022 17:54.49.927] [LOG]   Sun Oct 09 2022 17:54:49 GMT+0200 (Central European Summer Time): exec error: Error: Command failed: vcgencmd display_power 0
    vcgencmd: error while loading shared libraries: libvchiq_arm.so.0: cannot open shared object file: No such file or directory
    

    I fixed it by mounting two more files from the host, my volume mounts now are:

        volumes:
          - ../mounts/config:/opt/magic_mirror/config
          - ../mounts/modules:/opt/magic_mirror/modules
          - ../mounts/css:/opt/magic_mirror/css
          - /tmp/.X11-unix:/tmp/.X11-unix
          - /opt/vc:/opt/vc/:ro
          - /usr/bin/vcgencmd:/usr/bin/vcgencmd
          - /usr/lib/arm-linux-gnueabihf/libvchiq_arm.so.0:/usr/lib/arm-linux-gnueabihf/libvchiq_arm.so.0
          - /usr/lib/arm-linux-gnueabihf/libvcos.so.0:/usr/lib/arm-linux-gnueabihf/libvcos.so.0
          - /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket
    
    posted in Troubleshooting
    T
    thobach
    Oct 9, 2022, 5:15 PM
  • RE: How to interact with the news module?

    @clhe0423 You can find here an example how it is used in MMM-Gestures: https://github.com/thobach/MMM-Gestures/blob/master/MMM-Gestures.js#L110 & https://github.com/thobach/MMM-Gestures/blob/master/MMM-Gestures.js#L118

    posted in Troubleshooting
    T
    thobach
    May 2, 2021, 1:48 PM
  • RE: MMM Pages turn Pages manually

    @acethefire On https://github.com/edward-shen/MMM-pages#notifications the usable events are described. I use them for example here: https://github.com/thobach/MMM-Gestures/blob/094ef30fe4a7e9204846a4f77d6314b61ee1d758/MMM-Gestures.js#L85

    posted in Troubleshooting
    T
    thobach
    Apr 25, 2021, 6:06 AM
  • RE: Microsoft To-Do (wunderlist replacement?)

    @Mighty-Mouseq Nice! Do you want to create a pull request? I could then merge it into the main branch for everyone.

    posted in Requests
    T
    thobach
    Oct 25, 2020, 9:41 AM
  • RE: Measuring power/energy cost on a 24/7 running pi

    If you are looking for some code to disable the monitor or if you want the use an infrared sensor to detect when someone is in front of the mirror and only then turn it on, you can check my module https://github.com/thobach/MMM-Gestures.

    posted in Tutorials
    T
    thobach
    Oct 11, 2020, 12:05 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