@justjim1220 It looks like you are trying to do multiple request, as mykles description sounds like one request with a comma seperated list.
Read the statement by Michael Teeuw here.
Posts
-
RE: Help choosing more than one item from an array
-
RE: Magic mirror serving multiple clients
@cowboysdude take a look at https://github.com/fewieden/MMM-syslog-slave thats the only thing were I connected multiple instances
-
RE: MMM-NFL Issues
@danielloftus you didn’t close the modules array, you missed commas and you placed quotes.
{ module: 'MMM-NFL', position: 'bottom_right', config: { colored: true, helmets: true, reloadInterval: 3000 } }, ]
-
RE: Some Calendar Icons Missing
@lazyboy0284 you’re lucky someone integrated the fontawsome v5 with backwards compatibility and it was merged today into the develop branch https://github.com/MichMich/MagicMirror/pull/1427
-
RE: MagicMirror Ideas for Retail Application
@solelo I guess it depends on the type of store, you can also check out this list https://github.com/MichMich/MagicMirror/wiki/3rd-party-modules
-
RE: MMM-NFL Only shows "loading"
@mrpicasso @Mykle1 @BKeyport with the help of https://github.com/alacercogitatus the problem is now fixed. Make sure you get the newest version of the master branch and run npm install https://github.com/fewieden/MMM-NFL
-
RE: change current weather colors - time and wind
@karde this is for the default module
currentweather
and not as I thoughtMMM-WunderGround
/* wind speed selector */ .currentweather > .module-content > div > div.normal.medium > *:nth-child(2), /* wind direction selector */ .currentweather > .module-content > div > div.normal.medium > *:nth-child(3), /* sunset/sunrise time selector */ .currentweather > .module-content > div > div.normal.medium > *:nth-child(6){ color: orange; }
-
RE: Issue displaying images in alerts
@tagriel the url would be https://github.com/fewieden/MMM-soccer
but the only thing you need is a module let’s call it
imageserver
, which is only responsible as an image host.directory structure:
MagicMirror - modules - imageserver - public - kids.png - imageserver.js - node_helper.js
imageserver.js
Module.register("imageserver", {});
node_helper.js
const NodeHelper = require('node_helper'); module.exports = NodeHelper.create({});
config.js
{ module: "imageserver" },
command
MM.getModules()[0].notificationReceived("SHOW_ALERT", {title: 'My Title', message: 'Some Text', imageUrl: '/imageserver/kids.png'}, {name: 'test'});
-
RE: Default Newsfeed: Fullscreen News Article in MMM-Modal instead of iFrame
@RaspiManu I’m quite busy to help you out much here. But maybe it helps you to check out https://github.com/fewieden/MMM-Modal/issues/6 where @skuethe implemented MMM-Modal with MMM-Touch and MMM-WiFiPassword