• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

MTA MODULE MM NEWBIE HERE!

Scheduled Pinned Locked Moved Troubleshooting
14 Posts 3 Posters 1.7k Views 3 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Away
    sdetweil @jeaniouso
    last edited by May 15, 2020, 1:11 PM

    @jeaniouso he said “a closing comma”, not semicolon,

    the config is a list (array ) of module entries
    each starts with { and ends with }
    if there is another one coming, add a ‘,’ to the end of the 1st, to say ‘more coming’

    it won’t hurt to have a ‘,’ after the module block }

    modules: [                                  // start of list (array)
    {                                           // start of a module 
    ...
    }                                           // end of a module entry
    ,                                           // another entry to follow
    {
    ...
    }, 
    etc
    etc
    ]                                           // end of the modules list (array)

    Sam

    How to add modules

    learning how to use browser developers window for css changes

    1 Reply Last reply Reply Quote 1
    • J Offline
      jeaniouso @Mykle1
      last edited by May 16, 2020, 2:07 AM

      @jeaniouso [0_1589594860883_config.js](Uploading 100%)

      1 Reply Last reply Reply Quote 0
      • J Offline
        jeaniouso @Mykle1
        last edited by May 16, 2020, 2:18 AM

        @Mykle1 /* Magic Mirror Config Sample
        *

        • By Michael Teeuw http://michaelteeuw.nl
        • MIT Licensed.
        • For more information on how you can configure this file
        • See https://github.com/MichMich/MagicMirror#configuration

        */

        var config = {
        address: “localhost”, // Address to listen on, can be:
        // - “localhost”, “127.0.0.1”, “::1” to listen on loopback interface
        // - another specific IPv4/6 to listen on a specific interface
        // - “0.0.0.0”, “::” to listen on any interface
        // Default, when address config is left out or empty, is “localhost”
        port: 8080,
        ipWhitelist: [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”], // Set [] to allow all IP addresses
        // or add a specific IPv4 of 192.168.1.5 :
        // [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”, “::ffff:192.168.1.5”],
        // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
        // [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”, “::ffff:192.168.3.0/28”],

        useHttps: false, 		// Support HTTPS or not, default "false" will use HTTP
        httpsPrivateKey: "", 	// HTTPS private key path, only require when useHttps is true
        httpsCertificate: "", 	// HTTPS Certificate path, only require when useHttps is true
        
        language: "en",
        timeFormat: 24,
        units: "metric",
        // serverOnly:  true/false/"local" ,
        		     // local for armv6l processors, default
        		     //   starts serveronly and then starts chrome browser
        		     // false, default for all  NON-armv6l devices
        		     // true, force serveronly mode, because you want to.. no UI on this device
        
        modules: [
        	{
        		module: "alert",
        	},
        	{
        		module: "updatenotification",
        		position: "top_bar"
        	},
        	{
        		module: "clock",
        		position: "top_left"
        	},
        	{
        		module: "calendar",
        		header: "US Holidays",
        		position: "top_left",
        		config: {
        			calendars: [
        				{
        					symbol: "calendar-check",
        					url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics"					}
        			]
        		}
        	},
        	{
        
        
        	{
        		module: "compliments",
        		position: "lower_third"
        	},
        	{
        		module: "currentweather",
        		position: "top_right",
        		config: {
        			location: "New York",
        			locationID: "", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
        			appid: "YOUR_OPENWEATHER_API_KEY"
        		}
        	},
        	{
        		module: "weatherforecast",
        		position: "top_right",
        		header: "Weather Forecast",
        		config: {
        			location: "New York",
        			locationID: "5128581", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
        			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,
        			broadcastNewsFeeds: true,
        			broadcastNewsUpdates: true
        		}
        	},
        ]
        

        };

        /*************** DO NOT EDIT THE LINE BELOW ***************/
        if (typeof module !== “undefined”) {module.exports = config;}

        1 Reply Last reply Reply Quote 0
        • J Offline
          jeaniouso @Mykle1
          last edited by May 16, 2020, 2:20 AM

          @Mykle1 ```
          code_text

           *
           * By Michael Teeuw http://michaelteeuw.nl
           * MIT Licensed.
           *
           * For more information on how you can configure this file
           * See https://github.com/MichMich/MagicMirror#configuration
           *
           */
          
          var config = {
          	address: "localhost", // Address to listen on, can be:
          	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
          	                      // - another specific IPv4/6 to listen on a specific interface
          	                      // - "0.0.0.0", "::" to listen on any interface
          	                      // Default, when address config is left out or empty, is "localhost"
          	port: 8080,
          	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
          	                                                       // or add a specific IPv4 of 192.168.1.5 :
          	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
          	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
          	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
          
          	useHttps: false, 		// Support HTTPS or not, default "false" will use HTTP
          	httpsPrivateKey: "", 	// HTTPS private key path, only require when useHttps is true
          	httpsCertificate: "", 	// HTTPS Certificate path, only require when useHttps is true
          
          	language: "en",
          	timeFormat: 24,
          	units: "metric",
          	// serverOnly:  true/false/"local" ,
          			     // local for armv6l processors, default
          			     //   starts serveronly and then starts chrome browser
          			     // false, default for all  NON-armv6l devices
          			     // true, force serveronly mode, because you want to.. no UI on this device
          
          	modules: [
          		{
          			module: "alert",
          		},
          		{
          			module: "updatenotification",
          			position: "top_bar"
          		},
          		{
          			module: "clock",
          			position: "top_left"
          		},
          		{
          			module: "calendar",
          			header: "US Holidays",
          			position: "top_left",
          			config: {
          				calendars: [
          					{
          						symbol: "calendar-check",
          						url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics"					}
          				]
          			}
          		},
          		{
            
            
          		{
          			module: "compliments",
          			position: "lower_third"
          		},
          		{
          			module: "currentweather",
          			position: "top_right",
          			config: {
          				location: "New York",
          				locationID: "", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
          				appid: "YOUR_OPENWEATHER_API_KEY"
          			}
          		},
          		{
          			module: "weatherforecast",
          			position: "top_right",
          			header: "Weather Forecast",
          			config: {
          				location: "New York",
          				locationID: "5128581", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
          				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,
          				broadcastNewsFeeds: true,
          				broadcastNewsUpdates: true
          			}
          		},
          	]
          
          };
          
          /*************** DO NOT EDIT THE LINE BELOW ***************/
          if (typeof module !== "undefined") {module.exports = config;}
          S 1 Reply Last reply May 16, 2020, 3:31 AM Reply Quote 0
          • S Away
            sdetweil @jeaniouso
            last edited by May 16, 2020, 3:31 AM

            @jeaniouso but that is the default config.js, not the one w the module u are having trouble with…

            Also, u can edit your forum posts to correct posting errors.
            .I worked w u tonight, and u had the modules installed correctly, but the API key was not correct for some reason

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            J 1 Reply Last reply May 16, 2020, 3:44 AM Reply Quote 0
            • J Offline
              jeaniouso @sdetweil
              last edited by jeaniouso May 16, 2020, 3:46 AM May 16, 2020, 3:44 AM

              @sdetweil @Mykle1 2020-05-15-233649_1024x768_scrot.png

              Thank you so much for your tireless efforts! I finally have it working… I played around with the script after getting rid of errors pointed out by @Mykle1 plus his tutorial was excellent as I read it again and I opted for another API key that I found on here as suggested by @sdetweil … I finally got it working thanks to you two!! Now I can rest lol… Man what a workout!!!

              S 1 Reply Last reply May 16, 2020, 11:23 AM Reply Quote 0
              • S Away
                sdetweil @jeaniouso
                last edited by May 16, 2020, 11:23 AM

                @jeaniouso said in MTA MODULE MM NEWBIE HERE!:

                I opted for another API key that I found on here

                u are supposed to create a new apikey on the train providers web site

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                J 2 Replies Last reply May 16, 2020, 11:44 AM Reply Quote 0
                • J Offline
                  jeaniouso @sdetweil
                  last edited by May 16, 2020, 11:44 AM

                  @sdetweil I did but, for some reason it’s not working hence why I used the other one

                  1 Reply Last reply Reply Quote 0
                  • J Offline
                    jeaniouso @sdetweil
                    last edited by May 16, 2020, 12:09 PM

                    @sdetweil I stand corrected. The APIKEY in the code is mine… I just confirmed

                    M 1 Reply Last reply May 16, 2020, 12:55 PM Reply Quote 0
                    • M Offline
                      Mykle1 Project Sponsor Module Developer @jeaniouso
                      last edited by May 16, 2020, 12:55 PM

                      @jeaniouso

                      Good to see you got it sorted and perhaps a better understanding of how things work. Well done.

                      Create a working config
                      How to add modules

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      1 / 2
                      • First post
                        9/14
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy