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?
@Mitchfarino well there’s no reason to wait @alexyak 's module is working already so you can build your frame it’s extendable too and it’s just software it could be changed later on if needed
and i can tell for sure, that it will be much easier to install his module
@Mitchfarino it’s just work in progress as i showed here https://forum.magicmirror.builders/topic/222/voice-control but i’m collaborating with @ronny3050 the next days to hopefully get a nice module based on pocketsphinx.
progress can be watched on my github
@Mitchfarino you can also register with github account which is a control version system used for coding, but i’m not using snowboy.kitt.ai. i have my own voice recognition
@Mitchfarino you can create every command you want by inserting it in the config and create a trained model for it
Hey guys, I have some ideas in my mind and would like to know if someone has an idea or already experience with this.
I would like to connect some arduinos to the mirror wireless e.g. to open garage door, weather station, etc.
For this I found http://www.digi.com/lp/xbee, but I’m not sure how to protect the communication properly.
If I would send a command like “Open Garage” as plain text and not encrypted, everyone could read that and send this command to my arduino as well and no one wants other people to be able to open their garage. But even when I send the command encrypted everyone could read the encrypted message and send this anytime to my garage door as well :(
My question is now: what is a good approach to communicate secure? pairing? encryption? something else?
config has to look like this
{
module: 'MMM-ping',
position: 'bottom_left',
config: {
hosts: ['www.github.com', '192.168.1.888'],
colored: true,
display: 'offline'
}
}
the config options neet to be part of the config section
@amanzimdwini is this what you asked for in first place?
[card:fewieden/MMM-ping]
code: ‘MODULE_NOT_FOUND’ sounds like you misspelled the module name in the config
@PointPubMedia in your case you can take this config
{
module: 'MMM-ip',
position: 'bottom_bar'
}
combined with
div.MMM-ip div.module-content {
text-align: right;
}
in ~/MagicMirror/css/custom.css