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

    Topics

    • S

      PI 0 won't power on... grrrr..

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      5
      0 Votes
      5 Posts
      816 Views
      Mykle1M
      @sdetweil Glad it was that simple a fix and not the Pi itself. :thumbsup:
    • S

      proposed New processing and config for pi0/armv6 and serverOnly mode

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion armv6 serveronly
      4
      2 Votes
      4 Posts
      1k Views
      S
      I added a check for textmode os config (no xwindows)
    • S

      V 2.9.0 update

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      1
      1 Votes
      1 Posts
      500 Views
      S
      try the updater script… lets get it tested https://forum.magicmirror.builders/topic/10859/new-update-upgrade-script-ready-for-testing
    • S

      why does my MM on pi crash every night?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      15
      0 Votes
      15 Posts
      5k Views
      S
      watchdog has a problem… removing… have not crashed since increase swap space… will close for now as I work on the watchdog socket problem
    • S

      new script for screensaver disable

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      13
      1 Votes
      13 Posts
      5k Views
      S
      @mieserwicht yeh, had to escape the - on -dpms… try again adding again, yes, it got an empty result due to the error
    • S

      new script to install/fix PM2 config for start on boot

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      6
      2 Votes
      6 Posts
      3k Views
      S
      I have submitted this script as part of pull request 1789
    • S

      new update/upgrade script, ready for testing

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      328
      6 Votes
      328 Posts
      633k Views
      S
      @Socrates note that without adding a parameter The script does nothing. It only tests the ability to update the base MagicMirror Update is two pass process Test. Make no changes Do. Apply the changes (with the parameter apply) Many users have modified MagicMirror base code not knowing about the config and css file design. These changes block the ability to update normally Over time they forget that they changed the files and what they actually changed. The force way to install is to wipe all changes, but now the result doesn’t work like it used to. Adding a lot of frustration.
    • S

      Connecting Apple retina displays to SBC (Raspberry pi)

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      1
      2 Votes
      1 Posts
      734 Views
      S
      nice article for connecting Apple retina displays to SBC like Raspberry pi https://blog.hackster.io/connect-apples-retina-displays-to-a-single-board-computer-using-an-edp-adapter-25e0881f961
    • S

      new script for mirror release upgrades

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      6
      3 Votes
      6 Posts
      2k Views
      S
      see my post containing link to the new script https://forum.magicmirror.builders/topic/10859/new-upgrade-script-ready-for-testing
    • S

      MM remote access works, but no display on host machine

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      3
      0 Votes
      3 Posts
      921 Views
      S
      @sdetweil Ok, copied the node_modules/electron folder tree from the good working install to replace the bad… and now the bad behaves…
    • S

      updated installer script available for testing

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      211
      3 Votes
      211 Posts
      274k Views
      StoffbeuteluweS
      @sdetweil oh thx for the fast answer ….
    • S

      anyone figured out how to view the ring video feed, put on MM on demand??

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      1
      0 Votes
      1 Posts
      469 Views
      S
      there is a new alexa skill to view the live feed from a ring (doorbell, floodlight) camera… on an Echo Show… I’d like to put that on my MM…
    • S

      module updateDom() call limitations

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      5
      0 Votes
      5 Posts
      2k Views
      S
      SO, the workaround… NEVER call updateDom() without a minimum count of 2 (as the code divides by 2 inside) it does a hide/update/show) (hide/show each get 1/2 the time specified, ie 2/2 =1 each.
    • S

      default calendar in relative mode, shows 1 less day than expected

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      2
      0 Votes
      2 Posts
      816 Views
      S
      SO… the problem is the calculation uses the local hour to determine from now… but users see days… so the fix is to truncate NOW to the start of the day…, then the comparison is start of day to start of day… instead of this // uses hours/mins/seconds of now.. timeWrapper.innerHTML = this.capFirst(moment(event.startDate, “x”).fromNow()); do this // uses only date, time is 00:00:00, fullday events also start at 00:00:00 timeWrapper.innerHTML = this.capFirst(moment(event.startDate, "x").from(moment().format("YYYYMMDD")));
    • S

      access to config language setting

      Watching Ignoring Scheduled Pinned Locked Moved Development
      24
      0 Votes
      24 Posts
      15k Views
      J
      @sdetweil I am aware of that, but somehow I just ignored it as I was “on auto-pilot”. :grinning_face_with_sweat:
    • S

      has anyone used any of the charting tools, like chartjs?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      18
      0 Votes
      18 Posts
      7k Views
      S
      @lavolp3 i do not… there are tons of options, which I guess you would expect.
    • S

      Help new users with config syntax errors, proposal

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      1
      0 Votes
      1 Posts
      445 Views
      S
      we see a LOT of new users having trouble with unintended syntax errors in config.js. they don’t know, and MM is running happily without their changes… so, I want to propose adding the call to tests/configs/check_config.js as part of the error handling… this was easy, except… MM keeps running with the default config… which it shouldn’t… I’ve tried all kind of things… process.exit(0); is quick death… except the output of the tests/configs/check_config.js isn’t flushed, so the messages don’t show up… they took out process.stdout.flush() a long time ago… none of the workarounds appear to work… anyone got any ideas? thanks…
    • S

      trouble Accessing JSON structure using variables, help

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      4
      0 Votes
      4 Posts
      1k Views
      S
      @mykle1 there is no better thought motivator than posting on a live forum…!!
    • S

      unable to reply to topic here

      Watching Ignoring Scheduled Pinned Locked Moved Custom CSS
      5
      0 Votes
      5 Posts
      1k Views
      S
      My mobile does not have block popups turned on
    • S

      how to set module div for fullscreen

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      6
      1 Votes
      6 Posts
      3k Views
      S
      Using the fullscreens.above class for the div makes this a lot easier. No modification of the std css is required
    • 1
    • 2
    • 3
    • 4
    • 5
    • 4 / 5