MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. strawberry 3.141
    3. Best
    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: MMM-Modal

      [1.0.1]

      Fixed

      • Modal positioning
      • Blur on render error

      Added

      • List of depending modules
      • Callback option after render for developers

      Changed

      • ESLint ruleset from airbnb to recommended
      • Moved nunjuck templates in separate directory
      • node versions for travis

      Removed

      • doclet integration

      https://github.com/fewieden/MMM-Modal

      [card:fewieden/MMM-Modal]

      posted in System
      strawberry 3.141S
      strawberry 3.141
    • RE: New Raspberry Pi Zero W

      @jproehl keep in mind that it has way less power than a rpi 3, some modules could “freeze” your mirror

      posted in Hardware
      strawberry 3.141S
      strawberry 3.141
    • RE: Unable to sendSocketNotification from node_helper to Module

      @jc21 If I’m right you must start the connection from the module, but can’t test it right now

      MMM-IFTTT.js

      start: function() {
              this.sendSocketNotification('START', {message: 'start connection'});
      },
      
      socketNotificationReceived: function(notification, payload) {
              if (notification === 'MSG'){
                  Log.info(payload);
              }
          },
      

      node_helper.js

      const NodeHelper = require('node_helper');
      
      module.exports = NodeHelper.create({
          start: function() {
              console.log('[IFTTT] Starting node_helper');
          },
      
          socketNotificationReceived: function(notification, payload) {
              if (notification === 'START'){
                  setTimeout(() => {
                      this.sendSocketNotification('MSG', {message: 'test'});
                   }, 10000);
              }
          },
      });
      
      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Soccer - Standings, Schedules and Top Scorers

      @Mitchfarino well when you have one, you can insert it again, this will force the module to refresh more often ;)

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Config help please

      @snotrocket you used the wrong quotes in the newsfeed section and for the last feed you missed to specify url:

      	{
      		module: 'newsfeed',
      		position: 'bottom_bar',
      		config: {
      			feeds: [
      				{
      					title: "ESPN",
      					url: "http://www.espn.com/espn/rss/news"
      				},
      				{
      					title: "Reuters Sports",
      					url: "http://feeds.reuters.com/reuters/sportsNews"
      				},
      				{
      					title: "Yahoo NFL",
                                              url: "https://sports.yahoo.com/nfl/rss.xml"
      				},
      			],
      			showSourceTitle: false,
      			showPublishDate: false
      		}
      	}
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Oneliner

      @orayoflighto https://github.com/faiyaz26/one-liner-joke/blob/master/jokes.json

      posted in Fun & Games
      strawberry 3.141S
      strawberry 3.141
    • RE: Change username or cancel account

      @Global-Moderators

      posted in Hardware
      strawberry 3.141S
      strawberry 3.141
    • RE: Trafficmaps

      @wscheer Quote from the readme Whenever your module need to be updated, call the updateDom(speed) method. It requests the MagicMirror core to update it's dom object. If you define the speed, the content update will be animated, but only if the content will realy change. So i guess your html looks all the time the same, so there is probably no real update of the dom. I suggest to try to add an timestamp somewhere and see if it gets updated then

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

      after no issues were found on the last pre-season matchday there is a new release

      Changelog:

      • indicator for ball possession
      • indicator for redzone
      • auto detecting live matches and fetching new data every minute, while at least on match is live
      • new config option focus_on to choose which matches should appear on the mirror

      Preview

      [card:fewieden/MMM-NFL]

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Config help please

      @snotrocket you are still using the wrong quotes use " or ' instead of “

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Valentine's Day on your MagicMirror

      @TS77UK you could do that with the mmm-modulescheduler

      posted in Fun & Games
      strawberry 3.141S
      strawberry 3.141
    • RE: Two way mirror order for Europe - Orders closed!

      @Goldjunge_Chriz wow thats a small one :D I guess you mean meters

      posted in Hardware
      strawberry 3.141S
      strawberry 3.141
    • RE: Home Energy Usage on my Mirror?

      @nbrenn https://github.com/MichMich/MagicMirror/tree/master/modules

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

      after an issue on github i made a bugfix on a seperate branch so people can test if this will work for everyone

      cd ~/MagicMirror/modules/MMM-NFL
      git fetch
      git checkout bugfix/time-conversion
      npm install
      

      start your mirror and see if the match start datetime is correct for your timezone

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Config help please

      @snotrocket there is no need to let the nfl module reload every 10 seconds, it will detect itself if there is a live match and during live matches it will refresh data more frequently

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Mirror, mirror on the wall. Who has the biggest of them all?

      @dominic Of course, the client specific modules (like the globe) are kept private

      posted in Show your Mirror
      strawberry 3.141S
      strawberry 3.141
    • RE: Two way mirror order for Europe - Orders closed!

      @yawns Have a good flight

      posted in Hardware
      strawberry 3.141S
      strawberry 3.141
    • Module will not render

      Hey mates,

      I just wanted to share my experience on this, it took me ages to fix it and drove me nuts.

      Make sure you don't call updateDom in a function you're calling in the modules start method.

      Otherwise the core tries to update a module which is not even rendered and you will get a Black Screen.

      posted in Development black screen
      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: Change Module Position for a Newbie

      @petergaytan you can do that by putting the following in MagicMirror/css/custom.css

      body {
        margin: 70px;
        height: calc(100% - 140px);
        width: calc(100% - 140px);
      }
      

      propably you have to play yourself with those values, but the subtraction of height and width have to be 2*margin value

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • 1
    • 2
    • 8
    • 9
    • 10
    • 11
    • 12
    • 26
    • 27
    • 10 / 27