Read the statement by Michael Teeuw here.
My second Magic Mirror (without a mirror)
-
Here are pics of my 2nd MagicMirror without a mirror. Had so much fun making this one!
-
@MadsChaves how are you changing pages? hidden button somewhere?
-
@cyberphox - the pages just cycle through every 30 seconds, I am thinking of adding options for external intervention i.e. voice commands but am not there yet :)
-
@MadsChaves Very nice. What non default modules are you using?
-
@OldSunGuy I used: calendar_monthly (tweaked to also show previous and next month), MMM-BackgroundSlideshow, MMM-pages, MMM-Page-Indicator, MMM-GooglePhotos,worldclock…
-
Hi @MadsChaves,
Nice job. Can you explain to me how did you calendar_monthly Next and Prev do that? Please -
@Leobo said in My second Magic Mirror (without a mirror):
Hi @MadsChaves,
Nice job. Can you explain to me how did you calendar_monthly Next and Prev do that? PleaseI was going to ask the exact same question!
-
@mrdenmark & @Leobo - I am not a programmer but I can understand a little bit of code :) Anyways, I essentially replicated/tweaked the calendar_monthly module of Ashley M, Kirchner - big thanks (& apologies as well) to him for this module!!
This calendar_monthly is basically using the moment() function. So for the next month module I used the "moment().add(1,‘months’)"to re-define the var month variables and for the previous month I used the “moment().subtract(1,‘months’)”…and since I was going to show prev, currrent and next months at thesame time, I removed the days (grayed days) of the other months that did not belong. I also played with the font size that was pre-defined in the wrapper as well as tweaked the cssStyle. Hope this helps :) -
Thank you for your answer @MadsChaves . I do not understand about programs and code. I like this calendar_monthly module and I won’t show next month. Can you post your next month code here? Please.
-
@Leobo Oh, if you just want the monthly calendar, checkout the calendar_monthly module by KirAsh4 under the Utility / IOT / 3rd Party / Integration modules. The same one I used.