MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. BKeyport
    3. Topics
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 0
    • Followers 2
    • Topics 63
    • Posts 1,288
    • Groups 1

    Topics

    • BKeyportB

      No quarterly update?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      4k Views
      BKeyportB
      @sdetweil Doh. I’m thinking IRS quarters. Jan, Apr, Jun, Sep. 🤣🤣
    • BKeyportB

      Css error in Main.css?

      Watching Ignoring Scheduled Pinned Locked Moved Custom CSS
      9
      0 Votes
      9 Posts
      430 Views
      S
      @BKeyport i went back and looked at my top_center example, a 3x2 grid .region.top.center .container { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2,1fr); gap:10px; } and added modules and get them in rows… as expected but top center is not full screen width with middle_center, grid and pages, things get nutty… the grid positions are consumed even when the module in the grid is not shown
    • BKeyportB

      Calendar does not run on secondary screen

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      14
      0 Votes
      14 Posts
      794 Views
      S
      This fix is in the next release , Oct 1
    • BKeyportB

      MMM-OpenWeatherForecast... CSS

      Watching Ignoring Scheduled Pinned Locked Moved Custom CSS
      8
      1
      0 Votes
      8 Posts
      1k Views
      S
      @BKeyport not me. I just tried what Google search results suggested Key item the style was on the span, not the img
    • BKeyportB

      UpdateNotification - Enhancement?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Feature Requests
      2
      1 Votes
      2 Posts
      513 Views
      S
      @BKeyport please submit that as an enhacement request. currentky the module is driven off modules in config
    • BKeyportB

      Logging issues

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      22
      0 Votes
      22 Posts
      2k Views
      BKeyportB
      @sdetweil It now is working as expected. Thanks for the help.
    • BKeyportB

      Bridging the gap... LIRC -> Magic Mirror / Pages control using MMM-Remote-Control

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      9
      0 Votes
      9 Posts
      658 Views
      S
      @BKeyport dang computers are SO picky yes ViewNotification
    • BKeyportB

      CalendarExt3 - Event transformer wildcard

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      15
      0 Votes
      15 Posts
      2k Views
      S
      @BKeyport ah, but description is an optional field
    • BKeyportB

      Calendar Logic Changes

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      9
      0 Votes
      9 Posts
      2k Views
      S
      @BKeyport awesome
    • BKeyportB

      MMM-Pages - Fade/Animation

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      7
      0 Votes
      7 Posts
      817 Views
      BKeyportB
      @sdetweil I’ve given up as other methods smoothed out the transitions anyway (The website that took too long to reload).
    • BKeyportB

      MMM-EmbedURL with MMM-Pages - Website reload....

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      11
      0 Votes
      11 Posts
      2k Views
      wishmaster270W
      @BKeyport Sorry, to one I’m the documentation is the correct one. Great to hear it is working.
    • BKeyportB

      Forum Bug..

      Watching Ignoring Scheduled Pinned Locked Moved Forum
      2
      1
      0 Votes
      2 Posts
      2k Views
      karsten13K
      @BKeyport this is a “feature” of nodebb since release v3.9.1, nothing we can do.
    • BKeyportB

      Not updating at midnight...

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      24
      0 Votes
      24 Posts
      2k Views
      S
      @BKeyport said in Not updating at midnight...: start: function () { function scheduleMidnightUpdate() { const now = new Date(); const nextMidnight = new Date(now); // Set the time to midnight nextMidnight.setHours(24, 0, 0, 0); // Calculate the time remaining until the next midnight const timeUntilMidnight = nextMidnight - now; // Schedule the updateDom method to be called at midnight setTimeout(() => { this.updateDom(); // Reschedule the update for the next midnight scheduleMidnightUpdate.call(this); }, timeUntilMidnight); } }, I would do it like this , much more straight forward function scheduleMidnightUpdate() { const now = new Date(); const nextMidnight = new Date(now); // Set the time to midnight nextMidnight.setHours(24, 0, 0, 0); // Calculate the time remaining until the next midnight const timeUntilMidnight = nextMidnight - now; // Schedule the updateDom method to be called at midnight setTimeout(() => { // trigger first update on next midnight change this.updateDom(); // start Recurring midnight change setInterval(()=>{ this.updateDom() }, 24*60*60*1000 ) // 24 hours * 60 minutes * 60 seconds * 1000 milliseconds (1 day elapsed in ms) setInterval delay }, timeUntilMidnight); // setTimeout delay } }, then the system triggers every midnight… not your code
    • BKeyportB

      Switchbot API access - MMM-CommandtoNotification

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
      6
      0 Votes
      6 Posts
      448 Views
      BKeyportB
      @sdetweil Actually, I went around it - found one of my old temp units and wired it up and did a bad thing™ according to the python docs now. Same effect, across the room.
    • BKeyportB

      Help restyling MMM-ValuesByNotification

      Watching Ignoring Scheduled Pinned Locked Moved Custom CSS
      18
      0 Votes
      18 Posts
      2k Views
      S
      @BKeyport awesome
    • BKeyportB

      Major problems loading new module page...

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      8
      0 Votes
      8 Posts
      697 Views
      BKeyportB
      @KristjanESPERANTO Of course, now that I’ve reported it, it’s stopped doing it entirely. I’ll chalk it to an issue on my end. Things are a little crazy over here right now.
    • BKeyportB

      Execute bash command/Turn off GPIO (LED) from mirror

      Watching Ignoring Scheduled Pinned Locked Moved Solved Requests
      11
      0 Votes
      11 Posts
      2k Views
      R
      @BKeyport another way I also do it is I use GoogleAssistant and then use what they call a recipe these recipes you can make yourself on my recipe I have turned the lights on so as long as I have my microphone on and link to the mirror I can turn the lights on and off https://wiki.bugsounet.fr/MMM-GoogleAssistant
    • BKeyportB

      Upgrade errors?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      35
      0 Votes
      35 Posts
      10k Views
      J
      @sdetweil - Thanks for the help here and offline. My problem is solved, and for the sake of others following is the resolution. Problem: MagicMirror install script outputs node.js errors on new RaspbianOS install running under VirtualBox. Diagnosis [by sdetweil]: “so, the problem is that the intel raspian is a hybrid, x86_64 kernel with a i386 user runtime. and they stopped making a nodejs for i386 after node 12” Solution: Rebuilt the virtual machine using Ubuntu instead of RaspbianOS. [I’m sure any Debian or other Linux distribution would work just fine…] Thanks again - I can now use this as a dev machine and spare myself the risks associated with fiddling with the production machine!
    • BKeyportB

      MMM-ValuesByNotification, CSS Advice...

      Watching Ignoring Scheduled Pinned Locked Moved Custom CSS
      8
      2
      0 Votes
      8 Posts
      742 Views
      BKeyportB
      @wishmaster270 Great start, now to adjust to fit… 🤣 Edit: here I am adjusting it and trying to figure out why it wouldn’t move up to the bar, then I realized, you had it in Top Center. 😞😞😞😞😖😖😖😖
    • BKeyportB

      MMM-CX3A - Transform not working?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      11
      0 Votes
      11 Posts
      5k Views
      M
      @BKeyport https://raspberrypi.stackexchange.com/questions/104181/colored-emojis-in-chromium
    • 1 / 1