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

    tomamer

    @tomamer

    3
    Reputation
    353
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    tomamer Unfollow Follow

    Best posts made by tomamer

    • RE: New module breaks magicmirror

      @yawns @Mykle1 thanks for the help, just needed to understand the correct layout, now understanding all working,

      thanks, Tom

      posted in Troubleshooting
      T
      tomamer

    Latest posts made by tomamer

    • RE: New module breaks magicmirror

      @yawns @Mykle1 thanks for the help, just needed to understand the correct layout, now understanding all working,

      thanks, Tom

      posted in Troubleshooting
      T
      tomamer
    • RE: New module breaks magicmirror

      @yawns oh great spot!
      edited that and fixed it
      thanks,

      posted in Troubleshooting
      T
      tomamer
    • RE: New module breaks magicmirror

      @mykle1 Followed your tutorial and works fine, when I copy and paste the code from other modules it doesn’t work.

      For instance, adding

      {
                  module: 'MMM-CountDown',
                  config: {
                      event: "New Millenium",
                      date: "3000-01-01"
                  }
              }
      

      as per https://github.com/boazarad/MMM-CountDown breaks it

      posted in Troubleshooting
      T
      tomamer
    • RE: New module breaks magicmirror

      I’ve removed the text from the top on this forum, not in the file, and blocked out appID’s or API’s or any of those.
      It works fine with the default ones, but as soon as I add a new module, like MMM-LocalTransport I get the ‘Please Create a Config File’ error
      I follow the installation guides and install dependencies…

      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
      			module: "calendar",
      			header: "Schedule",
      			position: "top_left",
      			config: {
      				colored: true,
      				fadePoint: 0.75,
      				calendars: [
      					{
      						url: 'webcal://********************************',
      						symbol: 'calendar'
      					},
      					{
      						url: "webcal://********************************",
      						symbol: "facebook-square",
      						color: "#3b5998"
      					},
      					],
      			}
      		},
      {
      			module: 'MMM-LocalTransport',
      			position: 'bottom_left',
      		  	config: {
      		    		api_key: '********************************',
      		    		origin: 'Mortlake, London',
      		    		destination: ‘Kingston, London'
      		  	}
      		},
      //		{
      //			module: "compliments",
      //			position: "lower_third"
      //			config: {
      //				compliments: {
      //						anytime: [
      //							"Lookin' fresh!"
      //						],
      //						morning: [
      //							"wa"
      //						],
      //			}
      //		},
      {
      			module: "currentweather",
      			position: "top_right",
      			config: {
      				location: "Marlborough",
      				locationID: "2643010",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "********************************"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "New York",
      				locationID: "2643010",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "********************************"
      			}
      		},
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      					{
      						title: "BBC News",
      						url: "http://feeds.bbci.co.uk/news/rss.xml"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      		
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      

      Thank you for helping, much appreciated,

      posted in Troubleshooting
      T
      tomamer
    • New module breaks magicmirror

      When I follow the installation process for any of the modules on https://github.com/MichMich/MagicMirror/wiki/3rd-party-modules, and add the data to the config.js file, when I save, it has the error of “you need a config file”.
      I’m new to this so is there something simple I’m doing wrong?

      thanks,

      posted in Troubleshooting
      T
      tomamer