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

    Posts

    Recent Best Controversial
    • RE: Peek-a-boo...

      @darrene thank you for sharing your calendar.js file because that is where I found where the issue was…it was the name for the function notificationReceived: – needed to have a lower case “n”.

      Now it works perfectly!! And as you predicted I experienced a massive grin.

      update:
      I’ve been testing this out with other modules and it works like a charm. I also discovered (after trial and error) that its possible to combine the hide/show with the hide all/show all command simply by revising the if statement on the notificationReceived function with an “or” condition specifying both commands . See below is an example of the revised code:

      notificationReceived: function(notification, payload, sender) {
      if (notification === “HIDE_CALENDAR” || “HIDE_ALL”) {
      this.hide();
      } else if (notification === “SHOW_CALENDAR” || “SHOW_ALL”) {
      this.show();
      }
      },

      posted in Troubleshooting
      C
      carteblanche
    • RE: Peek-a-boo...

      @darrene I went through all the steps and I can see in the console that the modules are receiving the notification broadcast as expected but for whatever reason the Calendar isn’t actually responding (i.e. HIDE_CALENDAR doesn’t make the calendar go away).

      Any ideas? I’m wondering if it has to do with where I put the code into calendar.js?

      posted in Troubleshooting
      C
      carteblanche
    • RE: Peek-a-boo...

      @darrene you are a SAINT!..I’m going to follow these instructions now and will let you know how it goes

      posted in Troubleshooting
      C
      carteblanche
    • RE: Amazon Echo/Alexa

      I’m not a programmer so I have yet to figure out how to make a module, but I was able to follow the instructions from Amazon to get AVS/Alexa running on my rpi3 while MM2 is also running. It’s kinda cool cause Alexa just runs in the background and takes commands with the wake word “Alexa”.

      The only feature I wish it had is visual feedback on the mirror. I also wish the Alexa sample app could autorun anytime I have the mirror loaded.

      posted in Requests
      C
      carteblanche
    • RE: Mat's mirror completed!

      @zydecat74 great job! Im just wondering what type of mirror you used?

      posted in Show your Mirror
      C
      carteblanche
    • RE: Peek-a-boo...

      @darrene as @Baltibu suggested, it would be awesome if you could share the code you used to get this module to work. I am still trying to get any of the voice modules to work for mm2 on my mirror.

      posted in Troubleshooting
      C
      carteblanche
    • RE: Where are you from?

      Los Angeles

      posted in General Discussion
      C
      carteblanche
    • RE: MMM-Voice-Control

      @dr4ke616 I haven’t used annyang before and not familiar with how it works vs other options, but I have used Google Speech API (+ snowboy hotword detection) using a different smart-mirror project…

      if this module is using Google Speech API, I would think we would need to input our own API keys but I didn’t see that in the config.

      posted in Utilities
      C
      carteblanche
    • RE: Wunderlist - your todos on the mirror

      @SexyTrogg You don’t need any of the tasks to be in the Inbox folder. You just need to create a new custom list of your todos separate from the auto generated folders that Wunderlist creates and call that list name out in the module config file.

      See a screenshot of my lists here…I can have either Work or Family show up on my mirror if I choose those names in the config file. But be careful it is case sensitive.

      0_1476985471306_Screen Shot 2016-10-20 at 10.44.22 AM.png

      posted in Troubleshooting
      C
      carteblanche
    • RE: Wunderlist - your todos on the mirror

      This module is working perfectly for me. As others mentioned it doesn’t work for the filters like Today, Week, etc. you can only assign it to specific lists that you create like “Work” for example.

      posted in Troubleshooting
      C
      carteblanche
    • 1 / 1