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

    HeikoGr

    @HeikoGr

    18
    Reputation
    7
    Profile views
    41
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    HeikoGr Unfollow Follow

    Best posts made by HeikoGr

    • MMM-Webuntis

      I would like to promote “my” MMM-WebUntis module. My version was forked from r3wald and originally created by thyed. Full credit goes to these developers for laying the groundwork - I would never be able to start this module myself!

      Description

      This module is ideal if your school is using WebUntis software to manage timetables. It retrieves data via the WebUntis API and displays irregular lessons, cancellations, and more—all configurable to your needs.

      • Support for Multiple Students: Display timetable changes for multiple students simultaneously, making it perfect for families with school-aged children.
      • Multiple Instances: Run several instances of the module to organize and display schedules independently.
      • Upcoming Exams: Stay ahead by showing upcoming exams or assessments directly on your MagicMirror.

      Screenshot
      Screenshot

      Download
      MMM-WebUntis

      posted in Education
      H
      HeikoGr
    • RE: MMM-Webuntis

      @OliWer i pushed a fix to github.

      I was able to reproduce your error.
      it should work now.

      posted in Education
      H
      HeikoGr
    • Develop MagicMirror the easy way — all in one workspace

      start little ‘advertising’ … (this is what you get when you ask AI to promote your project…)

      Stop juggling terminals and fighting file permissions. With MMM-DevContainer you can develop MagicMirror in VS Code using either Docker Compose or Dev Containers — your choice.

      Why it’s better:

      One workspace for everything: modules, config and css all in one place. No more multiple windows or scattered folders.
      Works with Docker Compose and/or VS Code Dev Containers: pick the workflow that fits your setup.
      No file-rights hassle: edit and save directly from VS Code without sudo/chmod pain (unlike editing inside a running MM Docker container - if you’ve ever tried that).
      Reproducible, clean environment: consistent installs, easy onboarding, and less “it works on my machine.”
      Great DX: built-in terminals, IntelliSense, debugging, and Git — all inside the container.
      npm install runs automatically on first start, so you can get coding faster.
      Get started: https://github.com/HeikoGr/MMM-DevContainer

      Quick start

      • Clone the repo:
        git clone --depth=1 https://github.com/HeikoGr/MMM-DevContainer.git
        cd MMM-DevContainer
      • Add your module:
        Create your module inside modules/YourModule (or add it as a Git submodule).
      • Keep MagicMirror core, your modules, and config together in this single workspace.
      • Choose your workflow from below:

      Option A — Docker Compose
      docker compose up --build
      Open the app in your browser (e.g., http://localhost:8080)
      Stop when done: docker compose down

      Option B — VS Code Dev Container
      Install VS Code + the “Dev Containers” extension.
      Open the MMM-DevContainer folder in VS Code.
      Reopen in Container when prompted (or use Command Palette: “Dev Containers: Reopen in Container”).

      Notes:
      At the moment it’s only testet on linux (or windows with ssh on linux…)
      Dependencies: npm install runs automatically on first start (via the devcontainer/compose setup). If your module needs extra dependencies, you can still run npm install inside the container terminal.
      All source folders are mounted into the container; edits happen from VS Code without permission issues.
      Suggestions and feedback welcome!

      Have ideas to improve the setup? Issues and PRs are very welcome.
      Tell me what works well for you and what could be smoother.

      posted in Development
      H
      HeikoGr
    • RE: Modules are loading with new docker image

      @codac API 2.5 had different endpoints, but this version is deprecated. It could go offline at any time (since june 2024).

      API 3.0 only supports the endpoint „onecall“

      For more details you need to read the API docs yourself

      posted in Troubleshooting
      H
      HeikoGr
    • RE: MMM-Webuntis

      @RobertMuc did you run npm install? i was able to reconstruct your error message by uninstalling the npm package.

      posted in Education
      H
      HeikoGr
    • RE: Experience with MMM-WebUntis?

      @rabbit83ka I got it working, with a few modifications, so i can use the qr codes from my kids (our school uses MS365 Accounts for login, so unfortunately the username + password didn’t work…). You can find it here: https://github.com/heikogr/MMM-WebUntis wich is forked from https://github.com/r3wald/MMM-Webuntis wich is forked from https://github.com/thyed/MMM-Webuntis

      posted in General Discussion
      H
      HeikoGr
    • RE: Modules are loading with new docker image

      @codac MMM-WeatherChart did also update to API 3.0

      did you update your subscription for openweathermap?
      Unfortunately you need to add a credit card. 1000 calls per day are free.

      On my system the weather modules are working (with my api key)

      the MMM-SoccerLiveScore has another API problem. not related to the magic mirror release. See: https://github.com/0m4r/MMM-SoccerLiveScore/issues/13

      posted in Troubleshooting
      H
      HeikoGr
    • RE: MMM-Webuntis

      Hello @RobertMuc,

      did this error occur when you run npm check?
      unfortunately i was not able to adopt the check.js file from https://github.com/r3wald/MMM-Webuntis

      posted in Education
      H
      HeikoGr
    • RE: 2.29.0 Weather Module w/api v3.0 works, sort of…

      I got it working and think there are a few tricky typos in your config.

      module: “weather”,
      position: “top_center”,
      config: {
      weatherProvider: “openweathermap”,
      type: “current:,
      weatherEndpoint: ‘/onecall’,
      lat: ‘34.17188’.
      lon: ‘-84.57056’,
      apiVersion: ‘3.0’,
      apiKey: 'nunya”
      

      Line 5: closing quotation marks are missing
      Line 7: point as line ending instead of comma
      Line 10: wrong quotation mark

      Your config entry type is from line 5 - 10.

      posted in Troubleshooting
      H
      HeikoGr
    • RE: Experience with MMM-WebUntis?

      @rabbit83ka I‘m not a developer either, but i think this is something i could do. But maybe it will take a few days

      posted in General Discussion
      H
      HeikoGr

    Latest posts made by HeikoGr

    • RE: MMM-Webuntis

      that’s great - i will look how i may use this in my module.
      Thank you

      posted in Education
      H
      HeikoGr
    • RE: MMM-Webuntis

      Attention / Important

      (for our school) Untis GmbH changed url and schoolname.
      You may need to log in your (childrens) account(s) an edit the config.js according to the new values.

      At least they didn’t switch off te old json-rpc api MMM-Webuntis is using

      posted in Education
      H
      HeikoGr
    • RE: Disable header in MMM-MieleAtHome and MMM-Homeconnect

      i found 2-3 ways for you to get rid of the header:

      1.: you add “!important” to force the css rule

      .MMM-MieleAtHome .module-header {
          display: none !important;
      }
      
      1. fork MMM-MieleAtHome and get rid of
      	// you have to delete this function at MMM-MietAtHome.js line 92-95
      	getHeader: function() {
      		return "Miele@Home";
      	},
      

      MMM-HomeConnect is similar. But here you have a third option: take my fork: https://github.com/heikogr/MMM-HomeConnect2 (only thing: it has an different styling)

      posted in Troubleshooting
      H
      HeikoGr
    • RE: MMM-Photoprism

      @BGH_H said in MMM-Photoprism:

      mmm-imagesphotos

      i try to answer this: mmm-imagesphotos can not access the pictures on a photoprism server (demo here: https://demo-de.photoprism.app/library/browse)

      posted in Entertainment
      H
      HeikoGr
    • RE: MMM-Webuntis

      @thk thank you for you kind word. I was able to implement a new config option “maxGridLessons” which will cut-off everything below the configured lesson. A “… more” badge is placed if an actual lesson is hidden because of this cutoff.

      posted in Education
      H
      HeikoGr
    • RE: Develop MagicMirror the easy way — all in one workspace

      Windows is working now! You need to install Linux (tested with default [according to WSL] Ubuntu and Debian) and Docker Desktop.

      posted in Development
      H
      HeikoGr
    • RE: Develop MagicMirror the easy way — all in one workspace

      @karsten13 your docker container was/is a great source of inspiration and you are right: every developer needs an own setup. The more (good) alternatives exist - the easier it gets to start developing.

      posted in Development
      H
      HeikoGr
    • RE: MMM-Photoprism

      great, that was something i wanted to start my self for a long time - thank you.

      I forked your module and added a few extras (mostly with AI, like you did :-D ):

      • use of thumbnail api (for reduced file size)
      • suspend if not visible (i use MMM-Carousel, and the pictures are not on the frontpage)
      • preload and caching (but I’m not sure if it is working as intended…)
      posted in Entertainment
      H
      HeikoGr
    • RE: Disable header in MMM-MieleAtHome and MMM-Homeconnect

      this should work, but MMM-MieleAtHome and therefore MMM-Homeconnect as a fork do override the header…

      {
        module: “MMM-MieleAtHome”,
        header: "",
        position: “bottom_left”,
       [...]
      },
      
      posted in Troubleshooting
      H
      HeikoGr
    • Develop MagicMirror the easy way — all in one workspace

      start little ‘advertising’ … (this is what you get when you ask AI to promote your project…)

      Stop juggling terminals and fighting file permissions. With MMM-DevContainer you can develop MagicMirror in VS Code using either Docker Compose or Dev Containers — your choice.

      Why it’s better:

      One workspace for everything: modules, config and css all in one place. No more multiple windows or scattered folders.
      Works with Docker Compose and/or VS Code Dev Containers: pick the workflow that fits your setup.
      No file-rights hassle: edit and save directly from VS Code without sudo/chmod pain (unlike editing inside a running MM Docker container - if you’ve ever tried that).
      Reproducible, clean environment: consistent installs, easy onboarding, and less “it works on my machine.”
      Great DX: built-in terminals, IntelliSense, debugging, and Git — all inside the container.
      npm install runs automatically on first start, so you can get coding faster.
      Get started: https://github.com/HeikoGr/MMM-DevContainer

      Quick start

      • Clone the repo:
        git clone --depth=1 https://github.com/HeikoGr/MMM-DevContainer.git
        cd MMM-DevContainer
      • Add your module:
        Create your module inside modules/YourModule (or add it as a Git submodule).
      • Keep MagicMirror core, your modules, and config together in this single workspace.
      • Choose your workflow from below:

      Option A — Docker Compose
      docker compose up --build
      Open the app in your browser (e.g., http://localhost:8080)
      Stop when done: docker compose down

      Option B — VS Code Dev Container
      Install VS Code + the “Dev Containers” extension.
      Open the MMM-DevContainer folder in VS Code.
      Reopen in Container when prompted (or use Command Palette: “Dev Containers: Reopen in Container”).

      Notes:
      At the moment it’s only testet on linux (or windows with ssh on linux…)
      Dependencies: npm install runs automatically on first start (via the devcontainer/compose setup). If your module needs extra dependencies, you can still run npm install inside the container terminal.
      All source folders are mounted into the container; edits happen from VS Code without permission issues.
      Suggestions and feedback welcome!

      Have ideas to improve the setup? Issues and PRs are very welcome.
      Tell me what works well for you and what could be smoother.

      posted in Development
      H
      HeikoGr