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

    ShizukaNaHaji

    @ShizukaNaHaji

    0
    Reputation
    359
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    ShizukaNaHaji Unfollow Follow

    Latest posts made by ShizukaNaHaji

    • Config.js issues

      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;}
      posted in Troubleshooting
      S
      ShizukaNaHaji