It would be great if there was a module that informed of and tracked hurricane status… I live in Europe and have a house in Florida… I would love my MM to tell me if a hurricane has formed - keep stats on it’s current trajectory and tell me what category it is.
Read the statement by Michael Teeuw here.
Posts
-
Hurricane status?
-
RE: London tube status
@nigel-daniels You are SO right! That works perfectly! Thank you!
-
RE: London tube status
/* Magic Mirror Config Sample
*- By Michael Teeuw http://michaelteeuw.nl
- MIT Licensed.
*/
var config = {
port: 8080,language: 'en', timeFormat: 24, units: 'imperial', modules: [ { module: 'alert', }, { module: 'MMM-Tube-Status', position: 'bottom_bar', header: 'Tube Status', config: { show_all: true } }, { module: 'MMM-Remote-Control' },
// {
// module: ‘MMM-Modulecheduler’,
// config: {
// notification_schedule: [
// //turn the moniter on at 6:30 am daily
// {notification: ‘REMOTE_ACTION’, schedule: '30 6 * * * ', payload: {action: “MONITORON”}},
// //turn off the monitor at 22:30 daily
// {notification: ‘REMOTE_ACTION’ schedule: ‘30 22 * * *’, payload: [action: “MONITOROFF”}},
// //restart magicmirror 2am sundays
// {notification: ‘REMOTE_ACTION’, schedule: ‘0 2 * * SUN’, payload: [action: “RESTART”}}
// ]
// }
// },{ module: 'clock', position: 'top_left' }, { module: 'MMM-Wunderlist', position: 'top_left', header: 'To-Do', config: { accessToken: '', clientID: '', lists: ["Work", "Family"] } }, { module: 'calendar', header: 'Jennifer Calendar', position: 'middle_center', config: { calendars: [ { symbol: 'calendar-check-o', url: '' }, { url: '', }, { url: 'webcal://www.calendarlabs.com/templates/ical/UK-Holidays.ics' }, ] } }, { module: 'calendar', header: 'Sarika Calendar', position: 'middle_center', config: { calendars: [ { symbol: 'diamond', url: '' }, ] } }, { module: 'compliments', position: 'top_bar' }, { module: 'currentweather', position: 'top_right', config: { location: 'City of Westminster', locationID: '', //ID from http://www.openweathermap.org appid: '' } }, { module: 'weatherforecast', position: 'top_right', header: 'Weather Forecast', config: { location: 'City of Westminster', locationID: '', //ID from http://www.openweathermap.org appid: '' } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "BBC Top Stories", url: "http://feeds.bbci.co.uk/news/rss.xml" } ], showSourceTitle: true, showPublishDate: true } }, ]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== ‘undefined’) {module.exports = config;} -
RE: London tube status
I apologize, I can’t seem to figure out how to PM you. If it’s ok, I can just paste the config file (sans personal info) here.
-
RE: London Bus status
@Porkiddo Perfect! Thanks for tackling it! I would love to use it when you are finished! Thanks!
-
RE: London tube status
@nigel-daniels Thanks for getting back to me! Do you want the entire config or just the tube station portion of it? I will PM it to you shortly…
-
London Bus status
Like the London Tube status, it would be great to see the status of the London bus (optional configuration of bus lines /and/or configuration of bus stop timings)
TFL has great api’s out there if anyone is willing to tackle this. For now I am pulling a webpage into helloworld to view it, but am having refresh issues.
-
RE: London tube status
Love this! signed up for a dev account myself and was trying to figure out how to write this. My only question when I load this as a module - the module takes up the entire width of my screen. Is there a way to set a size on it?
-
RE: Help please with refresh of webpage
@yawns I copied everything exactly, had a thrice over look at syntax but now the module doesn’t show at all. On the MM it just shows the name, but not the content. Help?
-
Help please with refresh of webpage
HI there! I have loaded a piece of a webpage (transport for london) into the helloworld module (as per the halloween instructions). This part works perfectly, I can see my current bus status, tube status for the line I take and the timings for the next train in the direction I take. My problem is that after about 10 minutes or so, the page tells me “this departure information is out of date. Please try reloading the page.” I need to add some code into the helloworld module in order to set a refresh on the page at certain time intervals. I tried an updateInterval, but I either coded it wrong or I"m missing some code. Can anyone help me please? This is the last thing on my twin display MM (well, until I can get Alexa voice commands working !) Many thanks in advance!