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: Help choosing more than one item from an array

      @justjim1220 It looks like you are trying to do multiple request, as mykles description sounds like one request with a comma seperated list.

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: gmail Calendar default usage.

      @MarWind https://github.com/MichMich/MagicMirror/issues/839

      posted in Bug Hunt
      strawberry 3.141S
      strawberry 3.141
    • RE: Magic mirror serving multiple clients

      @cowboysdude take a look at https://github.com/fewieden/MMM-syslog-slave thats the only thing were I connected multiple instances

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-NFL Issues

      @danielloftus you didn’t close the modules array, you missed commas and you placed quotes.

              {
      	        module: 'MMM-NFL',
      	        position: 'bottom_right',
      	        config: {
      		        colored: true,
      			helmets: true,
      			reloadInterval: 3000
          		}
      	},
      ]
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Some Calendar Icons Missing

      @lazyboy0284 you’re lucky someone integrated the fontawsome v5 with backwards compatibility and it was merged today into the develop branch https://github.com/MichMich/MagicMirror/pull/1427

      posted in Bug Hunt
      strawberry 3.141S
      strawberry 3.141
    • RE: MagicMirror Ideas for Retail Application

      @solelo I guess it depends on the type of store, you can also check out this list https://github.com/MichMich/MagicMirror/wiki/3rd-party-modules

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-NFL Only shows "loading"

      @mrpicasso @Mykle1 @BKeyport with the help of https://github.com/alacercogitatus the problem is now fixed. Make sure you get the newest version of the master branch and run npm install https://github.com/fewieden/MMM-NFL

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: change current weather colors - time and wind

      @karde this is for the default module currentweather and not as I thought MMM-WunderGround

      /* wind speed selector */
      .currentweather > .module-content > div > div.normal.medium > *:nth-child(2),
      /* wind direction selector */
      .currentweather > .module-content > div > div.normal.medium > *:nth-child(3),
      /* sunset/sunrise time selector */
      .currentweather > .module-content > div > div.normal.medium > *:nth-child(6){
          color: orange;
      }
      
      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Issue displaying images in alerts

      @tagriel the url would be https://github.com/fewieden/MMM-soccer

      but the only thing you need is a module let’s call it imageserver, which is only responsible as an image host.

      directory structure:

      MagicMirror
      - modules
        - imageserver
          - public
            - kids.png
          - imageserver.js
          - node_helper.js
      

      imageserver.js

      Module.register("imageserver", {});
      

      node_helper.js

      const NodeHelper = require('node_helper');
      module.exports = NodeHelper.create({});
      

      config.js

      {
      	module: "imageserver"
      },
      

      command

      MM.getModules()[0].notificationReceived("SHOW_ALERT", {title: 'My Title', message: 'Some Text', imageUrl: '/imageserver/kids.png'}, {name: 'test'});
      

      0_1540843796205_93d389de-7eb6-4713-bab0-630e13884ac2-grafik.png

      posted in Bug Hunt
      strawberry 3.141S
      strawberry 3.141
    • RE: Default Newsfeed: Fullscreen News Article in MMM-Modal instead of iFrame

      @RaspiManu I’m quite busy to help you out much here. But maybe it helps you to check out https://github.com/fewieden/MMM-Modal/issues/6 where @skuethe implemented MMM-Modal with MMM-Touch and MMM-WiFiPassword

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • 1
    • 2
    • 50
    • 51
    • 52
    • 53
    • 54
    • 53 / 54