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

    Posts

    Recent Best Controversial
    • RE: IR Frame doesn't rotate

      @AlessandroRa
      Hm, these are drivers for Mac (pkg), Android (apk), Windows (exe)

      Maybe you can extract the pkg file and gather the driver files?

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: HELP WITH MMM-Flickr

      Indeed, we see this a lot with Mac users.
      So, it is working for you now?

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: HELP WITH MMM-Flickr

      @bluecaka69
      Hi. There is a comma missing after the value 10000. Additionally there is a wrong ’ in front of your ID.

      The command npm install needs to be run inside the module folder ~/MagicMirror/modules/MMM-Flickr

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Music player

      @johnnyboy
      run sudo apt-get autoremove. SUDO says “I’m root” ;)

      posted in General Discussion
      yawnsY
      yawns
    • RE: Total n00b and can't get this thing to work. Please help!

      But you did not receive any error message during removal and installation?

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Forum - uploaded images are not shown

      @MichMich said in Forum - uploaded images are not shown:

      By now, me and nodeBB are no langer talking to each other. She’s a PITA!

      Your relationship is that broken? :rofl:

      posted in General Discussion
      yawnsY
      yawns
    • RE: Total n00b and can't get this thing to work. Please help!

      Very weird indeed. Did you install Jessie or Jessie Lite?
      If I run the version commands, I get this on my pi:

      npm -v: 3.10.8
      node -v: 6.9.1
      nodejs -v: 6.9.1
      

      Please try this:

      sudo apt-get remove nodered -y
      sudo apt-get remove nodejs nodejs-legacy -y
      sudo apt-get remove npm -y
      sudo curl -sL https://deb.nodesource.com/setup_6.x | sudo bash -
      sudo apt-get install -y nodejs
      node -v
      npm -v
      

      and then try to run the npm install && npm start again in your MagicMirror folder

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Commercial Smart Mirror?

      Hm, this is no real usecase for me. The mirror - at least for me - is a technical and modern way to replace old fashioned paper calendars / schedulers with some addons like weather forecast, traffic jams and public transport delays, without having to use the smartphone.
      I don’t want to browse websites while brushing my teeth or view the latest news while taking a shower :)

      posted in General Discussion
      yawnsY
      yawns
    • RE: Total n00b and can't get this thing to work. Please help!

      Your node is still old. Did you run

      apt-get update
      apt-get upgrade
      

      or

      sudo apt-get update
      sudo apt-get upgrade
      

      ? Without sudo (root rights) apt-get will not install anything and just throw out errors.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Not really a mirror at all - but is really helpful

      @johnnyboy said in Not really a mirror at all - but is really helpful:

      @yawns
      Cant see picture of his mirror… can you add it again please?

      Thanks

      Done

      posted in Showcase
      yawnsY
      yawns
    • RE: The oldest to make a Magic Mirror?

      @Mykle1 I’m 34, so I’m definitely not in the race for the oldest guy on this forum ;-)

      posted in General Discussion
      yawnsY
      yawns
    • RE: console.Log() shows nothing?

      @strawberry-3.141
      Just to add, because I found this irritating at first:
      If your browser does not open the console in dev mode then press F12 (works in every common browser) and look at the error/warning/log output there

      Ah, @izanbard was faster :-)

      posted in Development
      yawnsY
      yawns
    • RE: Forum - uploaded images are not shown

      @Mykle1
      No, I don’t think so. Lets see what the administrators come up with :)

      posted in General Discussion
      yawnsY
      yawns
    • RE: How do I edit config, I see every new module starts whit going to config.js

      @KMH0
      Actually it is always the same thing.

      1. Find yourself a module you like, for example: MMM-IP
      2. Top right on the github repository you see a green button saying “clone or download”. If you click it you get the url for this repository. In this case it is https://github.com/fewieden/MMM-ip.git
      3. Open a terminal on your pi (either directly or using SSH) and type cd ~/MagicMirror/modules
      4. Clone the module to your pi by typing git clone https://github.com/fewieden/MMM-ip.git. This downloads the repository and extracts it into a new folder.
      5. Enter the new directory cd MMM-ip and run npm install (in this case it is not required … the readme should tell you to do so)
      6. Edit your config file and add the code for the new module as the readme instructs to.
      7. Restart your magic mirror process and check what happened.

      Sidenote: If you run into trouble with your config file, you can always paste the content into http://jshint.com/. If everything is fine it will only show this which is fine:

      One undefined variable
      64	module
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: How do I edit config, I see every new module starts whit going to config.js

      You missed one ] which I added on 4th line from bottom

      var config = {
              port: 8080,
              ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
      
              language: 'en',
              timeFormat: 24,
              units: 'metric',
      
              modules: [
                      {
                              module: 'alert',
                      },
                      {
                              module: "updatenotification",
                              position: "top_bar"
                      },
                      {
                              module: 'clock',
                              position: 'top_left'
                      },
                      {
                              module: 'calendar',
                              header: 'US Holidays',
                              position: 'top_left',
                              config: {
                                      calendars: [
                                              {
                                                      symbol: 'calendar-check-o ',
                                                      url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
                                              }
                                      ]
                              }
                      },
                      {
                              module: 'compliments',
                              position: 'lower_third'
                      },
                      {
                              module: 'currentweather',
                              position: 'top_right',
                              config: {
                                      location: 'New York',
                                      locationID: '',  //ID from http://www.openweathermap.org
                                      appid: 'YOUR_OPENWEATHER_API_KEY'
                              }
                      },
                      {
                              module: 'newsfeed',
                              position: 'bottom_bar',
                              config: {
                                      feeds: [
                                              {
                                                      title: "New York Times",
                                                      url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
                                              }
                                      ],
                                      showSourceTitle: true,
                                      showPublishDate: true
                              }
                      },
                ]
              };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Further module categories...

      @Jopyth
      Ah ok, that makes alot more sense to me :thumbsup:

      posted in General Discussion
      yawnsY
      yawns
    • RE: Forum - uploaded images are not shown

      Update: @Mykle1 just uploaded a new picture and this is located in /assets/uploads/files/1487604272003-img_1761.jpeg

      @MichMich @paviro
      Do you guys know why this was changed? :)

      posted in General Discussion
      yawnsY
      yawns
    • RE: Netatmo module

      Yes, my mistake, folder netatmo is correct, but it needs to be in modules

      Could you please start your mirror with npm start dev, open the console in your browser by pressing F12 and check for any errors there?

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: 1 old noob + 1 rPi = I can't believe I did it! (revisited)

      @johnnyboy
      The pictures are there, the forum is just not showing them currently.
      I fixed the image links in the opening post manually

      posted in Show your Mirror
      yawnsY
      yawns
    • 1 / 1