MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. strawberry 3.141
    3. Posts
    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
    • MMM-ip

      A module to show MagicMirror’s IPv4 Network Address

      [card:fewieden/MMM-ip]

      0_1469530098222_MMM-ip.jpg

      @PointPubMedia @amanzimdwini

      posted in System
      strawberry 3.141S
      strawberry 3.141
    • RE: Local IP address

      i will have a look on this later today ;)

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: Local IP address

      you can add something like .ip-font { font-size: 8px; } in custom.css and use this class for your displaying dom or create an own css file for your module because it’s only module related :)

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: Local IP address

      bottom_right https://forum.magicmirror.builders/topic/286/regions

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: Local IP address

      one way would be a module with a node_helper something like

      const NodeHelper = require('node_helper');
      const exec = require('child_process').exec;
      
      module.exports = NodeHelper.create({
        socketNotificationReceived: function(notification, payload) {
          if (notification === 'GET_IP') {
          exec('host raspberrypi', (error, stdout, stderr) => {
           if (error) {
             console.error(`exec error: ${error}`);
             return;
          }
        this.sendSocketNotification('IP', stdout);
      });
      }
        }
      });
      

      stdout will be something like “raspberrypi has address 192.168.1.20”

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: Old Modules from MM1 transfer to MM2

      it’s a physical button because you can define which pin it’s connected to on gpio in your module config :)

      this one is just a virtual button https://github.com/masters1222/mm-hide-all

      it is definitely possible to adopt those modules but it’s probably less effort to rewrite them from scratch

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Old Modules from MM1 transfer to MM2

      there is already a button module for mm2
      https://forum.magicmirror.builders/topic/95/button

      for voice control there are several people in this forum working on
      https://forum.magicmirror.builders/topic/402/to-do-modules
      https://forum.magicmirror.builders/topic/54/voice-motion-control/
      https://forum.magicmirror.builders/topic/222/voice-control

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Old Modules from MM1 transfer to MM2

      can you provide links to those modules?

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Black screen

      it’s a module so it should go in the modules directory MagicMirror/modules

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Module WunderGround problem

      well i looked in the repository and the author doesn’t say that you have to run the command npm install, so i don’t know why you are trying this?!

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • 1
    • 2
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 167 / 170