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

    Posts

    Recent Best Controversial
    • RE: The deafult weather and MMM-DOOMsday is not changing day in the morning......

      @broberg yes , I have set the dooms day

      {
      module: ‘MMM-doomsDay’,
      position: ‘top_center’, // This can be any of the regions, best results in center regions
      config: {
      doomsDay: “2017-04-7 14:00:00”, // YYYY-MM-DD HH:MM:SS
      toWhat: “Påskeferie”,

          // See 'Configuration options' for more information.
      }
      

      },

      regarding my settings / today is says there is 23 days left, tomorrow morning it is still 23 days left, but when I come home from work there is 22 days left whitch is correct, but does it not change at midnight _

      posted in Troubleshooting
      I
      ironman_DK
    • RE: The deafult weather and MMM-DOOMsday is not changing day in the morning......

      @broberg I guess I have the newest version 5 days old,I have not altered the time, can I do that ? and where ?

      posted in Troubleshooting
      I
      ironman_DK
    • RE: MMM-Traffic not hiding itself out of hours

      Install MMM-ModuleScheduler : https://github.com/ianperrin/MMM-ModuleScheduler

      and put this text in your Config.JS :

      {
      module: ‘MMM-ModuleScheduler’,
      config: {
      // SHOW MODULES WITH THE CLASS ‘daytime_scheduler’ AT 05:00 AND HIDE AT 08:00 EVERY DAY
      global_schedule: {from: ‘0 5 * * *’, to: ‘0 8 * * *’, groupClass: ‘MMM-Traffic’},
      }
      },

      posted in Troubleshooting
      I
      ironman_DK
    • The deafult weather and MMM-DOOMsday is not changing day in the morning......

      I have a little question, I have installed different modules and everything is working fine, specially two of my modules : weather forecast(default) installed and MMM-doomsDay - The countdown module, do you know when they are changing day ? example, monday morning sunday is still at the top af the weater forecast, and when I come home from work it has changed to Monday, and the same with doomsday, the countdown day has not changed Monday morning, but after work the number is one down as i should, is there a way to change somthing, so the countdown and the forecast is changing after midnight instead in the mittle of the day ? is that possible ?

      posted in Troubleshooting
      I
      ironman_DK
    • RE: MMM-traffic - used 12 hour to get it work but can not....

      @strawberry-3.141 yes I did the installation in the right modules etc…

      posted in Troubleshooting
      I
      ironman_DK
    • RE: MMM-traffic - used 12 hour to get it work but can not....

      @strawberry-3.141 said in MMM-traffic - used 12 hour to get it work but can not....:

      dependencies

      the Module is installed correct, what is dependencies, and what do I do ? I really need your help in this matter…

      is dependencies something there should be in config.js or ?

      Best regards
      Michael

      posted in Troubleshooting
      I
      ironman_DK
    • MMM-traffic - used 12 hour to get it work but can not....

      Hi

      Im totally new into this MM2 - I have tried to get this MMM trafic module to work, I have so far used 12 hour on this project :-/ so can anyone help mee?
      I have installed the MMM-traffic module and have add. following to Config.js :

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      var config = {
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
      
      	language: 'da',
      	timeFormat: 24,
      	units: 'metric',
      
      	modules: [
      		{
      			module: 'alert',
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: 'clock',
      			position: 'top_left'
      		},
      		{
      			module: 'calendar',
      			header: 'Kalender',
      			position: 'top_left',
      			config: {
      				
      				calendars: [
      					{
      						symbol: 'home',
      						url: 'XXXXXXXX'
      					},		   		
      					{
      						symbol: 'home',
      						url: 'XXXXXXXXX'
      					},
      					{
      						symbol: 'home',
      						url: 'XXXXXXXXXX'
      					},
      					{
      						symbol: 'home',
      						url: 'XXXXXXXXXX'
      					},
                                      ]
        			}	
                      },
      		
          	
      		{
      			module: 'compliments',
      			position: 'lower_third'
      		},
      		{
      			module: 'currentweather',
      			position: 'lower_right',
      			config: {
      				location: 'New York',
      				locationID: '2618425',  //ID from http://www.openweathermap.org
      				appid: 'XXXXXXXXXXXX'
      			}
      		},
      		{
      			module: 'weatherforecast',
      			position: 'top_right',
      			header: 'Weather Forecast',
      			config: {
      				location: 'New York',
      				locationID: '2618425',  //ID from http://www.openweathermap.org
      				appid: 'XXXXXXXXXXX'
      			}
      		},
      		{
      			module: 'newsfeed',
      			position: 'bottom_bar',
      			config: {
      				feeds: [
      					{
      						title: "Ekstra Bladet Nyheder",
      						url: "http://ekstrabladet.dk/rss2/?mode=normal&submode=nyheder"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      
      		},
      		{
      	module: 'MMM-Traffic',
      	position: 'middle_center',
      	classes: 'dimmed medium', //optional, default is 'bright medium', only applies to commute info not route_name
      	config: {
      		api_key: 'XXXXXXXXXXXX',
      		mode: 'driving',
      		origin: '4 Pennsylvania Plaza, New York, NY 10001',
      		destination: '1 MetLife Stadium Dr, East Rutherford, NJ 07073',
      		arrival_time: '0800', //optional, but needs to be in 24 hour time if used.
      		route_name: 'Home to Work',
      		changeColor: true,
      		showGreen: false,
      		limitYellow: 5, //Greater than 5% of journey time due to traffic
      		limitRed: 20, //Greater than 20% of journey time due to traffic
      		traffic_model: 'pessimistic',
      		interval: 120000, //2 minutes
      		showWeekend: false,
      		allTime: false
      		}
      		},       
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      

      After I have copy/paste the MMM-traffic module into Config.JS I only got a black screen, If I remove the MMM-Traffic in config.JS everything is fine, and I got my three calendars weather and news - what can be wrong ?

      is the error in config.JS or MMM-Traffic module ?

      best regards
      Michael

      posted in Troubleshooting
      I
      ironman_DK
    • RE: electron size

      @broberg where can I change the overall font size ?

      posted in Troubleshooting
      I
      ironman_DK
    • 1
    • 2
    • 3
    • 3 / 3