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

    Posts

    Recent Best Controversial
    • RE: MMM-NYC-Transit Module (Black Screen)

      @sdetweil Thanks for the response. There are no errors shown.

      posted in Troubleshooting
      J
      JediJah
    • MMM-NYC-Transit Module (Black Screen)

      Hi All,
      I am getting a black screen after installing this module. Can I get some help reviewing what might have caused it. This is a new install on a RPI 3.
      I read this post thinking I may get insight into issue but to no avail. I even registered for a new API key and that wasn’t it.

      This is my current config.

      /* Magic Mirror Config JediJah
       *
       * 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: "192.168.1.90",                                // 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: [],                                       // 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: "imperial",
      
      	modules: [
      		{
      			   module: "alert",
      		},
      		{
       		     module: "stocks",
       				 position: "top_bar",
       				 config: {
       						stocks: "ACB,AMC,AMD,AAPL,BPFH,JBLU,SQ,TSLA,XXII", // stock symbols
       						updateInterval: 37000 // update interval in milliseconds
       		}
       		},
      		{
      		     module: "clock",
      			   position: "bottom_left"
      		},
      		{
      			   module: "calendar",
      			   header: "Upcoming Events",
      			   position: "bottom_left",
      			   config: {
      				 //maximumNumberOfDays: "15",
      				 maximumEntries: "8",
      				 colored: "true",
      	       coloredSymbolOnly: "true",
      				 calendars: [
      				     // "MM Calendar"
      					   {
      				         symbol: "jedi",
      					       color: "#0080FF",
      						     url: "webcal://p27-calendars.icloud.com/published/2/pUk76zgtLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL"
      					   },
      					  // "Family Calendar"
      					   {
      						     symbol: "users",
      						     color: "#FFFF33",
      						     url: "webcal://p27-calendars.icloud.com/published/2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
      					   }
      				   ]
      			   }
           },
      	   {
                module: "compliments",
      			    position: "upper_third",
      					config: {
      			  	compliments: {
      					anytime: [
      											"Hey there sexy!"
      									 ],
      				  morning: [
      												"It's a beautiful day \nIn Zamunda!",
      												"Enjoy your day!",
      												"How was your sleep?"
      										],
      					afternoon: [
      												"Hello!...",
      												"You look sexy!",
      												"Looking good today!"
      										 ],
      					evening: [
      												"Early to Bed, Early to Rise!",
      												"You look nice!",
      												"Hi, sexy!"
      								 ]
      		  }
      	  	}
        		},
      			{
      					module: "currentweather",
      					position: "bottom_right",
      					config: {
      					location: "Brooklyn",
      					locationID: "5110302",  												//ID from http://bulk.openweathermap.org/sample/; unzip the gz file and find your city
      					appid: "54220318a8f6202d9b47dbccf5102fbe"
      			}
      			},
      			{
      					module: "weatherforecast",
      					position: "bottom_right",
      					header: "Weather Forecast",
      					config: {
      					location: "New York",
      					locationID: "5110302",  											//ID from https://openweathermap.org/city
      					appid: "54220318a8f6202d9b47dbccf5102fbe"
      			}
      			},
      			{
      					module: "newsfeed",
      					position: "top_bar",
      					config: {
      					feeds: [
      							{
      									title: "The Verge",
      									url: "http://www.theverge.com/rss/full.xml"
      							},
      							{
      									title: "9to5mac",
      									url: "http://www.9to5mac.com/feed"
      							}
      									],
      					showSourceTitle: true,
      					showPublishDate: true
      		  }
      	  	},
      		  {
      	 				module: "updatenotification",
      	 				position: "bottom_left"
      	 		},
      			{
      					 module: 'MMM-nyc-transit',
      					 position: "bottom_right",
      					 header: "Next Train",
      					 config: {
      					 apiKey: '69c0a4199031a6dd60c00c3da86eae4c',
      					 displayType: 'list',
      					 mtaType: 'train',
      					 stations: [
      						 {
      							 stationId: 95,
      							 walkingTime: 5,
      							 dir: {
      									 upTown: false,
      									 downTown: true
      											}
      								 },
      								 {
      								 stationId: 95,
      								 walkingTime: 5,
      								 dir: {
      										 upTown: true,
      										 downTown: false
      										}
      							 }
      									 ],
      						 updateInterval: 300000
      								}
      				 },			
      	]
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      

      Any help or insight will be most appreciated.

      posted in Troubleshooting
      J
      JediJah
    • RE: How to post code on the forum - For absolute beginners

      Thanks for this post. I am about to put it to good use.

      posted in Troubleshooting
      J
      JediJah
    • RE: Introduce yourself!

      Hi All,
      I’m Shonari. I’m 34 and live in Brooklyn, NY. I work at a startup building cellphone charging kiosks. Love to make and have a new found affinity for Raspberry Pi. Made a MagicMirror last December and recently decided to upgrade it to a Pi3 and MagicMirror2. Love the modules. Thanks to all those who contribute their time to this great project.

      Cheers,

      posted in General Discussion
      J
      JediJah
    • 1 / 1