MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    3rd party Module Image Slideshow options Configuration Help

    Scheduled Pinned Locked Moved Troubleshooting
    3 Posts 2 Posters 2.5k Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • P Offline
      paddyhughes
      last edited by paddyhughes

      Hi All,

      I am loving the MagicMirror. I just need some help with 2 things if you can.

      first up is when i got to a 3rd party Module i the config looks like this

      modules: [
      	{
      		module: 'MMM-ImageSlideshow',
      		position: 'bottom_left',
      		config: {
      			imagePaths: ['modules/MMM-ImageSlideshow/example1']
      		}
      	}	
      ]
      

      For me to get it to work i need to edit it to look like this

      {
                    module: "MMM-ImageSlideshow",
                    position: "top_right",
                                  config: {
                    imagePaths: ["modules/MMM-ImageSlideshow/exampleImages"],
                    }
                    },
      

      Should i be leaving the ```
      modules: [
      ]

      
      Second Question 
      In the Configuration options of the add on [ImageSlideshow](https://github.com/AdamMoses-GitHub/MMM-ImageSlideshow)
      there are options  ```
      fixedImageHeight
      

      were do i put it in the code and were do i place the number value

      Here my Config file

      /* 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_right"
      		},
      		{
      			module: "calendar",
      			header: "Irish Holidays",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check-o ",
      						url: "webcal://www.calendarlabs.com/ical-calendar/ics/51/Ireland_Holidays.ics"
      					}
      				]
      			}
      		},
      
      
                    {
                    module: "MMM-cryptocurrency",
                    position: "top_right",
                    config: {
                    currency: ['bitcoin', 'ripple', 'Monero', 'tron'],
                    conversion: 'EUR',
                    showUSD: false,
                    headers: ['change24h', 'change1h', 'change7d'],
                    displayType: 'logoWithChanges',
                    showGraphs: true
                    }
                    },
                    {
                    module: "MMM-ImageSlideshow",
                    position: "top_right",
                                  config: {
                    imagePaths: ["modules/MMM-ImageSlideshow/exampleImages"],
                    }
                    },
      
                    		{
      			module: "currentweather",
      			position: "top_left",
      			config: {
      				location: "Dublin",
      				locationID: "2964574",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "0000000000000000000000000"
      			}
      		},
                    {
                    module: "compliments",
                    position: "top_left",
                    config: {
                    compliments: {
                    day_sunny: [
                                "Today is a sunny day",
                                "It's a beautiful day"
                                ],
                    day_cloudy: [
                                 "Today is a cloudy day",
                                 "But its still a beautiful day"
                                 ],
                    cloudy: [
                             "Today is a Cloudy"
                             ],
                    cloudy_wind: [
                                  "Today will be Cloudy & Windy",
                                  "Wrap up Warm"
                                  ],
                    showers: [
                              "Today will have light showers",
                              "Don't forget your umbrella"
                              ],
                    rain: [
                           "Rain, Rain, Go Away",
                           "Don't forget your umbrella"
                           ],
                    thunderstorm: [
                                   "Forcast shows Thunder and Lightning today",
                                   "Stay indoors if possible"
                                   ],
                    snow: [
                           "Forcast for Snow today",
                           "Snowball battle!"
                           ],
                    fog: [
                          "Fog Warning",
                          "Be careful out there, it's going to be VERY foggy this morning"
                          ],
                    night_clear: [
                                  "Beautiful clear night sky",
                                  "Might see some stars"
                                  ],
                    night_cloudy: [
                                   "Tonight will be cloudy"
                                   ],
                    night_showers: [
                                    "Light Showers tonight",
                                    "Stay in and light the fire"
                                    ],
                    night_rain: [
                                 "Forcast for rain",
                                 "Light the fire & listen to the rain on the window"
                                 ],
                    night_thunderstorm: [
                                         "Forcast shows Thunder and Lightning tonight",
                                         "Stay indoors if possible"
                                         ],
                    night_snow: [
                                 "Forcast for Snow tonight",
                                 "Wrap up warm & lets build a snow man"
                                 ],
                    night_alt_cloudy_windy: [
                                             "Forcast Rain, Cloud & Wind",
                                             "Lets just stay in and pull the curtains"
                                             ],
                    }
                    }
                    
                    },
      		{
      			module: "weatherforecast",
      			position: "top_left",
      			header: "Weather Forecast",
      			config: {
      				location: "Dublin",
      				locationID: "2964574",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "0000000000000000000000"
      			}
      		},
      
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      					{
      						title: "RTE News",
      						url: "https://www.independent.ie/irish-news/rss/"
      					}
      
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      Mykle1M 1 Reply Last reply Reply Quote 0
      • Mykle1M Offline
        Mykle1 Project Sponsor Module Developer @paddyhughes
        last edited by Mykle1

        @paddyhughes said in 3rd party Module Image Slideshow options Configuration Help:

        Should i be leaving the …

        No.

        Add config options according to the readme. Here is how you would add fixedImageHeight

         {
                       module: "MMM-ImageSlideshow",
                       position: "top_right",
                       config: {
                          imagePaths: ["modules/MMM-ImageSlideshow/exampleImages"],
                            fixedImageHeight: 300,
                      }
                     },
        

        Create a working config
        How to add modules

        P 1 Reply Last reply Reply Quote 0
        • P Offline
          paddyhughes @Mykle1
          last edited by

          @Mykle1 Thanks Mykle for the help

          1 Reply Last reply Reply Quote 0

          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

          With your input, this post could be even better 💗

          Register Login
          • 1 / 1
          • First post
            Last post
          Enjoying MagicMirror? Please consider a donation!
          MagicMirror created by Michael Teeuw.
          Forum managed by Sam, technical setup by Karsten.
          This forum is using NodeBB as its core | Contributors
          Contact | Privacy Policy