@xela Apparently this was happening when trying to request an image larger than 720px from webcamjs
. See the notes here for Chrome and requiring SSL, and exceptions for localhost
and 127.*.*.*
. Is the address
in your config still localhost
?
Read the statement by Michael Teeuw here.
Posts made by ninjabreadman
-
RE: can't get the webcam to work
-
RE: [FIXED] MMM-CalendarExt Facebook birtday events shown on two days
@modderhut Strange that
['monthly']
displays correctly, but['daily']
doesn’t. I don’t use the FB feed, so can’t confirm. For reference, this is handled incomponents/Calendar.js
which passes the duration (e.g.P1D
) tomoment
, which returns the start/end times. However, they should all fall on the same day (i.e. 00:00 and 23:59).cc. @Sean
-
RE: MMM-RSS-FEED Update
@Lio019 @Krato5 You’re right. Looking at the code, it loops through the entries but overwrites itself, displaying only the last one (in
MMM-RSS-FEED.js
):var entries = result.feed.entries; for(var i = 0; i < entries.length; i++){ var entry = entries[i]; wrapper.innerHTML = entry.title; }
I think the author didn’t notice because it’s used for a “Word of the Day” feed in the screenshot, where one only wants the latest entry.
You want it to rotate all of the RSS entries? Why not use the default
newsfeed
module? -
RE: Magic Mirror Modules Not Working
@Kartik596 It’s not in the original file, as seen here. It must be a typo introduced at some point.
-
RE: Voice control question
@dogfeet There are modules that will accomplish what you’re looking for. Check out
MMM-voice
or @Mykle1’sHello-Lucy
. You want a voice module that will send notifications to other modules to trigger actions, like turning off the screen or displaying a particular photos module.However, these will all be preset commands (e.g. “show me photos” or “go to sleep”). I’m not sure that even the MM implementations of Google, Alexa, etc, support complex queries and results like “show me photos of giraffes” or “play popular music videos from YouTube,” if that’s what you were hoping.
-
RE: Magic Mirror Modules Not Working
@Kartik596 I mean if you look at the very bottom of your code block, there is a
_KEY
that would cause a syntax error. However, I imagine this isn’t in your actual config. -
RE: Magic Mirror Modules Not Working
@Kartik596 There’s some cruft (i.e.
_KEY
) at the bottom of your code. Is it in the actual file? To start, you can copy/paste your config into JSHint to catch any other syntax errors. -
RE: Module Developer Challenge - I surrender!
@Mykle1 Glad to hear you got it working!
Is this your dev environment? Or do you really have an i7 780, GTX 660 and 16Gb running MM? At least it can run MMM-Globe!
-
RE: [FIXED] MMM-CalendarExt Facebook birtday events shown on two days
@modderhut What is the time zone for your MM? What is the time zone of your FB birthday feed/file? You can open an ics in any text editor. If they’re the same, it may not be getting properly interpreted.
-
RE: MT4-5 /MQL on MM²
@Krato5 You should be able to load most Tradingview pages in an
iframe
or make a simple module with their embed code.As for MetaTrader, the RPi is already slow; forcing it to emulate x86 and Windows (via Wine) is likely to yield an unsatisfactory user experience. It also wouldn’t be easy to display within MM. Far better to find yourself an old laptop with x86 architecture on which you can run Windows with MT (and, keeping it relevant to the forum, MM).