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

    Posts

    Recent Best Controversial
    • 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
    • RE: MMM-Webuntis

      @kurkarte you can try to search your school at https://webuntis.com/ . On the next site the school name in the URL could work if you replace empty spa es with „+“ signs.

      posted in Education
      H
      HeikoGr
    • RE: MMM-Webuntis

      Note to myself: enhance error handling

      I did a clean reinstall on my machine and it worked with your config (and our qr code).

      Maybe the school doesn’t publish personal timetables?

      Can you try to set useClassTimetable: true,

      posted in Education
      H
      HeikoGr
    • RE: MMM-Webuntis

      @Eli the module surely isn‘t running properly.

      I think the module MMM-Remote-Control tries to run git to get the npm module untis (which is required by my module) and has no success.

      But this is only a guess… could be totally wrong

      posted in Education
      H
      HeikoGr
    • RE: MMM-Webuntis

      @Eli looks interesting

      • Why are the references to c:\ do you run magicmirror on windows?
      • what’s your way to install a new module? Do you use an module for this?
      posted in Education
      H
      HeikoGr
    • RE: MMM-Webuntis

      The default is to show only changes in the schedule.
      But you are right: a few more examples and screenshots are on my todo list!

      You can try this (look for showRegularLessons).

              {
                  disabled: false,
                  module: "MMM-Webuntis",
                  header: "schedule for next 3 days",
                  position: "top_right",
                  config: {
                      students: [
                          {
                              title: "children",
                              qrcode: "untis://s",
                          },
                      ],
                      days: 3,
                      showRegularLessons: true
                  }
              },
      
      posted in Education
      H
      HeikoGr
    • RE: MMM-Webuntis

      @schmucke unfortunately I am not able to get the informations via the npm webuntis class from the untis API.

      Don’t your children have own accounts you can use? Or do they have an MS365 login? In this case you can use the qr code login method.

      posted in Education
      H
      HeikoGr
    • RE: MMM-Webuntis

      @schmucke at the moment this module asks explicitly for the „own“ timetable. So the error is absolutely because of the parents account. I will look, if i can get the students data out of an existing parents account.

      posted in Education
      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: 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
    • 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: 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: Modules are loading with new docker image

      @sdetweil at least when openweathermap is used.

      posted in Troubleshooting
      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: Modules are loading with new docker image

      @codac you need to add

      weatherEndpoint: '/onecall',
      

      for the weather module as it is using API 3.0 from openweathermap.
      For the other modules i may look later if i have more time and access to my homelab

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

      I just tested it. You can pass a header by yourself but need to add

      appendLocationNameToHeader: false,
      

      Otherwise it will add the timezone again.

      
       
              {
                  disabled: false,
                  module: "weather",
                  header: "YOURCITY",
                  position: "top_right",
                  config:
                  {
                      // See 'Configuration options' for more information.
                      weatherProvider: 'openweathermap',
                      appendLocationNameToHeader: false,
                      weatherEndpoint: '/onecall',
                      apiKey: 'API',
                      apiVersion: '3.0',
                      lat: '51.5',
                      lon: '9.52',
                      type: 'forecast',
                      colored: true,
                      fade: false,
                      maxNumberOfDays: 3,
                      degreeLabel: 'true',
                      showWindDirectionAsArrow: 'true',
                      decimalSymbol: ','
                  }
              },
      
      
      posted in Troubleshooting
      H
      HeikoGr
    • RE: 2.29.0 Weather Module w/api v3.0 works, sort of…

      @Peter of course

      
            {
                  disabled: false,
                  module: "weather",
                  position: "top_right",
                  config:
                  {
                      // See 'Configuration options' for more information.
                      weatherProvider: 'openweathermap',
                      weatherEndpoint: '/onecall',
                      apiKey: 'apikey',
                      apiVersion: '3.0',
                      lat: '50.465',
                      lon: '9.481',
                      type: 'forecast',
                      colored: true,
                      fade: false,
                      maxNumberOfDays: 3,
                      degreeLabel: 'true',
                      showWindDirectionAsArrow: 'true',
                      decimalSymbol: ','
                  }
              },
      
      
      posted in Troubleshooting
      H
      HeikoGr
    • RE: Modules are loading with new docker image

      Can you post your (anonymized) config file?

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

      @Peter it shows the timezone „EUROPE/BERLIN“, but the weather is correct.

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

      @Peter no, unfortunately not

      posted in Troubleshooting
      H
      HeikoGr
    • 1
    • 2
    • 3
    • 4
    • 3 / 4