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: Hollywood MM + Mac Display

      Looks interesting. Isn’t the reflection disturbing when really working with it as an external display with colors and lots of information?

      posted in Show your Mirror
      yawnsY
      yawns
    • RE: Total Beginner - MM2 with MacMini

      Take a look at this thread: https://forum.magicmirror.builders/topic/548/building-mirror-without-programing

      It is for Microsoft Windows but I bet you can adapt the instructions to make it work on your Mac. There is a node.js installation package for Mac available, the download link is in the instructions.

      posted in General Discussion
      yawnsY
      yawns
    • RE: Dynamic travel time

      Maybe you can use the scheduler module, add your map module two times with different locations and schedule for workdays and weekend

      posted in Development
      yawnsY
      yawns
    • RE: Code for running MM on Pi Zero

      This was supposed to be a reply to https://forum.magicmirror.builders/topic/768/front-door-mirror, for some reason “pi” created a new thread instead. :)

      posted in Show your Mirror
      yawnsY
      yawns
    • RE: Removing modules

      @killerwaffles
      You are welcome.
      You could as well remove all lines of code you just commented out with //

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Removing modules

      You need to remove or comment the whole block of the module. In your case I marked all lines with //
      Otherwise parsing of the config file will fail because of missing brackets or commas

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      var config = {
      	port: 8080,
      
      	language: 'en',
      	timeFormat: 24,
      	units: 'metric',
      
      	modules: [
      		{
      			module: 'alert',
      		},
      		{
      			module: 'clock',
      			position: 'top_left'
      		},
      //		{
      //			module: 'calendar',
      //			header: 'US Holidays',
      //			position: 'top_left',
      //			config: {
      //				calendars: [
      //					{
      //						symbol: 'calendar-check-o ',
      //						url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
      //					}
      //				]
      //			}
      //		},
      		{
      			module: 'compliments',
      			position: 'lower_third'
      		},
      		{
      			module: 'currentweather',
      			position: 'top_right',
      			config: {
      				location: 'New York',
      				locationID: '',  //ID from http://www.openweathermap.org
      				appid: 'YOUR_OPENWEATHER_API_KEY'
      			}
      		},
      		{
      			module: 'weatherforecast',
      			position: 'top_right',
      			header: 'Weather Forecast',
      			config: {
      				location: 'New York',
      				locationID: '5128581',  //ID from http://www.openweathermap.org
      				appid: 'YOUR_OPENWEATHER_API_KEY'
      			}
      		},
      		{
      			module: 'newsfeed',
      			position: 'bottom_bar',
      			config: {
      				feeds: [
      					{
      						title: "New York Times",
      						url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Weekly Calendar

      @KirAsh4
      I guess no one can really imagine your loss. I hope you can rely on your family and your friends to deal with this tragedy. Take care, man!

      posted in Requests
      yawnsY
      yawns
    • RE: frameless mirror

      interesting. Thanks for showing the difference between 12% and 20% so clearly.
      Is the 12% better readable if you use the shutter to darken the room?

      posted in Show your Mirror
      yawnsY
      yawns
    • RE: Halloween mirror ghouls anyone?

      @Mitchfarino
      check your chat ;)

      posted in General Discussion
      yawnsY
      yawns
    • RE: Tutorials or Overview for Module Dev?

      I’d like to jump in as well.
      How do you decide if a node_helper is required or if the module itself is sufficient? Is there any benefit or downside if you choose one way or the other?

      posted in Development
      yawnsY
      yawns
    • 1
    • 2
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 92 / 97