Pretty slick. What’s changing the pages?
Read the statement by Michael Teeuw here.
Posts
-
RE: Magic Mirror startup script.
Personally, I don’t see why you’d have anything more than
cd ~/MagicMirror
DISPLAY=:0 npm startin your magic mirror startup script. I personally have a 2nd script with the config check in it, so I can see errors and fix them before I manually run the PM2 restart.
-
RE: Forum bug
Ok - playing with the themes, I found one that’s a compromise. Readable (on white background) and has all the buttons… clearly, some errors in the skins.
-
RE: MMM-Carousel - displaying multiple modules at one time.
Not entirely sure I understand - the copies/instances work, and they normally display independently of each other, just every once in a while, the carousel show multiple copies at once.
That being said, it will occur with any module being handled by the MMM-Carousel module. Most frequent problem is two different modules showing at the same time. (MMM-NFL and the first copy of MMM-MyScoreboard)
-
MMM-Carousel - displaying multiple modules at one time.
I’m having a bit of trouble with MMM-Carousel…
Using it with the following config - MMM-MyScoreboard is my (slightly) modified fork of the main app. It’ll randomly display several of the modules at one time (be it MMM-NFL and a few of the MMM-MyScoreboard modules, or just a bunch of the MMM-MyScoreboard copies).
Any clue what’s going on, and how to fix? (Only relevant sections of config shown)
// top_center (This section is managed by MMM-Carousel) { module: "MMM-NFL", position: "top_center", config: { colored: true, reloadInterval: 60000, helmets: true, } }, { module: "MMM-MyScoreboard", position: "top_center", header: "National Hockey League", config: { viewStyle: "oneLine", sports: [ { league: "NHL" // No preferred team (yet) }, ], rolloverHours: 10, showLeagueSeparators: false, showNoSportsText: true, shadeRows: true } }, { module: "MMM-MyScoreboard", position: "top_center", header: "Major League Baseball", config: { viewStyle: "oneLine", sports: [ { league: "MLB", teams: "SF", groups: "AL West", }, { league: "MLS", teams: "SEA", }, ], rolloverHours: 10, showLeagueSeparators: false, showNoSportsText: true, shadeRows: true } }, { module: "MMM-MyScoreboard", position: "top_center", header: "Pac-12 Football", config: { viewStyle: "oneLine", sports: [ { league: "NCAAF", teams: ["ARIZ", "ASU", "CAL", "COLO", "ORE", "ORST", "STAN", "UCLA", "USC", "UTAH", "WASH", "WSU"], // "Pac-12" group doesn't work } ], rolloverHours: 10, showLeagueSeparators: false, showNoSportsText: true, shadeRows: true } }, { module: "MMM-MyScoreboard", position: "top_center", header: "NCAA Football Top 25", config: { viewStyle: "oneLine", sports: [ { league: "NCAAF", teams: ["@T25"], } ], rolloverHours: 10, showLeagueSeparators: false, showNoSportsText: true, shadeRows: true } }, //hidden modules { module: "MMM-Carousel", config: { transitionInterval: 20000, showPageIndicators: false, showPageControls: false, mode: "positional", top_center: { enabled: true, ignoreModules: [], }, }, }, -
RE: MMM-MyScoreboard
Vince, Your mod works perfectly - once I undo mine.
Thanks for the head start to see how it’s modified. Will be fun to learn.
-
RE: MMM-MyScoreboard
FWIW, I seem to have a legit bug - the group “Pac-12” seems to go random on teams in NCAAF. (using my fork of VinP’s fork of the module), I’ve overridden it by putting all the teams in individually for now.
-
RE: MMM-MyScoreboard
Cool, Thanks, Vince - I’ve merged your updates into my fork, and I’m playing with it now. Thinking about playing around with the other (what I would consider) improvement cases I wanna do, having two or three modules to show scoreboards that are all different does irritate me to no end… :)