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

    Posts

    Recent Best Controversial
    • RE: Clocks have two different times?

      @tbs86 said in Clocks have two different times?:

      Is there a way to fix the weather forecast to fahrenheit?

      in your config.js, near the top:

      units: "imperial", should do it.

      posted in Troubleshooting
      Mykle1M
      Mykle1
    • RE: The 32" Inch Mirror

      @cowboysdude

      This makes me want to call you names, like . . .

      GURU or GENIUS

      posted in Show your Mirror
      Mykle1M
      Mykle1
    • RE: Making icons bigger?

      @tbs86

      Assuming you mean MMM-BMW-DS, you can add this to your custom.css file and adjust to your liking

      .MMM-BMW-DS .image {             /* icon size */
         width: 1.75%;
         height: 1.75%;
         margin-top: 0px;
         margin-bottom: -10px;
      }
      
      posted in Troubleshooting
      Mykle1M
      Mykle1
    • RE: 1 old noob + 1 rPi = I can't believe I did it! (revisited)

      Shooting for 20

      posted in Show your Mirror
      Mykle1M
      Mykle1
    • RE: Complete Walkthrough - Install MagicMirror on a PC - Windows 7/10

      @johans said in Complete Walkthrough - Install MagicMirror on a PC - Windows 7/10:

      Error: listen EADDRINUSE 127.0.0.1:8080
      at Object._errnoException (util.js:1024:11)
      at _exceptionWithHostPort

      This typically means that another application or program is using the port (8080) that MagicMirror uses. You would have to resolve that issue

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

      https://www.youtube.com/watch?v=kTcRRaXV-fg

      posted in Show your Mirror
      Mykle1M
      Mykle1
    • RE: MMM-Lunartic (fixed temporarily)

      @cowboysdude

      No, they will magically appear on your mirror. ;-)

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

      @cowboysdude said in 1 old noob + 1 rPi = I can’t believe I did it! (revisited):

      20 what?

      20k views brofessor

      posted in Show your Mirror
      Mykle1M
      Mykle1
    • RE: MMM-EyeCandy not refreshing

      @colel83 said in MMM-EyeCandy not refreshing:

      module MMM-ecobee is preventing the EyeCandy module from refreshing

      That is odd. I don’t use the ecobee module so I can’t speak to that. I’m glad EyeCandy is working for you now. Have fun.

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

      @cowboysdude said in 1 old noob + 1 rPi = I can’t believe I did it! (revisited):

      +1, add that to the total LOL

      Gladly

      posted in Show your Mirror
      Mykle1M
      Mykle1
    • RE: MMM-EyeCandy not refreshing

      @colel83

      I thought I might tell you this. I went to your url site and got one of my own. I now have EyeCandy displaying my own personalized radar.

      posted in Troubleshooting
      Mykle1M
      Mykle1
    • RE: Snilles Magic Mirror Project

      @Snille said in Snilles Magic Mirror Project:

      You can find some of the stuff I’ve done here.

      That ball sculpture is crazy cool!!!

      posted in Show your Mirror
      Mykle1M
      Mykle1
    • RE: The installer script linked from the main page is broken.

      @redink

      I don’t think there is another install script. However, you can run npm install in the MagicMirror directory. This often completes installing the dependencies. MM can also be installed manually but you likely already know that. Good luck, mate.

      posted in Troubleshooting
      Mykle1M
      Mykle1
    • RE: Snilles Magic Mirror Project

      @Snille

      Genius!

      posted in Show your Mirror
      Mykle1M
      Mykle1
    • RE: Help Me To Get Lucy Working

      @dazza120

      Ok, let’s start with a single module. What module would you like to use with Hello-Lucy? We’ll get that to SHOW and HIDE first.

      And just so you are aware, there is a list of modules in the ReadMe file that work by default

      posted in Troubleshooting
      Mykle1M
      Mykle1
    • RE: Cheap as chips.....

      @Damian said in Cheap as chips.....:

      Sorry but I never noticed these replies or would have replied earlier,

      No worries, mate. :^)

      I managed by following @Mykle1 guide. and it worked as expected.

      Ahh, excellent! :^)

      Sounds like you’re having fun and getting things done. I don’t have Alexa. Sounds damn cool though! :^)

      posted in Show your Mirror
      Mykle1M
      Mykle1
    • RE: Help Me To Get Lucy Working

      @dazza120 said in Help Me To Get Lucy Working:

      MMM-GoogleMapsTraffic

      In the MMM-GoogleMapsTraffic.js file, add this if/else if statement to the notificationReceived function or the entire thing after the close of the getDom. (see readme)

      notificationReceived: function(notification, payload) {
              if (notification === 'HIDE_TRAFFIC') {
                  this.hide();
              }  else if (notification === 'SHOW_TRAFFIC') {
                  this.show(1000);
              }
                  
          },
      

      Now open the new node helper that you put in the MMM-voice folder Add this at about line 429 (choose a blank line) . You’ll see other just like it

      else if (/(SHOW)/g.test(data) && /(TRAFFIC)/g.test(data)) {
                  this.sendSocketNotification('SHOW_TRAFFIC');
              } else if (/(HIDE)/g.test(data) && /(TRAFFIC)/g.test(data)) {
                  this.sendSocketNotification('HIDE_TRAFFIC');
              }
      

      Then:

      Now open the new MMM-voice.js file that you put in your MMM-voice folder Add this to the sentences array

      HIDE TRAFFIC,
      SHOW TRAFFIC,

      Now go to about line 431 (choose a blank line)

              else if (notification === 'HIDE_TRAFFIC') {
                   this.sendNotification('HIDE_TRAFFIC');
              }  
              else if (notification === 'SHOW_TRAFFIC') {
                   this.sendNotification('SHOW_TRAFFIC');
              }
      
      posted in Troubleshooting
      Mykle1M
      Mykle1
    • RE: Cheap as chips.....

      @Damian said in Cheap as chips.....:

      Now I’m back fully with MM and hope to do more with that.

      After all that, I’m thinking, you will NOT have a problem with MM. :^)

      posted in Show your Mirror
      Mykle1M
      Mykle1
    • RE: Help Me To Get Lucy Working

      @dazza120

      Ok, the readme needs to be updated so the line numbers weren’t quite correct (My bad). I’ve taken the liberty of adding GoogleMapsTraffic to the defaults of Hello-Lucy. It was just easier for me than trying to explain things here.

      1. Get a new copy of the Hello-Lucy repo.
      2. In the MMM-voice replacement files folder is your new MMM-voice.js file and node_helper.
      3. In the Replacement module files folder is your new MMM-GoogleMapsTraffic.js file.

      Replace your current files with the files above.

      Any of my modules will work by default, after having installed them. See the Replacement module files folder for other modules that you might want to use (Ex. calendar, clock, compliments, newsfeed etc)

      posted in Troubleshooting
      Mykle1M
      Mykle1
    • RE: Vanity Mirror, thy name is woman. (using laptop)

      @cowboysdude said in Vanity Mirror, thy name is woman.:

      THAT would be an excellent idea!!! hahahhahahaha BUT I’m sure the wife would STILL be late LOL

      There’s not a timer on (MMM) EARTH that could make my wife be ready on time.

      posted in Show your Mirror
      Mykle1M
      Mykle1
    • 1
    • 2
    • 58
    • 59
    • 60
    • 61
    • 62
    • 66
    • 67
    • 60 / 67