A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • MP3 Player

    58
    0 Votes
    58 Posts
    14k Views
    S
    @bachoo786 I’m pretty sure the module used a node_helper now if you make it a url, then you can fetch it thru the browser… but the server side is actually reading the file but you could make it a file url file:///server/path to file in MagicMirror the server home folder is the MagicMirror folder
  • NOAA Tide Chart for Today, Tomorrow, and Next Day

    7
    0 Votes
    7 Posts
    953 Views
    S
    @jyossarian there are hundreds of modules that can be used. but none of it is simple.
  • Ability to display certain modules at certain times of the year?

    3
    0 Votes
    3 Posts
    745 Views
    D
    Thanks! Looks promising.
  • Double screen for Rasperry Pi 5

    2
    1 Votes
    2 Posts
    405 Views
    S
    @hogedir you have to run two instances. you can do that with one installation you can drag the screen across both but would have to adjust the css for such a width. see this part of the doc https://docs.magicmirror.builders/configuration/introduction.html#advanced-configuration-and-frequently-asked-how-to-configure-examples
  • Need help with modules not displaying

    4
    0 Votes
    4 Posts
    325 Views
    M
    @Illimar said in Need help with modules not displaying: getDaysLeft() and dateFormat() are defined as member methods of the module, but you are using them as general functions. var days = getDaysLeft(i); It should be; var days = this.getDaysLeft(i); Or, even better is; to define getDaysLeft as a general function inside of getDom(), because only there the function is used once and nowhere else. It doesn’t need to be defined as a member of the module. getDom: function() { const getDaysLeft = (i, config) => { const date = Date.now(); ... } let wrapper = document.createElement('div'); wrapper.style.color = this.config.textColor; for (let i in this.config.dates) { let days = getDaysLeft(i, this.config); ...
  • Emergency service pharmacies in Germany

    4
    0 Votes
    4 Posts
    670 Views
    KristjanESPERANTOK
    @mumblebaj Many thanks for the tips! :smiley: I have meanwhile written to the operators of the website to see if they can offer an API. If not, I will probably follow your suggested approach.
  • Google Assistant Recipe to turn on the lights

    5
    0 Votes
    5 Posts
    2k Views
    M
    @Alexjons I’m not experienced with MMM-TuyaSL, but that module looks like READ-AND-SHOW-ONLY type. I couldn’t find any code for sending some commands or instructions outside. It means you cannot control your home devices with that module. If you get some success with GA, it might not be related to MMM-TuyaSL, but the reason would be your HA devices are connected to GA.
  • Trouble with non-broken "broken" images

    12
    0 Votes
    12 Posts
    3k Views
    J
    @sdetweil that was my issue, I had assumed :8080/ what my main directory… fixed it. Thanks a bunch!
  • Best practice 'package-lock.json' for modules

    18
    0 Votes
    18 Posts
    8k Views
    S
    @karsten13 package-lock is SUPPOSED to insure installing EXACTLY those versions every time
  • Encapsule chart.js plugins?

    10
    2
    0 Votes
    10 Posts
    2k Views
    S
    @Ashaman cool. understand that this problem happens whenever multiple modules use the same script library. I discovered it with QR code. my module and WiFipassword collided over different versions. wifipassword uses an older version and hasn’t been updated.i wanted to use a feature in a newer version so much fun…
  • Changing icons of the modules Current Weather and Weather Forecast

    Moved
    301
    0 Votes
    301 Posts
    2m Views
    M
    thanks to @KristjanESPERANTO for his help
  • How difficult would it be to change the data an existing module receives?

    13
    0 Votes
    13 Posts
    3k Views
    TipponT
    @sdetweil Thank you :)
  • Config for a simple clean montly calendar

    Moved
    25
    0 Votes
    25 Posts
    25k Views
    H
    is there any suggestion fpr CalendarExt3? https://github.com/MMRIZE/MMM-CalendarExt3
  • Weather.gov API

    1
    0 Votes
    1 Posts
    316 Views
    ankonaskiff17A
    This is more of an announcement/awareness thing than a question but if anyone is using the weather.gov api to show various weather items, and have maybe noticed they aren’t working, due to a lack of funding, some component that had an End of Life several years past, finally went belly up and once the NWS gets some 2024 funding from our elected officials they will replace the dead hardware and get everything back up and running. All my weather stuff on my MM is down and some NWS people have suggested sending emails if you are so inclined. They aren’t happy taking the heat for issues not in their control.
  • 0 Votes
    14 Posts
    6k Views
    S
    @alexmann great news… thanks for the feedback.
  • Laggy pi

    6
    0 Votes
    6 Posts
    1k Views
    S
    @1a2a3a I don’t use EXT3, but have used Google photos without lag on my pi4s
  • Stuck at my Mirror currently....

    9
    0 Votes
    9 Posts
    1k Views
    M
    @1a2a3a I have no device to test at this moment. So I cannot confirm you. And I have no idea about MMM-ModuleScheduler.
  • Possible cross-origin issue?

    7
    0 Votes
    7 Posts
    1k Views
    S
    @toddk you should open an issue.
  • MM2 can get POST API?

    3
    0 Votes
    3 Posts
    606 Views
    M
    @hikano765 use this.expressApp in node_helper.js Of course, you can use your own express or fastify whatever by importing that node module.
  • Config option with array of multiple values?

    25
    0 Votes
    25 Posts
    7k Views
    UncleRogerU
    @MZ-BER FYI, I’ve published and posted in the modules/showcase forum. https://forum.magicmirror.builders/topic/18139/mmm-mailmessage-send-messages-to-your-magicmirror-via-e-mail?_=1698853756973