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

    Karagas

    @Karagas

    0
    Reputation
    285
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Karagas Unfollow Follow

    Latest posts made by Karagas

    • RE: Magic mirror booting for first time

      So, should I re-install everything with the new guide?

      If the missing coma doesn’t make it work I will anyway, thank you both!!

      posted in Troubleshooting
      K
      Karagas
    • Magic mirror booting for first time

      Hello everyone,

      Yesterday I began installing all that was necessary for my magic mirror with this tutorial. After some bugs, I finally managed to make this start but then… this happened (please ignore the wrong resolution, I still have to find a way to stabilize that since it sometimes changes when booting)

      So my question is: can it possibly come from the way I installed this? Or is it really my config.js file?

      Since you probably can’t tell without my config file, here it is:

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      var config = {
      	port: 8080,
      
      	language: 'fr',
      	timeFormat: 24,
      	units: 'metric',
      
      	modules: [
      		{
      			module: 'alert',
      		},
      		{
      			module: 'clock',
      			position: 'top_left'
      		},
      		{
      			module: 'calendar',
      			header: 'Calendrier',
      			position: 'top_left',
      			config: {
      				calendars: [
      					{
      						symbol: 'calendar-check-o ',
      						url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
      					}
      				]
      			}
      		},
      		{
      			module: 'compliments',
      			position: 'lower_third'
      				config: {
      					compliments:{
      						morning:[
      							'blablabla!',
      							'blablabla!',
      							'blabalbal!'
      						]
      						afternoon:[
      							'blablabal',
      							'blabalbal!!'
      						]
      						evening:[
      							'blabalbal!!',
      							'blablabla?'
      						]
      					}
      				}
      		},
      		{
      			module: 'currentweather',
      			position: 'top_right',
      			config: {
      				location: 'Paris',
      				locationID: '2988507',  //ID from http://www.openweathermap.org
      				appid: '31a8ba8d6d5dc4953cc52ba06a675ecf'
      			}
      		},
      		{
      			module: 'weatherforecast',
      			position: 'top_right',
      			header: 'Weather Forecast',
      			config: {
      	            location: 'Paris',
      				locationID: '2988507',  //ID from http://www.openweathermap.org
      	            appid: '31a8ba8d6d5dc4953cc52ba06a675ecf'
      			}
      		},
      		{
      			module: 'newsfeed',
      			position: 'bottom_bar',
      			config: {
      				feeds: [
      					{
      						title: "Libération",
      						url: "rssliberationfr/rss/latest/",					},
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      

      Note from admin: Please use Markdown on code snippets for easier reading!

      posted in Troubleshooting
      K
      Karagas