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

    Posts

    Recent Best Controversial
    • RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3

      remoteFile: 'custom_compliments.json' sollte ausreichend sein, wenn der Inhalt deiner Datei in Ordnung ist.

      Ich habe das damals mal getestet, weil einige User Probleme hatten, und das hier hat als Inhalt funktioniert:

      {
          "morning" : [
              "heyho"
          ],
          "afternoon" : [
              "home early?"
          ],
          "evening" : [
              "finally home"
          ],
      	"fog" : [
      		"fog, oh no :("             
      	]
      }
      
      posted in General Discussion
      yawnsY
      yawns
    • RE: I am stuck need help

      @dcarls91 said in I am stuck need help:

      @yawns thank you for doing that, I’m very new to this, what else do i need to do to the above config file you posted

      Sorry, I did not see your reply. Copy the config I posted, save it as config.js and add your API keys and links to calendars again. Or, to clearly see the changes I made, use this:
      https://www.diffchecker.com/QQhBPpNO

      Left is your config, right is my fixed config.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: I am stuck need help
      var config = {
      	address: "localhost", // Address to listen on, can be:
      	                      // - "localhost", "127.0.0.1", "::1" 
      	                      // - another specific IPv4/6 
      	                      // - "", "0.0.0.0", "::" 
      	                      // 
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], 
      	
              language: "en",
      	timeFormat: 24,
      	units: "imperial",
      
      	modules: [
      		  {
      			module: "alert",
      		  },
      		  {
      			module: "updatenotification",
      			position: "top_bar",
      		  },
      		  {
      			module: "clock",
      			position: "top_left",
      		  },
      		  {
      		 	module: "calendar",
      			header: "Calendar",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check",
      						url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
      					
      				         },
                                               {
      
      						symbol: "calendar-plus-o ",
      						url: "https://calendar.google.com/XXXXXXXXX/basic.ics"
      					},
      					{
      						symbol: "calendar-plus-o ",
      						url: "https://calendar.google.com/XXXXXXX/basic.ics"
      				}	
      				]
            }
      			
      		  },
      		  {
      			module: "helloworld",
      		        position: "top_bar",
      		        config: {
      			         
      			         text: "Welcome to the Carls Residence"
      			        } 
      		  },
      		  {
      			
                               module: "MMM-DarkSkyForecast",
                               header: "Weather",
                               position: "top_right",
                               classes: "default everyone",
                               disabled: false,
                               config: {
                                        apikey: "Xxxxxxxxxxdda4d069a",
                                        latitude: "39.548935",
                                        longitude: "-89.294533",      
                                        iconset: "4c",
                                        concise: false,
                                        forecastLayout: "table"
                                       }
      			
      		  },
      		  {
      			 module: "MMM-MyScoreboard",
                               position: "bottom_left",
                               classes: "default everyone",
                               header: "My Scoreboard",
                               config: {
                                        showLeagueSeparators: true,
                                        colored: true,
                                        viewStyle: "mediumLogos",
                                           sports: [
                                                    {
                                                     league: "NHL",
                                                     groups: ["Western"]
                                                    },
                                                    {
                                                     league: "NFL",
                                                     groups: ["NFC North"]
                                                    },
                                                    {
                                                     league: "MLB",
                                                     groups: ["NL Central"]
                                                   },
                                                   {
                                                    league: "NCAAM",
                                                    groups: ["Big Ten"]
                                                   },
                                                   {
                                                    league: "NCAAF",
                                                    groups: ["Big Ten"]
                                                   }
                                             ]
                                        }
      		  },
      		  {
      		
      
      		       module: 'MMM-iFrame-Ping',
      		       position: 'bottom_left',	
      		       config: {
      			        // See 'Configuration options' for more information.
      			        url: "https://radar.weather.gov/radar.php?rid=ILX&product=NCR&overlay=11101111&loop=yes", 
      			        autoRefresh: true, 
      			        updateInterval: 10, 
      			        displayLastUpdate: true,
      			        width: "100%", 
      			        height: "400px", 
      			       scrolling: "no" 
      			}
      	           },
                         {
                    
      
      
                      	module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				 feeds: [
      					{
      						title: "Fox News",
      						url: "http://feeds.foxnews.com/foxnews/latest"
      					}
      				 ],
      				  showSourceTitle: true,
      				  showPublishDate: true
      			        }
      		 },
      	   ]
      
      };
      
      
      if (typeof module !== "undefined") {module.exports = config;}
      

      You missed some ,, some ] and some }
      Oh, and you should never post your apikeys or links to personal calendars. I truncated both for you

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: module for mm background

      You could also try the module @Mykle1 came up with: https://github.com/mykle1/MMM-EasyBack

      posted in Requests
      yawnsY
      yawns
    • RE: Worldclock & Currency

      @ryck said in Worldclock & Currency:

      @yawns You can always use https://exchangeratesapi.io/ if you don’t want to make people get an apiKey…

      Thanks for the heads up. I updated the module to use the new source instead.

      posted in Requests
      yawnsY
      yawns
    • RE: Worldclock & Currency

      @sean said in Worldclock & Currency:

      @nobita what apiKey? what module? Are you saying about “MMM-CurrencyExchange”? It is not mine.

      MMM-CurrencyExchange never required an apiKey, but looking at the source fixer.io they seem to require an apiKey nowadays. Looking further I see raised issues on gitHub I never even noticed. My bad! I will try to fix it this evening, let’s hope my daughter does not intercept my plan :D

      posted in Requests
      yawnsY
      yawns
    • RE: Updated, but 'MMM-EventHorizon' still shows as being behind.

      @richard238 said in Updated, but 'MMM-EventHorizon' still shows as being behind.:

      Please, commit your changes or stash them before you can merge

      If you are sure you did not make any changes, then run this in the MMM-EventHorizon folder:

      git reset --hard
      git pull
      npm install
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: About to build for the first time, dont understand the point of the OS.

      @seedhe
      I close this thread, please continue here: https://forum.magicmirror.builders/topic/9580/about-to-build-for-the-first-time-dont-understand-the-point-of-the-os
      Even though I get the feeling this is just spam

      posted in Bug Hunt
      yawnsY
      yawns
    • RE: MMM-Trello: Display Description on MM with Markdown Syntax???

      Well for sure it is possible, but not a trivial thing. You need to add a parser to convert Markdown to HTML.There are several libraries available. Maybe even a function like used here (https://codepen.io/kvendrik/pen/Gmefv) is sufficient?
      Unfortunately I don’t have time to work on this, maybe someone else wants to hop in.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Update Font Awesome to version 5?

      @zwirbel move it above the body { line

      posted in Feature Requests
      yawnsY
      yawns
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 96
    • 97
    • 4 / 97