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

    Posts

    Recent Best Controversial
    • RE: MMM-Hello-Mirror ERROR

      @renevandenbroek I understand. I think this module depends on a library no longer available at its listed url.

      posted in System
      S
      sdetweil
    • RE: MMM-Hello-Mirror ERROR

      @renevandenbroek quite old. And I think has a design bug.

      Open the developers window
      ctrl-shift-I
      Select the console tab
      Enter hello in the filter field

      See what messages are displayed

      posted in System
      S
      sdetweil
    • RE: page-indicator css line

      @malvinas can you show the module config and the css entries you used…

      posted in Troubleshooting
      S
      sdetweil
    • RE: Problem with rebooting PI

      @MilkShake

      I will only say, sd cards are fragile and only have a small lifespan

      They were not designed to be written to a lot

      Backup now if you have not…
      See my backup/restore scripts

      https://github.com/sdetweil/MagicMirror-backup-restore

      posted in General Discussion
      S
      sdetweil
    • RE: [MMM-Remote-Control] Cannot GET /remote.html

      @Ypsimm interesting. Git clone should set the permissions that way.

      Did you install the module some other way than git?

      posted in Troubleshooting
      S
      sdetweil
    • RE: Problem with rebooting PI

      @MilkShake if you use

      sudo crontab -e
      

      You edit the system wide list vs the user list

      posted in General Discussion
      S
      sdetweil
    • RE: Default Weather Module Stuck on loading.

      @fnmuffinman the links are in the MagicMirror documentation
      IMG_4783.png

      It does only MagicMirror

      posted in Troubleshooting
      S
      sdetweil
    • RE: Default Weather Module Stuck on loading.

      @fnmuffinman great news!! Thanks for the feedback

      As for what happened

      You upgraded nodejs at some point
      And didn’t catch the npm install error message

      So you had the new code (git pull) but not the runtime libs it needed

      I recommend using my upgrade script in the future

      posted in Troubleshooting
      S
      sdetweil
    • RE: Default Weather Module Stuck on loading.

      @fnmuffinman good, thx

      Do this

      sudo npm install -g n
      sudo n 22.21.1
      hash -r
      node -v
      

      Should show v 22.21.1
      If not stop and advise

      If ok
      Then do

      cd ~/MagicMirror 
      npm install
      

      Then start MagicMirror

      posted in Troubleshooting
      S
      sdetweil
    • RE: Calendar - colourise events today?

      @Babene1 I do not at the moment. But will examine

      posted in Troubleshooting
      S
      sdetweil
    • RE: Default Weather Module Stuck on loading.

      @fnmuffinman ah…

      Node 23 is bad , so we won’t install there

      So try either of these commands

      n —version
      nvm —version

      Do either exist?

      posted in Troubleshooting
      S
      sdetweil
    • RE: Default Weather Module Stuck on loading.

      @fnmuffinman ok, a little more debug

      cd ~/MagicMirror
      grep nunj package.json
      

      should return

      		"nunjucks": "^3.2.4",
      

      then

      cd node_modules
      ls nunjucks -laF
      

      should return (I am on mac at the moment, with MagicMirror just installed, so dates will be different

      drwxr-xr-x   10 sam  staff    320 Feb  3 08:20 ./
      drwxr-xr-x  685 sam  staff  21920 Feb  3 08:21 ../
      drwxr-xr-x    4 sam  staff    128 Feb  3 08:20 bin/
      drwxr-xr-x   10 sam  staff    320 Feb  3 08:20 browser/
      -rw-r--r--    1 sam  staff   2309 Feb  3 08:20 index.js
      -rw-r--r--    1 sam  staff   1311 Feb  3 08:20 LICENSE
      drwxr-xr-x    3 sam  staff     96 Feb  3 08:20 node_modules/
      -rw-r--r--    1 sam  staff   3138 Feb  3 08:20 package.json
      -rw-r--r--    1 sam  staff   2127 Feb  3 08:20 README.md
      drwxr-xr-x   23 sam  staff    736 Feb  3 08:20 src/
      

      then I want to redo the MagicMirror npm install

      cd ~/MagicMirror
      rm -rf node_modules
      npm install
      

      then restart MagicMirror however you do it…

      posted in Troubleshooting
      S
      sdetweil
    • RE: Switch Months - MMM-CalendarExt3 -

      @Getinthegames awesome!!! thanks for the feedback

      posted in Troubleshooting
      S
      sdetweil
    • RE: MagicMirror-backup-restore

      @rkorell I have pushed fixes for both scripts to handle this error in the previous versions…

      both backup and restore will handle the case where the restore-branch exists (as now)
      and cleanup after…

      thanks for the report and feedback

      posted in Troubleshooting
      S
      sdetweil
    • RE: Switch Months - MMM-CalendarExt3 -

      @Getinthegames did you do this part of the setup

      If you are not using a Fire Stick Remote: You may need to adjust the key assignments above to match your remote. See Remote Setup for how to run evtest and display the key names for your remote/device.
      

      I think you need this section of the keybindings config

      actions: [
        {
          key: "Home",
          state: "KEY_LONGPRESSED",
          instance: "SERVER",
          mode: "DEFAULT",
          notification: "REMOTE_ACTION",
          payload: { action: "MONITORTOGGLE" }
        },
        {
          key: "ArrowLeft",
          state: "KEY_LONGPRESSED",
          notification: "CAROUSEL_PREVIOUS"
        },
        {
          key: "ArrowRight",
          state: "KEY_LONGPRESSED",
          notification: "CAROUSEL_NEXT"
        },
        {
          key: "Return",
          state: "KEY_LONGPRESSED",
          changeMode: "DEFAULT"
        }
      ],
      

      I think KeyMap only changes the name

      posted in Troubleshooting
      S
      sdetweil
    • RE: MagicMirror-backup-restore

      @rkorell no sorry needed. We all respond when we can

      Got it. Both scripts are broken

      Backup for not checking and correcting
      Restore for not cleaning up

      posted in Troubleshooting
      S
      sdetweil
    • RE: Remove In 2 day, In 3 days….

      @vtek I think the doc says css to remove relative info

      IMG_4780.png

      posted in Utilities
      S
      sdetweil
    • RE: Switch Months - MMM-CalendarExt3 -

      @Getinthegames you could still use key binding to send the pages notifications

      posted in Troubleshooting
      S
      sdetweil
    • RE: Switch Months - MMM-CalendarExt3 -

      @Getinthegames I would use mmm-pages and put the two months on different pages. (Two instances of Ext3)
      And use the page next/back notifications to pages. You can disable the timed page rotation

      I have three instances w different months (monthIndex=0/1/2)

      posted in Troubleshooting
      S
      sdetweil
    • RE: Default Weather Module Stuck on loading.

      @fnmuffinman I did, sorry been traveling.

      Can you Open the developers window
      ctrl-shift-I
      Select the console tab
      Add weath to the filter field

      posted in Troubleshooting
      S
      sdetweil
    • 1
    • 2
    • 12
    • 13
    • 14
    • 15
    • 16
    • 1058
    • 1059
    • 14 / 1059