@jenga Maybe you are having the same issue I am with incorrect current/hourly time & temperature conversion?
Read the statement by Michael Teeuw here.
Best posts made by nitewing76
-
RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast
-
RE: MMM-CalendarExt2
@mrjdar No, it would be one on top of the other and probably too crammed to do much with. To paraphrase the dev from awhile back…the intent of MM is to have a snapshot of your life, smartphones/tablets are better suited to go beyond that.
For me, I put one month on a page, then the next month on another page. Here’s a guide on how to do that…but for it to work on mine, I only put 1 view per scene. In other words, don’t stack them views:[“VIEW1”, “VIEW2”], just views:[“VIEW2”] and the same for other pages. Then I use MMM-Pages and MMM-KeyBindings to move from page to page.
Latest posts made by nitewing76
-
RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast
@jenga Maybe you are having the same issue I am with incorrect current/hourly time & temperature conversion?
-
RE: MMM-CalendarExt2
@mrjdar No, it would be one on top of the other and probably too crammed to do much with. To paraphrase the dev from awhile back…the intent of MM is to have a snapshot of your life, smartphones/tablets are better suited to go beyond that.
For me, I put one month on a page, then the next month on another page. Here’s a guide on how to do that…but for it to work on mine, I only put 1 view per scene. In other words, don’t stack them views:[“VIEW1”, “VIEW2”], just views:[“VIEW2”] and the same for other pages. Then I use MMM-Pages and MMM-KeyBindings to move from page to page.
-
RE: MMM-RAIN-MAP (new: version 2.x)
^^^ works by adding:
app.style.margin = "0 auto";
at line 91 of util.js.
-
RE: MMM-RAIN-MAP (new: version 2.x)
How do I center the map in the middle of a region? The header is centered, but not the map. (not referring to the marker within the map, but the map itself)
-
RE: MMM-CalendarExt2
This sort of works:
notifications: { "REMOTE_ACTION" : { payload: "CAROUSEL_NEXT", exec: "sceneNext", } },
Except in the view config, for page 2 only one scene is listed instead of both as it is with MMM-Pages (otherwise both are shown). However, when I switch to page 2: the calendar from page 1 is drawn for a few milliseconds, then the correct calendar is drawn, but then is immediately redrawn.
-
RE: MMM-CalendarExt2
To have different calendars on different pages MMM-Pages uses:
notifications: { "PAGE_INCREMENT" : { exec: "sceneNext", }, "PAGE_DECREMENT" : { exec: "scenePrevious", }, } }
What would the equivalent be for MMM-Carousel, where the notification is constant and the payload changes?
notification: "REMOTE_ACTION", payload: { action: "CAROUSEL_NEXT" } notification: "REMOTE_ACTION", payload: { action: "CAROUSEL_PREVIOUS" }