Read the statement by Michael Teeuw here.
HELP!!!!!!!
-
Hi everyone I’m new to building a mirror and I want to add a 3 party moduel can someone help me I’m so lost. Thank you in advance
-
Well, which one do you want to add? Each 3rd party module comes with a readME file. In the readMe you will find the entry that you should add to your config.js file
-
-
disabled: true, module: "updatenotification", position: "top_bar" }, { module: 'mm-music-player', position: 'bottom_left', config: { startingVolume: 20, fadeDuriation: 2000 } }, { module: "MMM-EARTH", position: "top_center", config: { rotateInterval: 1000, MaxWidth: "100%", MaxHeight: "100%", animationSpeed: 0, } },
-
this is all you are adding
{ module: 'mm-music-player', position: 'bottom_left', config: { startingVolume: 20, fadeDuriation: 2000 } },
-
@Mykle1 modules: [
{
module: “alert”,
},
{
module: “updatenotification”,
position: “top_bar”
},
{
module: “clock”,
position: “top_left”
},
{
module: “calendar”,
header: “US Holidays”,
position: “top_left”,
config: {
calendars: [
{
symbol: "calendar-check-o “,
url: “webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics”
}
]
}
},
{
module: “compliments”,
position: “”
},
{
module: “currentweather”,
position: “top_right”,
config: {
location: “”,
locationID: “”, //ID from http://www.openweathermap.org/help/city_list.txt
appid: '”
}
},
{
module: “mm-music-player”,
position: “bottom_left”,
config: {
startingVolume: 20,
fadeDuration: 2000
}
},
{
module: ‘MMM-History’,
position: ‘’,
config: {
maxWidth: “300px”
}
},
{
module: ‘random_quotes’,
position: ‘lower_third’,
config: {
// The config property is optional
// Without a config, a random quote is shown,
// selected from all of the categories available.
}
},
{
module: “weatherforecast”,
position: “top_right”,
header: “Weather Forecast”,
config: {
location: “”,
locationID: “”, //ID from http://www.openweathermap.org/help/city_list.txt
appid: “”
}
},
{
module: “newsfeed”,
position: “bottom_bar”,
config: {
feeds: [
{
title: “New York Times”,
url: “http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml”
}
],
showSourceTitle: true,
showPublishDate: true
} -
@Mykle1 modules: [
{
module: “alert”,
},
{
module: “updatenotification”,
position: “top_bar”
},
{
module: “clock”,
position: “top_left”
},
{
module: “calendar”,
header: “US Holidays”,
position: “top_left”,
config: {
calendars: [
{
symbol: "calendar-check-o ",
url: “webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics”
}
]
}
},
{
module: “compliments”,
position: “lower_third”
},
{
module: “currentweather”,
position: “top_right”,
config: {
location: “”,
locationID: “”, //ID from http://www.openweathermap.org/help/city_list.txt
appid: “”
}
},
{
module: ‘MMM-History’,
position: ‘bottom_bar’,
config: {
maxWidth: “300px”
}
},
{
module: ‘random_quotes’,
position: ‘lower_third’,
config: {
// The config property is optional
// Without a config, a random quote is shown,
// selected from all of the categories available.
}
},
{
module: “weatherforecast”,
position: “top_right”,
header: “Weather Forecast”,
config: {
location: “”,
locationID: “”, //ID from http://www.openweathermap.org/help/city_list.txt} }, { module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" } ], showSourceTitle: true, showPublishDate: true } },
-
Some day!
-