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.

    Config.js issues

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    3 Posts 3 Posters 1.9k 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 Offline
      ShizukaNaHaji
      last edited by yawns

      Hi All,

      A bit confusing to explain but here goes. I have made my config.js show the time top left and weather top right. If I add any other module all I get is a black screen and nothing else, if I remove the new module the time and weather show again. Below is my current config.js am I missing something as to why it wont work with any other module, compliment for example. You will notice at the bottom there is an RSS module, this does not show and the compliments module kills off everything.

      Thanks in advance for any help,
      Sam

      ```var config = {
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
      
      	language: 'en',
      	timeFormat: 24,
      	units: 'metric',
      
      	modules: [
      		{
      			module: 'clock',
      			position: 'top_left'
      		},
      		{
      			module: 'compliments',
      			position: 'upper_third',
      			config: {
      			compliments: {
      				morning: [
      				'Good Morning'
      					],
      				afternoon: [
      				'Good Afternoon'
      					],
      				evening: [
      				'Good Evening'
      					]
      				}
      			}
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: 'currentweather',
      			position: 'top_right',
      			config: {
      				location: 'Newmarket',
      				locationID: '',
      				appid: 'XXXXX'
      			}
      		},
      		{
      			module: 'mmm-rss-feed',
      			position: 'lower_third',
      			config: {
      				url: 'http://feeds.bbci.co.uk/news/rss.xml'
      			}
      		},
      		]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      strawberry 3.141S 1 Reply Last reply Reply Quote 0
      • strawberry 3.141S Offline
        strawberry 3.141 Project Sponsor Module Developer @ShizukaNaHaji
        last edited by strawberry 3.141

        @ShizukaNaHaji are there any errors in the electron console or in the terminal?

        and you should remove your appid from your post above

        Please create a github issue if you need help, so I can keep track

        yawnsY 1 Reply Last reply Reply Quote 0
        • yawnsY Offline
          yawns Moderator @strawberry 3.141
          last edited by

          @strawberry-3.141 said in Config.js issues:

          @ShizukaNaHaji you should remove your appid from your post above

          I just removed the appid

          1 Reply Last reply Reply Quote 1
          • 1 / 1
          • First post
            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