@Cliff365 MMM-GooglePhotos
Read the statement by Michael Teeuw here.
Posts
-
RE: How do I know if a monitor is suitable for a MagicMirror
@oraturk75
Or you need something like this;
-
RE: Magic Mirror - RTSP not integrated
@Ronald @plainbroke @BKeyport (or any others)
Do you guys still have an interest in this issue? (RTSP implements on MM).I build up a simple module, and It looks to be working, but my Home IP cams don’t support long-live RTSP streaming (Because it is not wire-powered, thus to protect from battery draining, the feature has limited.), And at this moment, I don’t have any RPI to test. (I tested this module on Mac, VIM3(Ubuntu) but not on RPI.
So, I need the help of a real-world test. Anyone who has interests and has RTSP-streamable cams, Give me DM, please. (in this forum or eouia0819@ gmail. com)
-
RE: Developer Wanted To Modify Default Newsfeed Module
@greedyvegan
Even thoughMMM-AnotherNewsFeed
was not updated for 2 years, it still works.{ module: "MMM-anotherNewsFeed", header: "ANOTHER News Feed", position: "bottom_bar", config: { feeds: [ { title: "New York Times", url: "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml", }, { title: "CBC World", url: "https://www.cbc.ca/webfeed/rss/rss-world", }, { title: "BBC World News", url: "https://feeds.bbci.co.uk/news/world/rss.xml", } ], showImage: true, } },
-
RE: Which display to buy?
If the size is around 14", I recommend purchasing a laptop repair LCD Panel from AliExpress.
If you purchase a 14" - 17" laptop repair Panel together with the Control Board;PROS
-
Since only the LCD panel is cleanly separated, there is no hassle when making a MagicMirror frame, and especially, there is no risk of damage due to carelessness when disassembling a ready-made monitor.
-
The Control Board and the buttons connected to it are also cleanly separated, so it is easy to place when making a frame.
-
Unlike general desktop monitors, the power supply is simply supplied with 12V DC (5V depending on the model), so there is no need to build an unnecessarily large and heat-generating power supply for general monitors into the MagicMirror.
-
The panel itself is very thin and the board is also thin, so it is suitable for making a thin and ultra-thin MagicMirror.
CONS
- It is slightly more expensive than purchasing a general desktop monitor, but it usually costs around 100EUR/100USD. It is easy to get. Even if you don’t go through a Chinese distributor like AliExpress, you can get it on Amazon for a slightly higher price.
-
-
RE: MMM-Calendarextplan
By the way, I’ll provide equivalent CX3 module to alternate this module some day(I hope so…)
-
RE: Developer Wanted To Modify Default Newsfeed Module
@KristjanESPERANTO
Maybe. :) I’m so lazy. hahaha… To be honest I have been forgetting this module until now. -
RE: MMM-CalendarExt2
@askedal
Anyway, I need to point this; The MMM-CalendarExt2 is going to die because of its unusual complexity to use and heavy dependencies of obsoleted legacy node modules. I already have archived it. I wish I can release Ext3 in near future to solve those problems. -
RE: Problem installing new module (beginner), CalendarEXT3 not displaying
@sdetweil @Manino
Maybe your 3 calendars might have tons of events(at least 10) since long long ago time(at least 1 year).
Past events might be too many, so all of the quota for broadcasting was already consumed by the older events.
To test it, remove 3 calendars, try ‘us-holiday’ calendar of the default config example.If so, check
maximumNumberOfDays
andmaximumEntries
of the default calendar module.I think it is not the bug of that module but unexpected behaviour. Generally, for past events, People will regard newer events than older events as more important. But broadcasting of this calendar module contains older events prior to newer ones.
-
RE: Need Help Changing Background Image Based on Time
@tonkxy
You’ve missedthis.updateDom()
. It needs to be called when you want to redraw your module’s output.
Whenever you call “updateDom()”, your “getDom()” will be executed.