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: NFL Score Module

      @Shawnsully can you post your config file

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Tutorials or Overview for Module Dev?

      @yawns I create only a node_helper if I need to use a npm dependency

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      @daveyg_71 well when you want to have the color the right way to go is this colored: true

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Tutorials or Overview for Module Dev?

      here is the documentation https://github.com/MichMich/MagicMirror/tree/master/modules

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      @daveyg_71 you need to remove the quotes, otherwise the boolean is a string and will represent true

      config: {
          colored: false,
          network: false,
          reloadInterval: 900000,
      },
      
      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Move Module to corner

      @andrewchumchal the body has a margin in main.css

      body {
        margin: 60px;
        position: absolute;
        height: calc(100% - 120px);
        width: calc(100% - 120px);
        ...
      }
      

      you could override that in custom.css

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-ModuleScheduler - Module Schedules and Notifications

      @dr4ke616 hide module will call the hide method of the module

      quote from the readme When a module is hidden (using the module.hide() method), the suspend() method will be called. By subclassing this method you can perform tasks like halting the update timers. so you can do the specific behaviour you want in there

      for show module it’s the resume method

      posted in System
      strawberry 3.141S
      strawberry 3.141
    • RE: RPI Update

      @MichMich i upgraded to PIXEL as well and created a pull request to use a new feature for the MagicMirror

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: Issues with electron.js on installation

      @azmuth94 did you try to update node? you’re running 4.2, I’m using 6.5

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Two way mirror suppliers - Australia!

      @Sar6e A friend of mine lived in Australia, he imported a lot of stuff from Asia for cheap prices and resaled them in Australia, maybe it’s worth it to look for a supplier on alibaba or somewhere else and import a mirror from there.

      posted in Hardware
      strawberry 3.141S
      strawberry 3.141
    • Can't load script correctly

      I stumbled upon a weird behaviour, when I define the Google Maps js file in getScripts there is no error, but there is no script tag added and so the file will not be loaded,

          getScripts: function () {
              console.log("https://maps.googleapis.com/maps/api/js?key=" + this.config.map_api_key);
              return ["https://maps.googleapis.com/maps/api/js?key=" + this.config.map_api_key];
          },
      

      My first thought was, that the config object isn’t ready yet but the log shows the api key, so that’s not the problem, but I get a black screen, none of the modules will display.

      Currently I add the script tag myself in the start method and everything works fine, but this isn’t the desired approach.

      start: function () {
              Log.info("Starting module: " + this.name);
              var script = document.createElement("script");
              script.src = "https://maps.googleapis.com/maps/api/js?key=" + this.config.map_api_key;
              document.querySelector("body").appendChild(script);
              this.sendSocketNotification("CONFIG", this.config);
          },
      

      Any ideas?

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-ModuleScheduler - Module Schedules and Notifications

      @cowboysdude adding a css filter to the specific module could set the brightness down

      posted in System
      strawberry 3.141S
      strawberry 3.141
    • RE: Different sleep function

      @tjop run xset dpms force off

      posted in Requests
      strawberry 3.141S
      strawberry 3.141
    • RE: sendNotification & notificationReceived does not seem to work, am I missing something.

      @Squawk09 you’re right you don’t need a node_helper for it. Did you log if you’re receiving a notification, maybe you don’t or you try to access it before you get the notification? A guess in the dark is, that you loose the scope of this with using a callback function. Can you please provide also the snippet where you trying to access your variable?

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Voice on/off

      @SimJim I will release a voice module the next days, which has this feature already built in. So stay tuned

      posted in Requests
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      @kwaeksler https://github.com/fewieden/MMM-NFL#installation

      any errors in the console?

      did you run npm install?

      in the config { module: 'MMM-NFL', position: 'top_right'}

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      I want to announce, that there will come statistics in place the next days

      alt text

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Weatherunderground - currently - hourly - daily - configurable

      @ostfilinchen I would try a selector like this

      .MMM-WunderGround div.large span.wi {
          /*change the size here*/
      }
      
      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-NetworkScanner

      @desq are you sure you did this step?

      cd ~/
      sudo apt-get install arp-scan   
      
      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Where are you from?

      Lake of Constance

      alt text

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • 1
    • 2
    • 71
    • 72
    • 73
    • 74
    • 75
    • 84
    • 85
    • 73 / 85