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

    Posts

    Recent Best Controversial
    • RE: Peek-a-boo...

      @carteblanche

      if (notification === "HIDE_CALENDAR" || "HIDE_ALL")
      
      this will be always true: notification === "HIDE_CALENDAR" can be true or false, but "HIDE_ALL" will be always true
      

      that’s why it always hide the module

      it must be like that

      if (notification === "HIDE_CALENDAR" || notification === "HIDE_ALL") {
          this.hide();
      } else if (notification === "SHOW_CALENDAR" || notification === "SHOW_ALL") {
          this.show();
      }
      },
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Dev Gallery

      my all time favourite

      alt text

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • Dev Gallery

      Let’s collect some pictures for developers

      Russian Roulette (Dev Edition)
      alt text

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: Turn on and off monitor through HDMI

      @RHeniz you can do that by combining those two modules

      https://github.com/ianperrin/MMM-ModuleScheduler

      https://github.com/Jopyth/MMM-Remote-Control

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: Black screen after installation on Pi 2 model B V1.1

      @vicdilou cd ~/MagicMirror then npm start

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Black screen after installation on Pi 2 model B V1.1

      @vicdilou what do you mean with launch index.html? did you open this file in a browser? or did you started with npm or node server only?

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: How can I see my bookmarked message?

      @bhepler https://forum.magicmirror.builders/user/bhepler/favourites

      posted in Forum
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Fuel

      @ostfilinchen it’s done must have forgot that one

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • MMM-AlarmClock

      Based on a request from @cowboysdude I created this alarm clock a month ago

      It works for touch and non touch mirrors

      alt text

      alt text

      [card:fewieden/MMM-AlarmClock]

      posted in Utilities alarm clock
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      Changelog:

      • Handling Bye Week for focus_on teams

      alt text

      [card:fewieden/MMM-NFL]

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Fuel

      Changelog:

      It’s now possible to show

      • multiple fuel types at once
      • whether the gas station is open or closed

      Have a look on the new config options: types, sortBy and open

      Deprecated config options: type

      Shootout to @ostfilinchen who did the prework for it

      alt text

      [card:fewieden/MMM-Fuel]

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-FHEM

      @cpramhofer the last comma will not make a difference.

      normally a comma at the end is a syntax error, but meanwhile the engines kind of ignore it and handle it correctly

      it’s like in human languages if you write a list, you will not write buy me eggs, cake, ham,

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Calendar Module: How to declare local calendar

      @bhepler something like this should do the job:

      move the call of complimentFile into the start method, you want to load that file only once not every 30 secs
      then override the the config compliments object with your data, that should be it

      start: function() {
          Log.info("Starting module: " + this.name);
      
          this.lastComplimentIndex = -1;
      		
          this.complimentFile((response) => {
              this.config.compliments = JSON.parse(response);
          });
      
          // Schedule update timer.
          var self = this;
          setInterval(function() {
              self.updateDom(self.config.fadeSpeed);
          }, this.config.updateInterval);
      },
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Unable to install dependencies, NPM install not working

      @FlorianRD did you use this tutorial? https://forum.magicmirror.builders/topic/236/complete-setup-tutorial

      you forgot to append your errors

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-PublicTransportBerlin - Public transport for Berlin and Brandenburg (departures)

      @dbahn25 this works also for db https://forum.magicmirror.builders/topic/29/mmm-trainconnections

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • RE: Weather Underground Forecast (wuforecast)

      @cloudzombie it must be the state and then the city try OR/Portland

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-WienerLinien

      @spedja I couldn’t find any information about this in the documentation, but with further investigation I stumbled on this http://www.offene-oeffis.at/faqs/warum-erhalte-ich-manchmal-etwas-wie-u1-leopoldau-in-x-minuten-als-string-in-towards-statt-als-departure/, so i guess in your screenshot is the departure of the metro in 2 and 5 mins, if so i have to handle those special

      EDIT: should be fixed now

      [card:fewieden/MMM-WienerLinien]

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • RE: New Modul should react by more than one Hotword message (modul Voicecontrol/Hotword detection)

      @gismo2006 look out for the else if statement http://www.w3schools.com/js/js_if_else.asp

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Th old Magic Mirror project

      @gismo2006 https://github.com/MichMich/MagicMirror/tree/v1.0.0

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Todoist - Your todoist tasks on your mirror

      @cowboysdude @JoeSpencer did you guys create an issue on github? the author is offline since over a month on this forum here, maybe you can reach him better on github

      posted in Productivity
      strawberry 3.141S
      strawberry 3.141
    • 1 / 1