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

    Posts

    Recent Best Controversial
    • Alexapi

      Hello everyone,

      I feel like I am constantly asking questions so I appreciate everyone who has taken the time to help me.

      So I am trying to install Alexa on my rasp pi to incorporate it with my mirror. It keeps on freezing halfway through the installation once it hits the Bluetooth part. Has anyone encountered this before?

      Scanning dependencies of target AudioPlayer [ 54%] Building CXX object CapabilityAgents/AudioPlayer/src/CMakeFiles/AudioPlayer.dir/AudioPlayer.cpp.o [ 54%] Building CXX object ApplicationUtilities/Resources/Audio/src/CMakeFiles/AudioResources.dir/AudioFactory.cpp.o [ 56%] Building CXX object ApplicationUtilities/Resources/Audio/src/CMakeFiles/AudioResources.dir/NotificationsAudioFactory.cpp.o [ 56%] Building CXX object ApplicationUtilities/Resources/Audio/src/CMakeFiles/AudioResources.dir/CommunicationsAudioFactory.cpp.o [ 56%] Linking CXX shared library libAudioResources.so [ 56%] Built target AudioResources Scanning dependencies of target Bluetooth [ 56%] Building CXX object CapabilityAgents/Bluetooth/src/CMakeFiles/Bluetooth.dir/Bluetooth.cpp.o

      posted in Troubleshooting
      A
      anhanyoung
    • RE: Pandora

      @cowboysdude I am going to have to teach myself how to write modules and really understand what is going on behind the scenes!

      posted in Requests
      A
      anhanyoung
    • RE: Need help with setting up Alexa

      Here because I am stuck on this as well

      posted in Troubleshooting
      A
      anhanyoung
    • RE: MMM-Uber and MMM-Lyft

      Ah I will do that! I appreciate the help!

      posted in Troubleshooting
      A
      anhanyoung
    • MMM-Uber and MMM-Lyft

      The only thing it is displaying is Checking status…

      I have cloned the repository and added this to my config. I am at a road block. Does anyone know how to fix this? I obviously took out all of my personal information. The proper client ID and secret is added in my config. Am I supposed to change something in the modules folder for this?

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       *
       * For more information how you can configurate this file
       * See https://github.com/MichMich/MagicMirror#configuration
       *
       */
      
      var config = {
      address: "localhost", // Address to listen on, can be:
                            // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
                            // - another specific IPv4/6 to listen on a specific interface
                            // - "", "0.0.0.0", "::" to listen on any interface
                            // Default, when address config is left out, is "localhost"
      port: 8080,
      ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
                                                             // or add a specific IPv4 of 192.168.1.5 :
                                                             // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
                                                             // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
                                                             // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      language: "en",
      timeFormat: 12,
      units: "metric",
      
      modules: [
       {
        module: "alert",
       },
       {
        module: "updatenotification",
        position: "top_bar"
       },
       {
        module: "clock",
        position: "top_left"
       },
       {
        module: "calendar",
        header: "Shaunas Calendar",
        position: "top_left",
        config: {
         calendars: [
          {
           symbol: "calendar-check",
           url: "https://calendar.google.com/calendar/ical/s/basic.ics"
          }
         ]
        }
       },
       {
              module: 'compliments',
              position: 'lower_third',
              config: {
                      updateInterval: 40000,
                      compliments: {
                              anytime: [
                              "Good heaven all mighty! You are beautiful",
        "Aren't I a lucky mirror? \n Get to look at this beautiful lady while she gets ready",
        "Mirror Mirror on the wall \n Who's the fairest one of them all? \n Shauna Stilson is the fairest of them all"
                                              ],
        morning: [
                              "Good morning, sunshine!",
        "You're up pretty early!",
        "I already know you look DAMN beautiful!",
        "I hope I got you coffee...",
        "You're truly something else...Hot damn!",
        "Mirror Mirror on the wall \n Who's the fairest one of them all? \n Shauna Stilson is the fairest of them all"
                                              ],
                              afternoon: [
                              "It's the afternoon!",
        "You must be getting ready for work!",
        "I hope you have an amazing day gorgeous!",
        "Who's that sexy lady?!... /nOfcourse it's Shauna!",
        "I still hope I grabbed you coffee",
        "I love you",
        "I'm going to marry the fuck out of you",
        "Mirror Mirror on the wall \n Who's the fairest one of them all? \n Shauna Stilson is the fairest of them all"
                                              ],
                              evening: [
                                      "Who's the lucky guy to be taking you out?! /nI hope it's me!",
         "HOT MAMA DAMN! \n HOW DID A MIRROR GET SO LUCKY?!",
                                      "Wasn't the day just spectacular?",
         "Never too late to put on some makeup",
         "Mirror Mirror on the wall \n Who's the fairest one of them all? \n Shauna Stilson is the fairest of them all"
                                      ]
                              }
                      }
              },
      
      {
        module: 'MMM-uber',
        position: 'bottom_left',
        header: 'Uber ETA',
        config: {
         lat: .302612,  // use your exact pickup loaction
         lng: -.336220, // use your exact pickup loaction
         uberServerToken: '<ServerToken>',
      }
      },
        {
             module: 'MMM-lyft',
             position: 'bottom_left',
             header: 'Lyft ETA',
             config: {
         lat: .302612,  // use your exact pickup loaction
         lng: -.336220, // use your exact pickup loaction
         clientId: '<MyClientIDl>', 
         clientSecret: '<MyClientSecret>',
          }
      },
               {
        module: "MMM-DarkSkyForecast",
        header: "Weather",
        position: "top_right",
        classes: "default everyone",
        disabled: false,
        config: {
         apikey: "e4734af0d99838ae",
         latitude: ".302614",
         longitude: "-.336216",      
         iconset: "4c",
         concise: false,
         forecastLayout: "table",
         units: "us"
        }
      },
      
      {
        module: 'MMM-MyNotes',
        header: "Shauna & Jon's Notes",
        position: 'top_right',
        classes: 'default everyone',
        config: {
         maxNotes: 5,
         pollFrequency: 600000,
         showDatePosted: true,
         dateFormat: 'MM-D-YYYY'
        }
      },
      
      {
        module: 'MMM-MyCommute',
        position: 'bottom_left',
        config: {
         apikey: 'AIzaLOe0HfcdNo',
         origin:  WA 98023',
         destinations: [
         {
         destination: 't, Federal Way, WA 98003',
         label: 'To Black Angus',
         mode: 'driving',
         color: '#f6a0ee',
         travelTimeFormat: 'h[h] m[m]'
         },
         {
         destination: 'Burlington, WA 98233',
         label: 'Scott & Kaitlins',
         mode: 'driving',
         color: '#f6a0ee',
         travelTimeFormat: 'h[h] m[m]'
         },
         {
         destination: ', Burlington, WA 98233',
         label: 'Coconut Kennys',
         mode: 'driving',
         color: '#f6a0ee',
         travelTimeFormat: 'h[h] m[m]'
         },
         
          ]
        }
      }
       
      ]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      posted in Troubleshooting
      A
      anhanyoung
    • Pandora

      Hey guys! I am looking for a module that would display what I am listening to on Pandora. I saw one for spotify but unfortunately, I do not use spotify.

      Does anyone know if one exists? If not, would someone make one? <3

      I would be forever in your debt

      posted in Requests
      A
      anhanyoung
    • RE: CANNOT ADD MODULES

      What does Expected ‘]’ to match ‘[’ from line 45 and instead saw ‘:’.
      75 Expected ‘}’ to match ‘{’ from line 28 and instead saw 'MMM-lyft mean?

      posted in Troubleshooting
      A
      anhanyoung
    • RE: CANNOT ADD MODULES

      @mykle1

      Thank you. I have been using your tutorials all night. It has helped me get to where I am. I tried folllowing these steps for different modules and it didn’t seem to work for me

      posted in Troubleshooting
      A
      anhanyoung
    • RE: CANNOT ADD MODULES

      Thank you guys! I will try using those sites. Didn’t know they existed. Oh man. Would that be a help. Another question, for d ample, the compliments and weather module, when I change it in the config, do I have to change it in the module folder as well? Adding more compliments and such?

      posted in Troubleshooting
      A
      anhanyoung
    • CANNOT ADD MODULES

      For the mother fucking life of me, I have been working on this for 8 hours now trying to upload different modules. Every time I do, it either doesn’t show up on the screen or says I need to a config, which I already have.

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       *
       * For more information how you can configurate this file
       * See https://github.com/MichMich/MagicMirror#configuration
       *
       */
      
      var config = {
      	address: "localhost", // Address to listen on, can be:
      	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      	                      // - another specific IPv4/6 to listen on a specific interface
      	                      // - "", "0.0.0.0", "::" to listen on any interface
      	                      // Default, when address config is left out, is "localhost"
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.168.1.5 :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      	language: "en",
      	timeFormat: 12,
      	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",
      						url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
      					}
      				]
      			}
      		},
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		{
        			  module: 'MMM-lyft',
         			 position: 'top_left',
      			   header: 'Lyft (DC)',
      			  config: {
              lat: 47.3025085,  // use your exact pickup loaction
              lng: -122.3361409, // use your exact pickup loaction
              clientId: '<_n-YCNuBuJRV>', 
              clientSecret: '<Wcoq_0QSQFcinV8Al_aKjfMB4dAz9oQJ>',
          }
      },
      		        {
              module: 'MMM-NOAA3',
      	position: 'top_left',
              config: {
      		    provider: "accuweather", // From list above
      		    apiKey: "GFT6iF5ELpZ7pBYxzWabkEDAd8ZrK1HD",        // From one of the providers listed above
      		    airKey: "AyY8mD8jWGvFrgBv8",    
      	        css: "NOAA3",                   // THIS MUST CONTAIN A CSS STYLE NAME 
      		userlat: "47.302604", //MUST HAVE BOTH
      	        userlon: "-122.33621"  //MUST HAVE BOTH
      		zip: "98023"
      	 }
               },
      		
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      
      posted in Troubleshooting
      A
      anhanyoung
    • 1 / 1