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

    Posts

    Recent Best Controversial
    • RE: MMM-SystemStats (cpu temp/load, fre ram ...)

      I also have this message, but everything works. It’s only a hint.
      Are there some other messages?

      posted in Utilities
      B
      BenRoe
    • RE: Split up Utilities?

      I like the idea. Split IOT and Homeautomation.
      What is with modules like Mail check? Any idea

      posted in Forum
      B
      BenRoe
    • RE: Blank Screen on Pi 1 after successful Install

      @Kisaua i have the mirror running on a RPi B with Fullscreen Midori. Check your Node version and Midori version.
      Here is a Midori autostart tutorial with kiosk mode. http://www.benjaminroesner.com/blog/autostart-midori-browser-vollbild-kiosk-mode-via-konsole-ohne-desktop/

      posted in Troubleshooting
      B
      BenRoe
    • MMM-FHEM shows values from FHEM devices ...

      [card:benroe/MMM-FHEM]
      This module can show any reading value from a FHEM device.

      Screenshot MMM-FHEM wide
      If the module is in the position top_ bar, or bottom_bar it looks like this …

      Screenshot MMM-FHEM compact
      and if its in a left, or right column it’s compact style.

      You can also add any icon in front and a text suffix.

      Known issue:

      • multiple MMM-FHEM modules in the config/on the mirror will overwrite each other
      posted in Utilities
      B
      BenRoe
    • RE: MagicMirror is voted number 1 in the MagPi Top 50!

      Great Job! :)
      alt text

      posted in Announcements
      B
      BenRoe
    • RE: multiple module instances overwrites itself values

      Ok other question.
      If i setup a module twice in the config, do they share the variables from the code?

      posted in Development
      B
      BenRoe
    • RE: 1.1k members and a short update regarding myself

      Wish you a good time in Berlin. Did you found a apartment in Berlin? It’s a horror to find a good one. :D

      posted in Forum
      B
      BenRoe
    • RE: diy-guys Mirror

      @diy-guy the link is not working. Is that a Ikea frame?

      posted in Show your Mirror
      B
      BenRoe
    • RE: FHEM Module

      @DirkS i am working on a module for FHEM. It works, but i have one bug. If i solved it, i will relase it.
      Here is a screenshot.

      alt text

      posted in Requests
      B
      BenRoe
    • RE: Cato's mirror

      Great read and thanks for sharing your misstakes, too. It’s usfull to learn from others experinces.

      posted in Show your Mirror
      B
      BenRoe
    • RE: Where are you from?

      Leipzig Germany

      posted in General Discussion
      B
      BenRoe
    • MMM-SystemStats (cpu temp/load, fre ram ...)

      [card:benroe/MMM-SystemStats]
      It’s testet with a Raspberry Pi.

      MMM-MMM-SystemStats

      ToDO:

      • icons
      • sd-card available space
      • better indication for the system load

      If you found an issue, please report it here.
      If you like the module, give it a star on Github.

      posted in Utilities
      B
      BenRoe
    • multiple module instances overwrites itself values

      Hello,
      i am working on a module for FHEM. The module can show data like temperature from FHEM devices. It is working, but if i add two instances of the module to the config.js it overwrites the dom values.

          {
            module: 'MMM-FHEM',
            position: 'bottom_bar',
            config: {
              host: '192.168.178.28',
              port: '8083',
              deviceNames: [
                            'LaCr.Thermo01',
                            'LaCr.Thermo02',
                            'LaCr.Thermo03',
                           ],
              deviceReadings: [
                                { name: 'temperature', icon: 'wi wi-thermometer', suffix: '°' },
                                { name: 'humidity', icon: 'wi wi-humidity', suffix: '%' },
                              ],
            },
          },
          {
            module: 'MMM-FHEM',
            position: 'top_right',
            header: 'top_right',
            config: {
              host: '192.168.178.28',
              port: '8083',
              deviceNames: [
                            'LaCr.Thermo03',
                            'LaCr.Thermo04',
                            'LaCr.Thermo05',
                           ],
              deviceReadings: [
                                { name: 'temperature', icon: 'wi wi-thermometer', suffix: '°' },
                                { name: 'humidity', icon: 'wi wi-humidity', suffix: '%' },
                              ],
            },
          },
      

      Right values should different from the bottom one.
      0_1474756392729_Bildschirmfoto 2016-09-25 um 00.32.15.png

      Any idea why? You can find the code here https://github.com/BenRoe/MMM-FHEM

      posted in Development
      B
      BenRoe
    • RE: Blank Screen on Pi 1 after successful Install

      Maybe i found the problem. I am working on a FHEM module for MM. I changed the config.js and had a wrong module name in it. After reload the screen was black.
      @chase please check your config.js for spelling or json format errors.

      posted in Troubleshooting
      B
      BenRoe
    • RE: Blank Screen on Pi 1 after successful Install

      Should the url contain the port? 192.168.0.7:8080?

      posted in Troubleshooting
      B
      BenRoe
    • RE: Blank Screen on Pi 1 after successful Install

      Try a newer node version.
      Here is a blog post (unfortunately  in german) how to install the latest version. Deinstall the node before you install the newer version.
      http://www.benjaminroesner.com/blog/node-js-raspberry-pi-installieren/#variante2

      posted in Troubleshooting
      B
      BenRoe
    • RE: Blank Screen on Pi 1 after successful Install

      Which node.js Version is installed? Maybe this is the problem.

      posted in Troubleshooting
      B
      BenRoe
    • RE: Blank Screen on Pi 1 after successful Install

      @bharathvenkat i use MM with node serveronly and a Midori Browser on my Raspberry PI B. Theoretically it should work on your RPi. Like Mr.Meeseeks (btw rick and morty is awesome) proposed, open the developer console in the browser and check if there is some code.

      @pagoa he is using node serveronly. With this command electron is not used.

      posted in Troubleshooting
      B
      BenRoe
    • RE: Debugging

      I could not use Log.log('foobar'); in the node_helper.js and if i use console.log('foobar'); the log is shown in the CLI. Is there a solution to show it in the Browser Console?

      posted in Development
      B
      BenRoe
    • 1 / 1