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: Adding Modules

      @johnnyboy most of the modules are listed here https://github.com/MichMich/MagicMirror/wiki#3rd-party-modules

      Also most of the developers have install instructions in their readme file

      This module is what you are looking for https://github.com/RedNax67/MMM-WunderGround

      1. Open the terminal
      2. Go to the modules directory cd ~/MagicMirror/modules
      3. Clone the module git clone https://github.com/RedNax67/MMM-WunderGround.git

      (The following steps are not documented)
      4. Go to the module directory cd MMM-Wunderground
      5.As the developer did not provide a package.json file you have to manually install the dependencies, which are in this case request and moment, npm install request moment. If there is a package.json file you can just do npm install --productive which will install all dependencies defined by the developer or do npm install which will also download dependencies which are only needed for developing.

      (Back to the documented part)
      6. Add the module to the config

      {
          module: 'MMM-WunderGround',
          position: 'top_right',
          config: {
              apikey: 'xxxxxxxxxxxxx', // fill in your api_key that you applied for on wunderground
              pws: 'pws:IGELDERL219', //add your location for the weather service
              hourly: '1',
              fctext: '1',
              fcdaycount: "5",
              fcdaystart: "0",
              hourlyinterval: "3",
              hourlycount: "2",
              alerttime: 10000,
              alerttruncatestring: "english:",
          roundTmpDecs: 1,
          UseCardinals: 0,
          layout: "horizontal",
          sysstat: 0
          }
      }
      

      Don’t add the semicolon as it is in the readme this will cause issues. Then restart your mirror

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Mobile app (bachelor thesis)

      @Jopyth I will definetly publish the results of the general section. I think there is public interest for those.

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Moving module closer together?

      @Anthony_Haddad I guess you have chosen position bottom_left, try using top_left

      the bottom region is below the lower third region as you can see here https://forum.magicmirror.builders/topic/286/regions

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-SystemStats (cpu temp/load, fre ram ...)

      @toldenburger put that in custom.css

      .MMM-SystemStats table td {
        text-align: left !important;
      }
      
      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • MMM-WienerLinien

      alt text

      alt text

      [card:fewieden/MMM-WienerLinien]

      posted in Transport wien vienna public transport öpnv wienerlinien
      strawberry 3.141S
      strawberry 3.141
    • RE: Newsfeed "ignoreOldItems" does not work

      @StrikeBack83 I just checked your config and it seems to work fine, as the oldest news I got was 12.5 hours old.

      Though there are some small issues with your config:

        ...
        position: "bottom_bar",
        showSourceTitle: true,
        showPublishDate: true,
        config: {
          feeds: [
            ...
      

      showSourceTitle and showPublishDate are config options and have to be moved into the config section like

      ...
        position: "bottom_bar",
        config: {
          showSourceTitle: true,
          showPublishDate: true,
          feeds: [
            ...
      

      But why did they work then? Because their default value is set to true so you don’t have to specify it at all like

      ...
        position: "bottom_bar",
        config: {
          feeds: [
            ...
      

      Another issue is ignoreOldItems. A boolean (true and false) have to be defined without quotes, otherwise it will be always true. "true" => true and "false" => true

        ],
        ignoreOldItems: true,
        ignoreOlderThan: 50400000,
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Send Notification from one module to another module

      @edubey
      modula

      this.sendNotification("NEW_STUFF", {foo: "bar"});
      

      modulb

      notificationReceived: function(notification, payload, sender){
        if(notification === "NEW_STUFF" && sender === "modula"){
          //handle the payload: {foo: "bar"}
        }
      }
      
      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Go East, young icon!

      @Mykle1 you can achieve this without modifying the code

      custom.css

      .MMM-NetworkScanner .fa-ul li .fa-li {
        float: right;
      }
      

      if this ends up with a to big gap you can limit the wifht of the list with

      .MMM-NetworkScanner .fa-ul {
        width: 200px;
      }
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Internet Monitor

      @ronny3050 you could achieve this with css3 filters

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • MagicMirror² Hackathon 2018

      MagicMirror-Hackathon

      Hackathon for the MagicMirror² project and 3rd party modules.

      What is a hackathon?

      https://en.wikipedia.org/wiki/Hackathon

      Why?

      I contributed and created a lot of 3rd party modules during my studies. Since I have a job I barely find time to maintain just one of them. So I want to spend 48h to get them back to live.

      When?

      It’s happening from 2018-12-26 08:00 until 2018-12-28 08:00 UTC time zone.

      How can I contribute?

      Be a Product Owner

      Add your ideas for the hackathon and create issues in this project. They can be new features, bug fixes or improvements to the core project or any third party module (don’t forget to link the repository). Make sure you give detailed descriptions etc. Also note if there is a specific hardware required, as not everyone has this hardware and it is not easy to develop without actually being able to test it properly. The same rule applies if there is an api key required, because some providers go through a manual review which is most likely stopped during the holidays.

      Be a Developer

      If you want to contribute, then pick an idea of the project board, leave a comment on the issue that you started working on it. As soon as you finish create a pull request to the project.

      Be a Quality Assurance

      If you want to contribute, then pick an issue in the review state of the project board, test the changes and leave comments with what needs to be changed or if is not working. If everything is fine give your thumbs up.

      How can I follow the process?

      First I wanted to stream, so people can watch me coding. But my internet is too weak, in order to provide a decent quality :(
      But I’m trying to update the project board as often as reasonable. I will also be available through discord, where I want to give updates or talk to people or answer coding related questions.

      For more information checkout the github repository or contact me on discord.

      [card:fewieden/MagicMirror-Hackathon]

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • 1
    • 2
    • 3
    • 4
    • 5
    • 53
    • 54
    • 3 / 54