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: Adding Modules... Please Please advise

      Not sure if this is the problem but the position for module WorldTides should be top_right and not top-right

      That btw is my fault, a stupid typo in the readme :(

      posted in General Discussion
      yawnsY
      yawns
    • RE: London tube status

      Absolutely. I signed up for a developer account but did not find the time on the weekend to go for it. The API indeed looks neat.

      posted in Requests
      yawnsY
      yawns
    • RE: Adding Modules... Please Please advise

      Just post your config.js file content and let others see what might be missing.
      Please tab indent your file content before posting or use proper markup so the code is readable

      posted in General Discussion
      yawnsY
      yawns
    • RE: Hard Ware Required to Build

      A raspberry 2 or 3 (1 and zero work in servermode only) with a proper power source and a SD/micro SD card and a monitor is the minimum hardware.
      You need to provide internet, either by wired connection (onboard) or wireless (pi 3 has onboard wlan, all others need a wlan dongle). In addition mouse and keyboard are of value.

      If you want extra features you need a PIR sensor or a webcam or an usb microphone or a temperature/humidity sensor, …

      posted in Hardware
      yawnsY
      yawns
    • RE: MMM-Fuel

      wow, nice improvement!

      posted in Transport
      yawnsY
      yawns
    • RE: Calendar Module: How to declare local calendar

      @DazDavid
      great, glad to help!

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Calendar Module: How to declare local calendar

      A quick search for “local ics” would return this: https://forum.magicmirror.builders/topic/467/calendar-ics-file-from-local-path/6 :)

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Where to get (cheap) acrylic mirror from in Germany

      @Blamer
      That’s interesting. This guy ( http://blog.tobias-weis.de/smarter-smartmirror/ ) uses the myspiegel.de mirror and is more than happy with it.

      posted in Hardware
      yawnsY
      yawns
    • RE: MMM-FHEM

      @gismo2006
      192.168.x.x is a private Class C network
      10.0.0.x is a private class A network

      As you see on the screenshot cpramhofer is able to connect to the management website in a browser, so the IP address should not be the problem.

      posted in Utilities
      yawnsY
      yawns
    • RE: Smartphone App for configuring MagicMirror

      If you want to create a SmartPhone app, then go for it. Even if you are the only one using it you gain experience by writing.

      There already is a RemoteControl module ( https://forum.magicmirror.builders/topic/735/mmm-remote-control ) which is accessible by any browser. As such the remote control is platform independant.

      posted in Development
      yawnsY
      yawns
    • 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 / 1