@strawberry-3.141
Anyway, I copied the folder again to the pi.
calender, changed compliments and newsfeed appear.
Do you have an idea, why the weather and the forecast dont show?
Thanks
/* Magic Mirror Config Sample
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
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: "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: 'Vienna',
locationID: '2761369', //ID from http://www.openweathermap.org
appid: 'xxxxxxxxxxxxxxxxxx'
}
},
{
module: 'weatherforecast',
position: 'top_right',
header: 'Das Wetter',
config: {
location: 'Vienna',
locationID: '2761369', //ID from http://www.openweathermap.org
appid: 'xxxxxxxxxxxxxxxxx'
}
},
{
module: 'newsfeed',
position: 'bottom_bar',
config: {
feeds: [
{
title: "Der Standard",
url: "http://derStandard.at/?page=rss&ressort=Seite1"
}
],
showSourceTitle: true,
showPublishDate: true
}
},
]
};
Note from admin: Please use Markdown on code snippets for easier reading!