Read the statement by Michael Teeuw here.
Adding Modules... Please Please advise
- 
 Not sure if this is the problem but the position for module WorldTides should be top_right and not top-right That btw is my fault, a stupid typo in the readme :( 
- 
 ah, cool thanks, hopefully that’s all the problem is, :) 
- 
 :( nope, i updated yet still have a blank screen :( var config = { 
 port: 8080,language: 'en', timeFormat: 12, units: 'metric', modules: [ { module: 'alert', }, { module: 'clock', position: 'top_left' }, { module: 'calendar', header: 'British Holidays Bitch', position: 'top_left', config: { calendars: [ { symbol: 'calendar-check-o ', url: 'webcal://www.calendarlabs.com/templates/ical/UK-Holidays.ics' } ] } }, { module: 'compliments', position: 'lower_third' }, { module: 'currentweather', position: 'top_right', config: { location: 'Phuket', locationID: '1151254', //ID from http://www.openweathermap.org appid: '297ccc98662ac6f508ac9e47c549a716' } }, { module: 'weatherforecast', position: 'top_right', header: 'Weather huh!', config: { location: 'Phuket', locationID: '1151254', //ID from http://www.openweathermap.org appid: '297ccc98662ac6f508ac9e47c549a716' } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "Bloomberg Baby!", url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml" } ], showSourceTitle: true, showPublishDate: true } }, { module: 'MMM-WorldTides', position: 'top_right', config: { longitude: '7.880', //longitude and latitude need to be written with . instead of , latitude: '98.392', appid: '5d3d65d6-f4a6-45d4-ab44-13e4eab4b421' //appid needs to be requested from worldtides.info } }, ]}; /*************** DO NOT EDIT THE LINE BELOW ***************/ 
 if (typeof module !== ‘undefined’) {module.exports = config;}
- 
 Is it due to not pasting the code like this modules: [ 
 {
 module: ‘MMM-WorldTides’,
 position: ‘top-right’,
 config: {
 longitude: ‘’, //longitude and latitude need to be written with . instead of ,
 latitude: ‘’,
 appid: ‘’ //appid needs to be requested from worldtides.info
 }
 }
- 
 I need to check on my machine this evening, when I am at home 
- 
 Thanks, much appreciated :) 
- 
 var config = { 
 port: 8080,language: 'en', timeFormat: 12, units: 'metric', modules: [ { module: 'alert', }, { module: 'clock', position: 'top_left', }, { module: 'calendar', header: 'British Holidays Bitch', position: 'top_left', config: { calendars: [ { symbol: 'calendar-check-o ', url: 'webcal://www.calendarlabs.com/templates/ical/UK-Holidays.ics' } ] } }, { module: 'compliments', position: 'lower_third', }, { module: 'currentweather', position: 'top_right', config: { location: 'Phuket', locationID: '1151254', //ID from http://www.openweathermap.org appid: '297ccc98662ac6f508ac9e47c549a716' } }, { module: 'weatherforecast', position: 'top_right', header: 'Weather huh!', config: { location: 'Phuket', locationID: '1151254', //ID from http://www.openweathermap.org appid: '297ccc98662ac6f508ac9e47c549a716' } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "Bloomberg Baby!", url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml" } ], showSourceTitle: true, showPublishDate: true } }, { module: 'MMM-WorldTides', position: 'top_right', config: { longitude: '7.880', //longitude and latitude need to be written with . instead of , latitude: '98.392', appid: '5d3d65d6-f4a6-45d4-ab44-13e4eab4b421' //appid needs to be requested from worldtides.info } }, ]}; /*************** DO NOT EDIT THE LINE BELOW ***************/ 
 if (typeof module !== ‘undefined’) {module.exports = config;}
- 
 I think the error is that the line module: 'alert',has a trailing comma, it should read module: 'alert'
- 
 Thanks will check now. 
- 
 Strange these modules have not been pre- code checked before uploading to GH…? I’ve updated my script as been adding other modules, and getting errors or just “loading”… have added /// pre module lines to highlight the ones that i am having issues with … var config = { 
 port: 8080,language: 'en', timeFormat: 12, units: 'metric', modules: [ { module: 'alert' }, { module: 'clock', position: 'top_left', }, { module: 'calendar', header: 'British Holidays', position: 'top_left', config: { calendars: [ { symbol: 'calendar-check-o ', url: 'webcal://www.calendarlabs.com/templates/ical/UK-Holidays.ics' } ] } }, { module: 'compliments', position: 'lower_third', }, { module: 'currentweather', position: 'top_right', config: { location: 'Phuket', locationID: '1151254', //ID from http://www.openweathermap.org appid: '297ccc98662ac6f508ac9e47c549a716' } }, { module: 'weatherforecast', position: 'top_right', header: 'Weather huh!', config: { location: 'Phuket', locationID: '1151254', //ID from http://www.openweathermap.org appid: '297ccc98662ac6f508ac9e47c549a716' } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "Bloomberg", url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml" } ], showSourceTitle: true, showPublishDate: true } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { tittle: "BBC Sci-Tech", url: "http://feeds.bbci.co.uk/news/video_and_audio/technology/rss.xml?edition=uk" } ], showSourceTitle: true, showPublishDate: true } }, { module: 'MMM-Instagram', position: 'top_right', config: { access_token: 'e897699215d0464f9aac278e4fdc25ba', count: 20, min_timestamp: 0, animationSpeed: 2500, updateInterval: 12500 } },/// { 
 /// module: ‘MMM-Carousel’,
 /// config: {
 /// // See below for configurable options
 /// }
 /// },
 /// {
 /// module: ‘camera’,
 /// position: ‘top_center’,
 /// config: selfieInterval: 3, // Time interval in seconds before the photo will be taken.
 /// emailConfig: {
 /// service: ‘gmail’, // Email provider to use to send email with a photo.
 /// auth: {
 /// user: ‘xxxx@xxx.com’, // Your email account
 /// pass: ‘’ // Your password for email account
 /// }
 /// },
 /// {
 /// module: ‘voicecontrol’,
 /// position: ‘bottom_left’,
 /// config: {
 /// models: [
 /// {
 /// keyword: “Show Camera”,
 /// description: “Say ‘Show Camera’ to display camera”,
 /// file: “showCamera.pmdl”,
 /// message: “SHOW_CAMERA”
 /// },
 /// {
 /// keyword: “Hide Camera”,
 /// description: “Say ‘Hide Camera’ to hide camera”,
 /// file: “hideCamera.pmdl”,
 /// message: “HIDE_CAMERA”
 /// },
 /// {
 /// keyword: “Selfie”,
 /// description: “Say ‘Selfie’ when camera is visible”,
 /// file: “selfie.pmdl”,
 /// message: “SELFIE”
 /// }
 /// },
 ]
 };
 /*************** DO NOT EDIT THE LINE BELOW ***************/
 if (typeof module !== ‘undefined’) {module.exports = config;}



