MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. sdetweil
    3. Best
    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,670
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: MMM-EventHorizon

      @swvalenti Wrong double quote characters. Type it from the keyboard, not cut/paste

      posted in Fun & Games
      S
      sdetweil
    • RE: Default Weather module still not displaying

      @Jarhead96097 please never do audit… causes more problems than it fixes

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-euro2024

      @0m4r the sample is missing the config:{} section

      {
        disabled: false,
        module: "MMM-euro2024",
        position: "bottom_center",
        defaults: {
          updateInterval: 60 * 1000, // one minute
        },
        token: [YOUR_TOKEN]
      }
      

      should be

      
      {
        disabled: false,
        module: "MMM-euro2024",
        position: "bottom_center",
        config:{
             updateInterval: 60 * 1000, // one minute
             token: [YOUR_TOKEN]
         }
      }
      

      your module passes this.config to the node_helper, but there is no config block, so only {} gets passed

      this.sendSocketNotification(this.name + 'CONFIG', this.config);
      
      posted in Sport
      S
      sdetweil
    • RE: Default Weather module still not displaying

      @mumblebaj and we have found npm install parms to turn off the warning coming in next release, and already in my scripts.

      posted in Troubleshooting
      S
      sdetweil
    • RE: MacMirror

      @trividar mmm-voice/hello Lucy use pocketsphinx for voice reco. It is supported on osx and Ubuntu.

      And those modules support ‘go to sleep’. Which can launch a command to turn off hdmi, or whatever.

      My MMM-SleepWake does motion detection via camera and can do the wakeup when they do sleep

      posted in Show your Mirror
      S
      sdetweil
    • RE: How to run via browser on Android 2.3

      @dude31222 our browser code, and many modules, require JavaScript level ES6.

      es6 was approved in 2015.

      see
      https://caniuse.com/ciu/comparison

      select just the js API checkbox

      posted in Troubleshooting
      S
      sdetweil
    • RE: More of a Smart Display than a Magic Mirror..

      @Camthalion cool… I will add this

      do NOT change our files… every config change can be done thus config.js and custom.css

      all your changes to main.css can be done in custom.css

      css is a stack , searched from the top down

      custom.css on top
      module provided  css 
      main.css
      

      first found wins.

      so you could put all you main.css changes in custom.css

      and some you could change other variables (border size etc) as we have added those things in the last couple releases… (so you don’t have to make such drastic changes)

      but very cool

      thanks for the repo

      posted in Show your Mirror
      S
      sdetweil
    • RE: Default weather module stuck loading after latest MM update

      @Peter ok, two things…

      you ALSO have to add

      weatherEndpoint: "/onecall",
      

      to each config, as this is required for the 3.0 api

      this makes it work with my 3.0 apikey

      Screenshot at 2024-10-08 06-09-51.png

      second,
      in the forum, when you post config, or log info, please use the code block wrapper… else the quotes get changed to workd processing type which JS doesn’t understand

      to do
      paste the text into the editor, blank line above and below
      select the text just pasted
      hit the </> button above the editor

      posted in Troubleshooting
      S
      sdetweil
    • RE: Mirror for a Charity Auction

      @Tippon yes, you register a URL that targets the machine thru the tunnel
      and then u can target specific systems and ports

      one of those is the guacamole app, in a container

      then guacamole will let you create sub apps and different access points to the systems

      so my ha.xxx.yyy talks directly to home assistant
      but my rm.xxx.yyy talks to guacamole, which has ‘apps’ defined
      Screenshot at 2024-01-17 17-51-49.png

      after I logon to guac, I get a list of my ‘apps’… these present in a web page on the system I am on , so ssh in a web page… now… some things, don’t work the same, nano doesn’t display. but vnc works…

      posted in Show your Mirror
      S
      sdetweil
    • RE: Cannot find module 'undici' - 'npm install' doesn't work

      @Klinge yes it says we need node 20.18.1 or above
      https://forum.magicmirror.builders/topic/19271/version-2-30-0-requires-updated-nodejs-warning-for-pi0w-installations

      anyhow quickest way
      install tool to allow changing node versions

      sudo npm install n -g
      sudo n 20.18.1
      

      now do the MagicMirror install

      cd ~/MagicMirror
      npm run install-mm 
      
      posted in Troubleshooting
      S
      sdetweil
    • 1 / 1