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.

    MM as rolling picture frame

    Scheduled Pinned Locked Moved Development
    21 Posts 8 Posters 3.9k Views 9 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.
    • BKeyportB Offline
      BKeyport Module Developer
      last edited by

      here’s how I did it.

      1. Set up SAMBA on the pi, and include a mapping to your photos drive (I wouldn’t recommend keeping them locally)

      2. magic mirror’s config, using MMM-Backgroundslideshow

      /* Magic Mirror Config by Brendan Keyport. */
      /* Office - Certificate Display */
      var config = {
      	address: "0.0.0.0",
      	port: 8082,  // port is 8082 as I use a server/client style setup. 
      	ipWhitelist: [], 
      	language: "en",
      	timeFormat: 12,
      	units: "imperial",
      	//logLevel: ["INFO", "LOG", "WARN", "ERROR", "DEBUG"],
      	customCss: "css/custom3.css",
      	modules:
      	 [
      		{
          		module: 'MMM-BackgroundSlideshow',
          		position: 'fullscreen_below',
          		config: {
            			imagePaths: ['<path to shared folder>'],
            			transitionImages: true,
            			randomizeImageOrder: true,
            			showAllImagesBeforeRestart: true,
            			//transitionSpeed: 0,
            			gradient: [0],
            			horizontalGradient: [0],
            			backgroundSize: "contain"
        			 }
        		}
      /*************** DO NOT EDIT BELOW ***************/
      	]
      };
      
      if (typeof module !== "undefined") {
      	module.exports = config;
      }
      

      Easy as Pi.

      The "E" in "Javascript" stands for "Easy"

      1 Reply Last reply Reply Quote 1
      • 1
      • 2
      • 3
      • 3 / 3
      • 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