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

    damith

    @damith

    0
    Reputation
    1
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    damith Unfollow Follow

    Latest posts made by damith

    • RE: MMM-Globe

      hi guys… my GLOBE is woking fine… but there is a problem with City NAMES, i won’t display…, config is ok… can anyone help me …?

      {
      module: ‘MMM-Globe’,
      position: ‘lower_third’, // This can be any of the regions. Best results in lower_third
      config: {
      size:“x-large”, // Globe size. See configuration options below for more options
      dayLength: 38, // (Optional) Rotation speed. See configuration options below
      viewAngle: 15, // (Optional) Globe tilt. See configuration options below.
      introLinesDuration: 2000,
      receiveExternalLocations: 0,
      locations: [
      // Fill with location Objects if desired
      // e.g.
      {lat:37.77493,lng:-122.41942, label:“San Francisco”},
      {lat:7.58403,lng:80.78798, label:“Sri Lanka”},
      {lat:-23.5475,lng:-46.63611, label:“Sao Paulo”}

                      // Individual values must be seperated by a comma.
                      // You can look up the latitude and longitude for a specific location on Google Maps.
                          ]
                          }
                  },
      ]
      
      posted in Entertainment
      D
      damith
    • RE: MMM-Globe

      hi @sdetweil

      Thank you very much for your reply… you are the NUMBER ONE… it works fine… Thanks again.

      i have done NPM INSTALL… its worked fine…:face_savoring_food: :face_savoring_food:

      posted in Entertainment
      D
      damith
    • RE: MMM-Globe

      hi@thgmirror
      Thank you very much for you reply, I’ve checked with built in check but no errors …!!

      pi@raspberrypi:~/MagicMirror $ npm run config:check

      magicmirror@2.15.0 config:check /home/pi/MagicMirror
      node js/check_config.js

      [02.05.2021 12:20.01.503] [INFO] Checking file… /home/pi/MagicMirror/config/config.js
      [02.05.2021 12:20.01.719] [INFO] Your configuration file doesn’t contain syntax errors :)
      pi@raspberrypi:~/MagicMirror $

      posted in Entertainment
      D
      damith
    • RE: MMM-Globe

      hi everyone, I’ve tried to install on my PI but it won’t work…am getting black screen, here is my config file… any HELP…?
      modules: [

      	{
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	{
      		module: "clock",
      		position: "top_left"
      	},
      	{
      		module: "calendar",
      		header: "Italy Holidays",
      		position: "top_left",
      		config: {
      			calendars: [
      				{
      					symbol: "calendar-check",
      					url: "webcal://www.calendarlabs.com/ical-calendar/ics/53/Italy_Holidays.ics"					}
      			]
      		}
      	},
      	{
      		module: "compliments",
      		position: "top_center"
      	},
      	{
      		module: "weather",
      		position: "top_right",
      		config: {
      			weatherProvider: "openweathermap",
      			type: "current",
      			location: "ROME",
      			locationID: "3169070", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      			apiKey: "492da6299f48937482d3c321215289b0"
      		}
      	},
      	{
      		module: "weather",
      		position: "top_right",
      		header: "Weather Forecast",
      		config: {
      			weatherProvider: "openweathermap",
      			type: "forecast",
      			location: "ROME",
      			locationID: "3169070", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      			apiKey: "492da6299f48937482d3c321215289b0"
      		}
      	},
      	{
      		module: "newsfeed",
      		position: "bottom_bar",
      		config: {
      			feeds: [
      				{
      					title: "REPUBBLICA",
      					url: "https://www.repubblica.it/rss/homepage/rss2.0.xml"
      				}
      			],
      			showSourceTitle: true,
      			showPublishDate: true,
      			broadcastNewsFeeds: true,
      			broadcastNewsUpdates: true
      		}
      	},
                  {
      	module: 'MMM-Globe',
      	position: 'lower_third',	// This can be any of the regions. Best results in lower_third
      	config: {
                  size:"x-small", // Globe size. See configuration options below for more options
      			dayLength: 38, // (Optional) Rotation speed. See configuration options below
      		    viewAngle: 15, // (Optional) Globe tilt. See configuration options below.
      			introLinesDuration: 2000,
      			receiveExternalLocations: 0,
                  locations: [
                      // Fill with location Objects if desired
                      // e.g.
                         {lat:37.77493,lng:-122.41942, label: "San Francisco"},
                         {lat:-23.5475,lng:-46.63611, label: "Sao Paulo"}
      
                      // Individual values must be seperated by a comma.
                      // You can look up the latitude and longitude for a specific location on Google Maps.
                          ]
                          }
                  },
      ]
      

      };

      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== “undefined”) {module.exports = config;}

      posted in Entertainment
      D
      damith