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

    Posts

    Recent Best Controversial
    • RE: config
      
      
      
      
       
      
      npm ERR! A complete log of this run can be found in:
      npm ERR!     /home/pi/.npm/_logs/2019-11-16T14_09_4
      code_text
      ``
      
      
      
      
      posted in Troubleshooting
      G
      geo
    • RE: config

      hi and thx again.still no joy and i have poated the latest config```
      code_text

       *
       * 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: "clock",
      			position: "top_left"
      		},
      		{
      			module: "calendar",
      			header: "GB Holidays",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check",
      						url: "webcal://www.calendar/embed?src=en.uk%23holiday%40group.v.calendar.google.com"					}
      				]
      			}
      		},
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		{
      			module: "currentweather",
      			position: "top_right",
      			config:  {     
      				location: "",
      				locationID: "53.9576",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      				appid: "76b503a29647f3a01dd9ba1055daea6d",
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "",
      				
      				
      				locationID: "53.9576",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      				appid: "76b503a29647f3a01dd9ba1055daea6d",
      			}
      		}
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config:
      				feeds: [
      					{
      						title:  "BBC",
      						url: "http://WWW.BBC.com/services/xml/rss/bbc/HomePage.xml",
      					}
      				],
      				showSourceTitle: true,
      				
      				showPublishDate: true,
      				broadcastNewsFeeds: false,
      				broadcastNewsUpdates: true,
      			}
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      posted in Troubleshooting
      G
      geo
    • RE: config
      code_text
      ```/* 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: "clock",
      			position: "top_left"
      		},
      		{
      			module: "calendar",
      			header: "GB Holidays",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check",
      						url: "webcal://www.calendar/embed?src=en.uk%23holiday%40group.v.calendar.google.com"					}
      				]
      			}
      		},
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		{
      			module: "currentweather",
      			position: "top_right",
      			config: 
      				location: "",
      				locationID: "53.9576",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      				appid: "76b503a29647f3a01dd9ba1055daea6d",
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "",
      				
      				,
      				locationID: "53.9576",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      				appid: "76b503a29647f3a01dd9ba1055daea6d",
      			}
      		},
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      					{
      						title:  "BBC",
      						url: "http://WWW.BBC.com/services/xml/rss/bbc/HomePage.xml",
      					}
      				],
      				showSourceTitle: true,
      				
      				showPublishDate: true,
      				broadcastNewsFeeds: false,
      				broadcastNewsUpdates: true,
      			}
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      posted in Troubleshooting
      G
      geo
    • RE: config

      @Fozi hi i am now really embarassed,how do i post tme config.
      i should explain i thought the mirror would be a great project but did not realise ,for me, how complicated it was.
      cheers
      geo

      posted in Troubleshooting
      G
      geo
    • config

      hi when i try to boot mm meesage on screen asking me to create config.it was working and i was fiddling with the weather but dont know what i have done wrong.
      i am not comp savvy and its taken me a long time to get here.
      cheers
      geo

      posted in Troubleshooting
      G
      geo
    • RE: why is it so difficult to increase the size of the display moduless

      hi thx i will give it a try
      regards

      posted in Custom CSS
      G
      geo
    • why is it so difficult to increase the size of the display moduless

      this should be easy but all i find is add thi to css file
      rehards
      geo

      posted in Custom CSS
      G
      geo
    • custom .css file

      hi what is it and how to access it.i am trying to increase size of weather and calendar screen modules
      cheers
      geo

      posted in Development
      G
      geo
    • RE: gobblydegook command not recognised

      @sdetweil hi i am completely ignorant of compsand it has taken me,on and off,mths to get mm up and running.i have struggled with the laguage and often command lines are not recognised and i am stumped.
      when i first got it running the screen shows a us screen and i would like uk news and weather etc.
      thx for replying most grateful
      regards
      geo

      posted in Troubleshooting
      G
      geo
    • RE: adding default modules to mm screen

      @Mykle1 hi thx for your interest but the command line brings up no such file or directory
      geo

      posted in Troubleshooting
      G
      geo
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 7 / 8