A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Add further npm dependencies to basic MM installation

    4
    0 Votes
    4 Posts
    1k Views
    lavolp3L
    @michmich said in Add further npm dependencies to basic MM installation: And how would we select which dependencies we include in MM and which dependencies we don’t? Well that is obviously a case-by-case decision and therefore a bit tricky, I admit. But from these two I’m sure they are valuable to the MM environment. A Google translation API (which tbh needs to be chosen carefully because one on npm is currently not working unfortunately) A Charting tool. So why not use them? It’s “only” a few JS files. However, it’s your decision and I fully respect your point.
  • Run MagicMirror https

    2
    0 Votes
    2 Posts
    964 Views
    S
    @lacaca i don’t think so… you could fork the repo and add support for HTTPS (and how to make it work for others), and submit that back to the project for inclusion in a future release I looked at this for someone else… came to same conclusion you did
  • Divide Config.js into modules

    Unsolved
    21
    0 Votes
    21 Posts
    10k Views
    S
    @artieikon u can get files from the filesystem without special config settings just setup an express url handler in the node helper. See the MMM-ImagesPhotos module for an example use. Node_helper sets up the express url handler, module does a request to that url, and handler gets invoked, and files are found and their names are returned. The a url request is made for a file and it’s contents are returned. Module doesn’t know helper provided the files list or data
  • What difference does node server-only make in operation?

    Solved
    3
    0 Votes
    3 Posts
    2k Views
    S
    Many thanks got similar great info from discord as never have patience, apols. One last thing as I said because I have done a little script for Pi Zero https://github.com/StuartIanNaylor/MagicMirrorPi0StretchLite that has chromium with all the commandline settings need for the above. I said to Mich I was just looking @ Selenium as thinking of doing a Chromium watchdog and he suggest mm_watchdog. Then I barbled on but with hindsight does mm_watchdog also work with standalone chromium? As if so all I have to do is work out why plymouth confuses me so much as to if it will work or not and maybe show on whatever chance that might maybe :) Thanks for a great explanation though. One more question is how do you mark as solved?
  • One-line switch to enable / disable modules

    14
    0 Votes
    14 Posts
    9k Views
    michael5rM
    @sean said in One-line switch to enable / disable modules: @rudibarani @michael5r Here is my version. No need to list all modules. const pre_disabled = { "UNLISTED": true, // default value for unlisted other modules. "alert":false, "clock": false, "MMM-Remote-Control":false, } var DISABLED = new Proxy(pre_disabled, { get (receiver, name) { return name in receiver ? receiver[name] : receiver["UNLISTED"] } }) Lovely :thumbs_up_light_skin_tone:
  • 0 Votes
    2 Posts
    1k Views
    R
    You say: just finished a Magic Mirror2 module that lets you display content…!! just let me know about it?? And where is it? Git hub?
  • Anyone install the TwitControl Module?

    Unsolved
    2
    0 Votes
    2 Posts
    990 Views
    bheplerB
    @seedhe If I remember correctly, the Twitter API changed and the module did not keep up.
  • Update Font Awesome to version 5?

    Unsolved
    9
    0 Votes
    9 Posts
    5k Views
    C
    i think @yawns deserves the credit…LOL
  • smart mirror

    2
    0 Votes
    2 Posts
    1k Views
    bheplerB
    @aj6823 - The Magic Mirror framework is a bit too complicated to display in a simple stand alone HTML file. You might be able to duplicate the look of the Magic Mirror with some relatively simple HTML coding. But you’ll lose most of the dynamic features. Can you expand a bit on what it is you’re trying to accomplish?
  • Habit Tracker on Magic Mirror

    Unsolved
    1
    0 Votes
    1 Posts
    877 Views
    I
    Loving this site and starting my build. I have a couple of different applications to use this mirror, how it started was the need for a home mirror. Another will be a simple alarm clock next to my bed with no mirror in the Pi-Top Ceed case with 14" screen. Another will be a desktop Pi-Top Ceed with no mirror again displaying things that I would use for work. Train schedules, weather, calendar (both weekly and monthly) and To Do’s. I also keep a monthly habit tracker on paper now and was wondering if anyone has made a sort of habit tracker. There is an app I have seen around called “Way of Life” which would look cool on the mirror etc. Thanks everyone for the help - wish I could code this, but right now I am just a copy and paste guy for my project.
  • MMM-voice ugly hdmi banner

    42
    0 Votes
    42 Posts
    22k Views
    S
    @dazza120 that is what u posted in the prior message /usr/local/etc/motion/
  • Weather Forecast Snow Amounts

    Unsolved
    1
    0 Votes
    1 Posts
    877 Views
    A
    Would it be possible to add snow amounts to The Default Weather Forecast app, just as it does for rain amount?
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    10 Views
  • Access control

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    rudibaraniR
    @retroflex Thanks for the idea. I think this is a possible option for many - but I already have the company VPN on my devices and unfortunately cannot add another VPN. Do you think it would be difficulty to implement the token-idea I described above? This would bring much more security to a lot of users without difficult changes…
  • Server <> Client communication

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    rudibaraniR
    @sdetweil Thanks for pointing me at MMM-RemoteControl. I will try this as a first unidirectional approach. In the long run, it would be great if we had two-way module / MM core capability that could communicate with node clientonly instances. I think the need for this will increase, as more and more MM-instances might be hosted within a Docker image.
  • 0 Votes
    5 Posts
    2k Views
    N
    how, can I turn on the relay after some time interval?
  • Serverless

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    W
    Okay thanks for the answers. I will probably run the serveronly-version on my vServer then.
  • secrets.js

    Unsolved
    10
    0 Votes
    10 Posts
    4k Views
    Y
    Hi! I understand this issue. I use a gitlab private repository. I clone it in “magicmirror_config” in /home/pi/ And then I created a symlink im /home/pi/MagicMirror/config/ for my versioned config.js And all my personalized files are in symlink where I need it. That’s really easy and like that I can test on local device (my Mac) before put it on the raspberry Pi. :-)
  • This topic is deleted!

    2
    0 Votes
    2 Posts
    2 Views
  • Hourly forecast for weather forecast module

    4
    0 Votes
    4 Posts
    3k Views
    R
    Search for MMM-forecast.io here in the forum.