Here, but I think it is not a problem with the config.js, because when I have the module in the config.js include and deinstall the module in Magicmirror/modules I can see the Mirror:
var config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
language: 'de',
timeFormat: 24,
units: 'metric',
modules: [
{
module: 'alert',
},
// {
// module: 'MMM-PIR-Sensor',
// config: {
// relayGpio: '26',
// relayOnState: '0',
// powerSaving: false,
// // See 'Configuration options' for more information.
// },
// },
{
module: 'MMM-Carousel',
config: {
transitionInterval: 10000,
ignoreModules: [],
mode: 'positional',
top_right: {enabled: true, ignoreModules: [], overrideTransitionInterval: 15000}
}
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: 'MMM-FRITZ-Box-Callmonitor',
//position: 'top_bar', // This can be any of the regions. Best results in left or right regions.
//header: "Recent calls", // This is optional
config: { password: 'xxx'
}
},
{
module: 'MMM-Callmonitor-Current-Call',
position: 'top_bar', // This can be any of the regions. Best results in left or right regions.
//header: "Active Calls", // This is optional
},
{
module: 'clock',
position: 'top_left'
},
{
module: 'MMM-DHT22',
position: 'top_left',
config: {
sensorPIN: 22,
updateInterval: 0.5, // Minutes
},
},
{
module: 'currentweather',
position: 'top_left',
config: {
location: 'xxx',
locationID: 'xxx', //ID from http://www.openweathermap.org
appid: 'xxx'
}
},
{
module: 'MMM-Traffic',
position: 'top_left',
classes: 'dimmed medium', //optional, default is 'bright medium', only applies to commute info not route_name
config: {
api_key: 'xxx',
mode: 'driving',
origin: 'xxx',
destination: 'xxx',
//arrival_time: '0800', //optional, but needs to be in 24 hour time if used.
route_name: 'xxx',
changeColor: true,
showGreen: false,
limitYellow: 5, //Greater than 5% of journey time due to traffic
limitRed: 20, //Greater than 20% of journey time due to traffic
traffic_model: 'pessimistic',
interval: 120000, //2 minutes
showWeekend: true,
allTime: true,
}
},
{
module: 'calendar',
header: 'Termine',
position: 'top_right',
config: {
calendars: [
{
symbol: 'calendar-check-o ',
url: 'xxxs',
maximumEntries: '5'
}
]
}
},
{
module: "MMM-Fuel",
position: "top_right",
config: {
api_key: "xxx",
lat: xxx,
lng: xxx,
types: ["diesel"],
max: 2,
rotate: false,
colored: true,
open: true
}
},
// {
// module: 'MMM-Wunderlist',
// position: 'top_right', // This can be any of the regions. Best results in left or right regions.
// header: 'Wunderlist', // This is optional
// config: {
// // See 'Configuration options' for more information.
// }
// },
{
module: 'weatherforecast',
position: 'top_right',
header: 'Weather Forecast',
config: {
location: 'xxx',
locationID: 'xxx', //ID from http://www.openweathermap.org
appid: 'xxx'
}
},
// {
// module: 'newsfeed',
// position: 'bottom_bar',
// config: {
// feeds: [
// {
// title: "xxx",
// url: "xxxl"
// }
// ],
// showSourceTitle: true,
// showPublishDate: true
// }
// },
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== 'undefined') {module.exports = config;}