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

    giulianomondin

    @giulianomondin

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

    giulianomondin Unfollow Follow

    Latest posts made by giulianomondin

    • RE: MMM-Globe unable to view a custom image

      I also try MMM-simplelogo and MMM-eyecandy, using the ownimagefile all he modules doesn’t show images!

      posted in Utilities
      G
      giulianomondin
    • MMM-Globe unable to view a custom image

      Good morning all! As in the title i’m Unable to see a custom picture.
      I try this

      config: {
      imageSize: 500,
      ownImagePath:‘/home/pi/MagicMirror/modules/MMM-Globe/logo.jpg’,
      updateInterval: 10601000
      }

      But it isn’t show anything…i also try without the .jpg extension…but nothing.
      Thanks a lot for your help.

      GIuliano

      posted in Utilities
      G
      giulianomondin
    • MMM-Wunderlist

      Good evening guys,
      theese are my firsts steps…
      I succesfully import the MMM-Wundelist module, i put theese strings in the config.js

      {
      module: ‘MMM-Wunderlist’,
      position: ‘bottom_left’,
      header: ‘Wunderlist’,
      config: {
      maximumEntries: 5,
      order: “normal”,
      lists: [“Lavoro”],
      interval: 60,
      fade: false,
      accessTOKEN:‘6d2cd33xxxxxxxxxxxxb5395b1a424baxxxxxxxxxbcfc2b77558b062cba56’,
      clientID:‘2cxxxxxxxxxxxx49’,
      }

      But i can’t understand why on the mirror i see only the Header “Wunderlist”, not the list… can you help me?

      Thank you in advance

      posted in Troubleshooting
      G
      giulianomondin
    • RE: Unable to import 3rd modules party in config.js
      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      var config = {
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
      
      	language: 'en',
      	timeFormat: 24,
      	units: 'metric',
      
      	modules: [
      		{
      			module: 'alert',
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: 'clock',
      			position: 'top_left'
      		},
      		{
      			module: 'calendar',
      			header: 'Festività nazionali',
      			position: 'top_left',
      			config: {
      				calendars: [
      					{
      						symbol: 'calendar-check-o ',
      						url: 'https://calendar.google.com/calendar/ical/it.italian%23holiday%40group.v.calendar.google.com/public/basic.ics'
      					}
      				]
      			}
      		},
      		{
      			module: 'compliments',
      			position: 'lower_third'
      		},
      		{
      			module: 'currentweather',
      			position: 'top_right',
      			config: {
      				location: 'Valeggio sul Mincio,Italy',
      				locationID: '3164924',  //ID from http://www.openweathermap.org
      				appid: 'XXXXXXXXXX'
      			}
      		},
      		{
      			module: 'weatherforecast',
      			position: 'top_right',
      			header: 'Weather Forecast',
      			config: {
      				location: 'Valeggio sul Mincio,Italy',
      				locationID: '3164924',  //ID from http://www.openweathermap.org
      				appid: 'XXXXXXXXXXXXXXXXXXXX'
      			}
      		},
      		{
      			module: 'newsfeed',
      			position: 'bottom_bar',
      			config: {
      				feeds: [
      					{
      						title: "Il corriere della sera",
      						url: "http://xml.corriereobjects.it/rss/homepage.xml"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      		{
          			module: 'MMM-Flickr',
          			position: 'bottom_right',
          			config: {
              		id: 'XXXXXXXXXX',
              		animationSpeed: 2500,
              		updateInterval: 10000
              		size: 'm' // Default is m, can be o=original, t=thumbnail, s= 75x75, b=1024
                       	 // 'z' medium 640, 640 on longest side. 'c' medium 800, 800 on longest side
         			 }
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      

      MY PROBLEM IS THE MMM-Flickr module that i added At the end of config.js

      posted in Troubleshooting
      G
      giulianomondin
    • Unable to import 3rd modules party in config.js

      Good morning guys,
      Nice to meet you!

      I have got a problem with 3rd modules party.
      I clone the github link, i “npm install”, i try to insert in the config.js the strings belong to the module, but when i try to “npm start” the system respond “no config files”…probably there is an error in the config.js

      I would like to understand how to insert these strings in config.js

      Thank you in advance,
      Giuliano

      posted in Troubleshooting module error config
      G
      giulianomondin