This module for the MagicMirror creates a simple slideshow.
- Navigate to the modules folder in your MagicMirror project
cd ~/MagicMirror/Modules
git clone https://github.com/bryngo/MMM-Slideshow.git
- Add the following into the
modules
section of yourconfig/config.js
file:
{
module: 'MMM-Slideshow',
position: "fullscreen_above",
},
- Additional customization variables can be found in the
defaults
ofMMM-Slideshow.js
(e.g.fadeSpeed
andupdateInterval
).
-
slideshow_style.css
is used to make the images full screen. Additional photo styles can be placed here. -
To add photos, place the photos in the
images
directory. Then, head over toMMM-Slideshow.js
and add the file name(s) in the pictures variable.
pictures: [
"images/slide01.jpg",
"images/slide02.jpg",
"images/slide03.jpg",
"images/slide04.jpg",
"images/slide05.jpg"
...
],