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

    Posts

    Recent Best Controversial
    • RE: MMM-Nest

      @Mitch1138 did you try .MMM-Nest table.xsmall.table { font-size: 20px; line-height: 25px; } ?

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Integrating an npm module that uses import

      @lavolp3 which version of nodejs are you running? import is a feature of es6 modules. You can try to enable it like this https://stackoverflow.com/a/45854500

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Modules size

      To close up this topic the solution he needed was

      .MMM-swisstransport {
          width: 400px;
      }
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-AlexaPi

      @johnnyboy i have no idea how this file looks, but if it is like

      token = ...
      #token = ...
      

      you should remove it

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-AlarmClock

      v1.1.0 Changelog

      • Volume fade in (see config options fade, fadeTimer and fadeStep). (thanks to @mjtice)
      • French translations (thanks to Plosxh)
      • Indonesian translations (thanks to @slametps)

      [card:fewieden/MMM-AlarmClock]

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Custom module to run python script

      @Sputnik the facerecognition moduel of @paviro makes also heavy use of python scripts, take a look here https://github.com/paviro/MMM-Facial-Recognition/blob/master/node_helper.js

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: iframe full screen

      @andrewchumchal

      {
          module: "helloworld",
          position: "fullscreen_below",  
          config: {
              text: "<iframe src='https://magicmirror.builders' style='border: 0; width: 100%; height: 100vh;'></iframe>"
          }
      },
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Blank Black Screen - noob

      @dslucki you dont have the permission to access, you probably did sudo npm install before and so your normal pi user has restricted access to it.

      try npm install --unsafe-perm

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-TTS

      @davericher if you like you can create a pr to let the user decide via config if he wants to use festival or speech synthesis :)

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Dynamically Moving Modules

      @reporter500 this isn’t a supported feature

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Modules not showing up on KWEB or Midori

      @nixidee yes that’s what I was talking about.

      The following lines should get you going, but the ecmascript is finalized and standard since june last year, you should probably think about switching the browser if their updates are that far behind

      MMM-soccer

      var self = this;
      setInterval(function(){
                  self.getData();
      }, this.config.api_key ? 300000 : 1800000);
      

      MMM-Fuel

      var self = this;
      return setInterval(function(){
                  self.sortByPrice = !self.sortByPrice;
                  self.updateDom(300);
      }, this.config.rotateInterval);
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Raspberri Pi Zero W moment is not defined.

      @Penson122 try to do npm install in /home/pi/MagicMirror/vendor

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Motion Detector

      @mongo116 it looks like https://github.com/alexyak/motiondetector/blob/master/diff-cam-engine.js#L37 it creates 10 images per second and compares it to the previous which is probably the intensive part

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Voice/motion control

      @Mitchfarino you can create every command you want by inserting it in the config and create a trained model for it

      posted in Requests
      strawberry 3.141S
      strawberry 3.141
    • RE: How to implement specific module?

      @Jeff the instructions of @bhepler are based on magicmirror2 modules, the module you came up with is based on mm1 and is incompatible with mm2 so mayber there were also different instructions for them.

      you can but you don’t have to run npm update if the readme doesn’t explicitly points it out, this command will only check for newer versions of the dependencies and update those.

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Special Calendar entries in differen colours?

      @xeroxu you have to create css rules to change color without modifying the modules code, so that’s what I told above.

      But if you can split the calendar in one for each person and still use all of the three calendars you can colorize everyone independently.

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-AlarmClock

      @axellejamous you cannot do that via the config. I suggest you to create a module which is handling your buttons and sending a SET_ALARM notification. Then you need to enhance the alarm module by listening to that notification and set the alarm accordingly.

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Voice/motion control

      @Mitchfarino you can also register with github account which is a control version system used for coding, but i’m not using snowboy.kitt.ai. i have my own voice recognition

      posted in Requests
      strawberry 3.141S
      strawberry 3.141
    • RE: Facial Recognition - customize your mirror for every user!

      @Aly sounds like you didn’t install the dependencies with npm install in the MMM-Facial-Recognition directory

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Compliments are not shown on Mirror

      @dboa The compliments module makes use of an arrow function which is not supported within midori browser. So this might be the reason it doesn’t show up.

      https://forum.magicmirror.builders/topic/2031/compliments-not-displaying

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • 1 / 1