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

    Posts

    Recent Best Controversial
    • RE: Run MM on Ubuntu 16 VM

      @justjim1220
      did you try to start the “Server only” mode an open a browser on Ubuntu with IP of your MM?
      To start Server only do node serveronly in your MagicMirror directory.

      Maybe this helps to find the problem.

      AxLED

      posted in General Discussion
      A
      AxLed
    • RE: Change language of MMM-Remote-Control

      It depends on the language flag of your MM config.js, try this and restart MM:

      language: "nl",
      

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: Physical switch initiated with module in MM

      @Gooral
      One possibility is using a Relay module like this Link.

      AxLED

      AxLED

      posted in Requests
      A
      AxLed
    • RE: calendar not showing

      @johnnewhouse
      In my MM your posted calendar config is working.

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @AgP42
      You are right, i told you the wrong line, i corrected my thread above.
      I am glad it is working on your MM as needed.
      AxLED

      posted in System
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @AgP42
      Hi,

      thanks for your request, i checked my code and can give you a solution for the brightness issue.
      I found out, that it seems to be a problem with MMM-Remote-Control, node_helper.js

      But there is a workaround:
      Replace line 618
      res.send({"status": "success"});
      through
      if (res) { res.send({"status": "success"}); }

      Thanks to glitch452 who found the error, details see:
      https://github.com/Jopyth/MMM-Remote-Control/issues/76

      Sample code for config.js, Module MMM-Navigate:

      {notification: "REMOTE_ACTION", payload: {action: "BRIGHTNESS", value: "200"}},
      

      AxLED

      posted in System
      A
      AxLed
    • RE: Syntax Error.

      @Nico-Biester
      There are some mistakes in your module config:

      • wrong quotes, you use “ instead of " (are you using mac to edit config.js?)
      • missing commas (in lessons, after 11:50)
      • missing brackets and/or bracket on the wrong position
      • wrong translations, you cant translate mon:to Mo:, as the module is looking for the array name of mon:
      • general advice: always use brackets in pair (every bracket which opens, has to close somewhere)

      This code shoud work:

      {
                  module: "MMM-WeeklySchedule",
                  position: "top_center",
                  header: "Stundenplan",
                  config: {
                      schedule: {
                          timeslots: [ "8:00", "8:30", "10:00", "11:40", "11:50" ,"13:00", "14:00", "14:45", "16:00"],
                          lessons: {
                              mon: [ "GA", "LZ - ", "Pause (30)", "1 FS", "2 FS", "Pause (60)", "LB", "3 FS", "Feierabend"],
                              tue: [ "GA", "LZ - ", "Pause (30)", "1 FS", "2 FS", "Pause (60)", "LB", "3 FS", "Feierabend"],
                              wed: [ "GA", "LZ - ", "Pause (30)", "1 FS", "2 FS", "Pause (60)", "LB", "3 FS", "Feierabend"],
                              thu: [ "GA", "LZ - ", "Pause (30)", "1 FS", "2 FS", "Pause (60)", "LB", "3 FS", "Feierabend"],
                              fri: [ "GA", "LZ - ", "Pause (30)", "1 FS", "2 FS", "Pause (60)", "LB", "3 FS", "Feierabend"],
                                  },
                              updateInterval: 1 * 60 * 60 * 1000, // every hour
                              showNextDayAfter: "22:00"
                          },
                  },
              },
      

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: Weatherforecast problem.

      @Nico-Biester
      Can you mark this Thread as solved?
      AxLed

      posted in Troubleshooting
      A
      AxLed
    • RE: MMM-MyWeather doesn't show up

      @SoleLo
      try to remove the quotes around the values true and false inside your Module MMM-MyWeather config.
      For example:

      coloricon: true,
      

      instead of

      coloricon: "true",
      

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: Weatherforecast problem.

      @Nico-Biester
      Hi Nico,

      try this:

      {
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "Bonn,Germany",
      				locationID: "2946447",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "YOUR_OPENWEATHER_API_KEY"
      			}
      },
      

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: "HIDE" and/or "SHOW" modules automatically...

      @justjim1220
      The modules you can use are:
      MMM-Remote-Control (to show/hide modules)
      MMM-ModuleSchedulert (to define when you would like to do this

      But there are some more modules in the MM Cosmos.

      AxLED

      posted in General Discussion
      A
      AxLed
    • RE: Calendar Module - interaction - scrollable - different start dates

      Hi to all,

      i checked the default calendar module and found an approach:
      If i manipulate following code:
      calendar.js, Line 338:
      var today = moment().startOf("day");’ to var today = moment().subtract(60,'d').startOf("day");

      and

      calendarfetcher.js, Line 74:
      var today = moment().startOf("day").toDate(); to var today = moment().subtract(60,'d').startOf("day").toDate();

      the calendar module of my MM will show calendar entries starting Date of two month ago (today-60 days).

      Now i have to add following functions:

      • notification received function for ±5 days (for example)
      • manipulate variable today with value of notification received
      • pass variable today to the right place in code of calender.js and calendarfetcher.js
      • refresh module after receiving notification
      • stop sending notification from calendar to other modules, in case variable today is manipulated

      Sources: https://momentjs.com/docs/#/manipulating/add/

      Greets

      AxLED

      posted in Requests
      A
      AxLed
    • Calendar Module - interaction - scrollable - different start dates

      Hi to all MM-Builders,

      as i want to use my MM as replacement for a analog family cardboard calendar i have following question/request.

      Is there calendar module, where i can “scroll” throuh the dates?
      As i have a rotary encoder connected to my pi 3 - sending of notifications is no problem.
      Something like “+7” or “-7” (days).

      I checked the default calendar module and guess i have to add “notification received”, but i dont understand, how the module reads an .ics file.

      Is it possible to set a start date, from which the calender entries should be shown?
      So i could manipulate the startdate by notifications from my rotary module (MMM-Navigate).

      Maybe someone has a tip where i can start.

      Thanks in advance.

      AxLED

      posted in Requests
      A
      AxLed
    • RE: Fifa World Cup overview

      Hi to all,

      today i tried MagicMirror-FootballLeagues (which is a modified fork of MMM-SoccerLiveScore) with League ID 467 an the following config:

      {
                  module: 'MagicMirror-FootballLeagues',
                  position: 'top_left',
                  header: 'Live-Scores',
                  config: {
                      leagues: [467],
                          showNames: true,
                          displayTime: 60 * 1000,
                          showTables: true,
                      showLogos: true,
                      apiKey: 'secret',
                      showUnavailable: true
                  }
      
      

      Works perfect. In my opinion the fastes way to get Fifa World Cup on MM.

      AxLED

      posted in Requests
      A
      AxLed
    • RE: MMM-ModuleScheduler (how to use MMM-RemoteControl to HIDE/SHOW modules)?

      You are welcome, i had some visual basic skills in the past an trained myself javascript skills the last weeks, for modifying and writing own modules.
      I am sure in a few weeks, you are helping other MM Users to do some customizing on their mirrors.

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: Fifa World Cup overview

      @rak

      I think your fork is only working for league 4000 (Worldcup/WM 2018), as the other leagues have still use the old links. I didnt have the time to do a fork for all leagues.
      I guess you have to some if then else statements, if league 4000 ist used.

      AxLED

      posted in Requests
      A
      AxLed
    • RE: Fifa World Cup overview

      @PaulB

      Hi,

      what are the logs showing? (npm start dev [on Raspberry]) or (F12 [on broser like Firefox]).

      AxLED

      posted in Requests
      A
      AxLed
    • RE: MMM-ModuleScheduler (how to use MMM-RemoteControl to HIDE/SHOW modules)?

      @blup said in MMM-ModuleScheduler (how to use MMM-RemoteControl to HIDE/SHOW modules)?:

      {notification: ‘REMOTE_ACTION’, schedule: ‘0 6 * * MON-FRI’, payload: {action: “SHOW&module=module_15_MMM-Traffic”}},

      Hi Peter,

      1st Tip:
      I think your syntax in config.js is wrong.
      You use:

      {notification: 'REMOTE_ACTION', schedule: '0 6 * * MON-FRI', payload: {action: "SHOW&module=module_15_MMM-Traffic"}},
      

      and i think (didnt test it) it should be

      {notification: 'REMOTE_ACTION', schedule: '0 6 * * MON-FRI', payload: {action: "SHOW", module: "module_15_MMM-Traffic"}},
      

      2nd Tip:
      Have you checked the config options of MMM-Traffic, see this entries:

      showWeekend, startHr, endHr, hideOffHours
      

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: MMM-ModuleScheduler (how to use MMM-RemoteControl to HIDE/SHOW modules)?

      Hi,

      what are the logs showing? (npm start dev [on Raspberry]) or (F12 [on broser like Firefox]).

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: Fifa World Cup overview

      @paulb said in Fifa World Cup overview:

      “sudo nano /home/pi/MagicMirror/MMM-SoccerLiveScore/node_helper.js”

      Hi Paul,
      there is a folder missing in your command, there must be a /modules/ between MagicMirror and MMM-Soccer…
      “sudo nano /home/pi/MagicMirror/modules/MMM-SoccerLiveScore/node_helper.js”

      AxLED

      posted in Requests
      A
      AxLed
    • 1
    • 2
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 9 / 12