Looks interesting. Isn’t the reflection disturbing when really working with it as an external display with colors and lots of information?
Read the statement by Michael Teeuw here.
Posts
-
RE: Hollywood MM + Mac Display
-
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.
-
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
-
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. :)
-
RE: Removing modules
@killerwaffles
You are welcome.
You could as well remove all lines of code you just commented out with // -
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;}
-
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! -
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? -
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?