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

    BenRoe

    @BenRoe

    Module Developer
    19
    Reputation
    2.2k
    Profile views
    40
    Posts
    1
    Followers
    0
    Following
    Joined
    Last Online
    Website maker-tutorials.com
    Location Germany

    BenRoe Unfollow Follow
    Module Developer

    Best posts made by 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
    • 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
    • Raspberry Pi 3/Zero eInk (epaper) MagicMirror

      [card:benroe/rpi-magicmirror-eink]

      Hi,
      i created a node.js script to display a MagicMirror site on a 7.5 eInk Display.
      You can find the script on github with a minimal install instruction.

      A detailed german tutorial can you find on my blog.
      https://maker-tutorials.com/7-5-eink-epaper-bilderrahmen-magicmirror-display-raspberry-pi-zero-w/

      If you are interested to help, i have some open task.

      • translate detailed german tutorial to english
      • for every MMM a custom css is needed
      • support more display sizes (4.2 / 5.83 / 9.7)

      alt text

      posted in Tutorials
      B
      BenRoe
    • RE: MagicMirror is voted number 1 in the MagPi Top 50!

      Great Job! :)
      alt text

      posted in Announcements
      B
      BenRoe
    • RE: Where are you from?

      Leipzig Germany

      posted in General Discussion
      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: MMM-FHEM shows values from FHEM devices ...

      @DirkS The Module use the FHEM name of the device or you can set a alias for the device in FHEM like this in the fhem.cfg file attr LaCr.Thermo01 alias Bad

      One module config is for a group of devices with the same value type. One group for temperature and humidity and another for lights …

      modules: [
        {
          module: 'MMM-FHEM',
          position: 'bottom_bar',
          config: {
            deviceNames: [
                          'FhemDeviceName1',
                          'FhemDeviceName2',
                          'FhemDeviceName3',
                         ],
            deviceReadings: [
                              { name: 'temperature', icon: 'wi wi-thermometer', suffix: '°' },
                              { name: 'humidity', icon: 'wi wi-humidity', suffix: '%' },
                            ],
          },
        },
        {
          module: 'MMM-FHEM',
          position: 'bottom_bar',
          config: {
            deviceNames: [
                          'FhemDeviceLight1',
                          'FhemDeviceLight2',
                         ],
            deviceReadings: [
                              { name: 'state', icon: 'fa fa-lightbulb-o', suffix: '' },
                            ],
          },
        },
      ]
      

      Ich kann das vielleicht auch umschreiben, sodas man für jedes FhemDevice die Readings/Werte angeben kann.

      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: 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: MMM-SystemStats (cpu temp/load, fre ram ...)

      @Mykle1 it is not “danger”. Next days a update is coming.

      posted in Utilities
      B
      BenRoe

    Latest posts made by BenRoe

    • Raspberry Pi 3/Zero eInk (epaper) MagicMirror

      [card:benroe/rpi-magicmirror-eink]

      Hi,
      i created a node.js script to display a MagicMirror site on a 7.5 eInk Display.
      You can find the script on github with a minimal install instruction.

      A detailed german tutorial can you find on my blog.
      https://maker-tutorials.com/7-5-eink-epaper-bilderrahmen-magicmirror-display-raspberry-pi-zero-w/

      If you are interested to help, i have some open task.

      • translate detailed german tutorial to english
      • for every MMM a custom css is needed
      • support more display sizes (4.2 / 5.83 / 9.7)

      alt text

      posted in Tutorials
      B
      BenRoe
    • RE: MMM-FHEM shows values from FHEM devices ...

      Too bad, someone mention this on the github ticket. https://github.com/BenRoe/MMM-FHEM/issues/2
      I don’t have the time to examine this problem. If someone can implement this, please let me know.

      posted in Utilities
      B
      BenRoe
    • RE: MMM-FHEM shows values from FHEM devices ...

      @Da-ne-ezy try this.

      host: 'username:password@ip-of-your-fhem-server'
      

      Please let me know if it works.

      posted in Utilities
      B
      BenRoe
    • RE: MMM-FHEM shows values from FHEM devices ...

      @Da-ne-ezy hi currently i have no time to research how to implement that from nodejs side.
      If someone has an idea, please do a pull request on github.

      posted in Utilities
      B
      BenRoe
    • RE: MMM-FHEM shows values from FHEM devices ...

      @dominic remove the squared brackets from the host row.

      posted in Utilities
      B
      BenRoe
    • RE: MMM-FHEM shows values from FHEM devices ...

      @Woody no it’s not possible.

      posted in Utilities
      B
      BenRoe
    • RE: MMM-FHEM shows values from FHEM devices ...

      @Fistandantilus you can edit the fhem.css on your mm and remove it. Seems the simplest way.

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

      @bobbob601 thx for the answer. Do you have a example how to write a module with multi-instace support?

      posted in Development
      B
      BenRoe
    • RE: MMM-SystemStats (cpu temp/load, fre ram ...)

      @toldenburger @DocVooDoo the v1.2 is out

      • add pull request #2 (automatic translate loding label)
      • new config item (align the labels)
      posted in Utilities
      B
      BenRoe
    • RE: MMM-SystemStats (cpu temp/load, fre ram ...)

      The update v1.1 is out. Thx to Bruce17 for the pull request.
      Update instructions

      posted in Utilities
      B
      BenRoe