MagicMirror Forum

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

    bokow

    @bokow

    0
    Reputation
    215
    Profile views
    15
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    bokow Unfollow Follow

    Latest posts made by bokow

    • RE: Current weather

      @sdetweil Thanks worked like a charm.

      posted in Troubleshooting
      B
      bokow
    • Current weather

      The new display of current weather will only display two days. It works correctly on the old version of MM.What Have I done wrong?

      posted in Troubleshooting
      B
      bokow
    • RE: Location of the icon table in wx module

      OK, You guys lost me I want to substitute other wx icons and thought there would be a local file of icons I could modify but that does not seem the case. Thanks anyway

      posted in Troubleshooting
      B
      bokow
    • RE: Location of the icon table in wx module

      wx=weather

      posted in Troubleshooting
      B
      bokow
    • Location of the icon table in wx module

      where is the location of the icon table in wx module. I wish to modify it with other weather icons.

      posted in Troubleshooting
      B
      bokow
    • RE: mmm Dad Jokes

      what url and to what app?

      posted in Troubleshooting
      B
      bokow
    • RE: mmm Dad Jokes

      All I had to do was place the location of the jokes to an unoccupied part of the screen. It now works as advertised but t his raises a new problem with the calendar module. The calendar shows nothing, even holidays. I guess my question is where does this app take the calendar info from??

      posted in Troubleshooting
      B
      bokow
    • RE: mmm Dad Jokes

      Never mind got the Dad Jokes working by moving where the text was displayed to a blank area of the screen

      posted in Troubleshooting
      B
      bokow
    • RE: mmm Dad Jokes

      /* 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: 24,
      units: "metric",
      
      modules: [
      	{
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	
      	{
              module: 'MMM-icanhazdadjoke',
              position: 'bottom_right',
              config: {
                  // See below for configurable options
              	}
          		},
      	{	
      		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: "currentweather",
      		position: "top_right",
      		config: {
      			location: "Saginaw",
      			locationID: "5007989",  //ID from http://bulk.openweathermap.org/sample/; unzip the gz file and find your city
      			appid: "90f012418925c43d4ac4e54f147c53be"
      		}
      	},
      	{
      		module: "weatherforecast",
      		position: "top_right",
      		header: "Weather Forecast",
      		config: {
      			location: "Saginaw",
      			locationID: "5007989",  //ID from https://openweathermap.org/city
      			appid: "90f012418925c43d4ac4e54f147c53be"
      		}
      	},
      	{
      		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
      bokow
    • RE: mmm Dad Jokes

      Still have not got it to work, Here are the errors:
      SyntaxError: Unexpected token var
      at new Script (vm.js:74:7)
      at createScript (vm.js:246:10)
      at Object.runInThisContext (vm.js:298:10)
      at Module._compile (internal/modules/cjs/loader.js:678:28)
      at Object.Module._extensions…js (internal/modules/cjs/loader.js:722:10)
      at Module.load (internal/modules/cjs/loader.js:620:32)
      at tryModuleLoad (internal/modules/cjs/loader.js:559:12)
      at Function.Module._load (internal/modules/cjs/loader.js:551:3)
      at Module.require (internal/modules/cjs/loader.js:658:17)
      at require (internal/modules/cjs/helpers.js:20:18)

      posted in Troubleshooting
      B
      bokow