MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. bperlson
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Controversial 0
    • Groups 0

    bperlson

    @bperlson

    0
    Reputation
    211
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    bperlson Unfollow Follow

    Latest posts made by bperlson

    • RE: Issue booting up MM

      @madscientist
      Fatal error in …/deps/v8/src/snapshot/deserializer.cc, line 662

      Check failed: false.

      that is what I get when I try to start it…

      posted in Troubleshooting
      B
      bperlson
    • RE: Issue booting up MM

      @madscientist I cannot edit the post now. But what was the second thing?

      posted in Troubleshooting
      B
      bperlson
    • RE: Issue booting up MM

      0_1534446047090_aaf8f064-9507-4bc4-af39-dad84ff35ac3-image.png /* 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: "imperial",
      
      modules: [
      	{
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	{
      		module: "clock",
      		position: "top_left"
      	},
      		{
      		  module: "MMM-NowPlayingOnSpotify",
      		  position: "bottom_left",
      		
      		  config: {
      		    clientID: "9cbb4966327e429ea6611b896c7aa475",
      		    clientSecret: "5fb34270e7974d4db88b72184ffea965",
      		    accessToken: "BQAV5hhJmzGt_yFq9JgfqQmOaYBeWBQsZJZYgnwr8rRXehDtB9huPdLZMBlY7H6SLWJFiSBlVVwh_Pbx_Ax2ehtYbyHjur1OTSuvt1BA_SVMC_Zmtk6fBMQd3TdrzNnz9n9zUXCaS0YA5llPKauKWz9_N_g",
      		    refreshToken: "AQC9r0Dr3B6v5oDnIGcxCfsXVT73Z9fWkj83NGk3CBritcOj7ReotWoOjQomMQhO3M8vjsnvDtkBYCNzj__-MCQILSY_uxyeBzN4XtqKQhulIo0TfrnfSPk6KHSOQlKrvB8"
      		  }
      		},
      
      
      
      	{
      		module: "calendar",
      		header: "Ben's Events",
      		position: "top_left",
      		config: {
      			calendars: [
      				{
      					symbol: "calendar-check-o ",
      					url: "https://calendar.google.com/calendar/ical/brperlson%40gmail.com/private-4e5979ce33a6de99058ea95ee43eb965/basic.ics"
      				}
      			]
      		}
      	},
      
      	{
      		module: "currentweather",
      		position: "top_right",
      		config: {
      			location: "Iowa City",
      			locationID: "4862034",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "ab97a6b07b76d512b14cff642fa674e6"
      		}
      	},
      	{
      		module: "weatherforecast",
      		position: "top_right",
      		header: "Weather Forecast",
      		config: {
      			location: "Iowa City",
      			locationID: "4862034",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "ab97a6b07b76d512b14cff642fa674e6"
      		}
      	},
      	//{
      	//	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
      B
      bperlson
    • issue booting MagicMirror Please help

      pi@raspberrypi:~/MagicMirror $ npm start

      Fatal error in …/deps/v8/src/snapshot/deserializer.cc, line 662

      Check failed: false.

      Aborted
      pi@raspberrypi:~/MagicMirror $

      posted in Troubleshooting
      B
      bperlson