plans are:
- i18n
- integration of my voice recognition module (also wip), this goes with more use of the api like fixtures etc.
- cup support
- smaller screen support
probably I’m going one step back and will put league codes configurable again
plans are:
probably I’m going one step back and will put league codes configurable again
[card:fewieden/MMM-soccer]
as I said it’s work in progress and not finished
@ianperrin well that’s kind of an old version meanwhile, I have a work in progress of a newer version on github already
@PointPubMedia i could have a look into it if you provide me more details (pm)
@dejayou you’re still using the wrong ones
/* Magic Mirror Config Sample
By Michael Teeuw http://michaelteeuw.nl
MIT Licensed.
*/
var config = {
port: 8080,
language: 'en',
timeFormat: 24,
units: 'metric',
modules: [{
module: 'alert'
}, {
module: 'wuforecast',
position: 'top_right', // This can be any of the regions.
// Best results in left or right regions.
config: {
// See ‘Configuration options’ for more information.
location: 'Cleveland',
appid: '5095830b868b90bcc31affdad4911325' //wunderground.com API key.
}
}, {
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: 'Cleveland',
locationID: '4614088', //ID from bulk.openweather.org/sample/
appid: '5095830b868b90bcc31affdad4911325'
}
}, {
module: 'weatherforecast',
position: 'top_right',
header: 'Weather Forecast',
config: {
location: 'Cleveland',
locationID: '4614088', //ID from bulk.openweather.org/sample/
appid: '5095830b868b90bcc31affdad4911325'
}
}, {
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
}
} ]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== 'undefined') {
module.exports = config;
}
My mirror is around 65°, but I’m using cpu intensive voice recognition
@dejayou i can find a couple of errors in your config
module: 'alert', // remove comma
module: ‘wuforecast’, // you often used wrong single quotes
{
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
}
}, ] // remove comma
@tyho try this.sendSocketNotification('go_to_sleep', {}); in notification.js otherwise the node_helper doesnt’t get any msg and will not perform any action
@amanzimdwini font is now configurable. whats bad about the readme should i add some infos?