This is a module for the MagicMirror².
MMM-LesJoiesDuCode provides the last posts from Les Joies Du Code, or TheCodingLove (The english version).
To install, clone this repo into ~/MagicMirror/modules
directory. Then move in the folder and install required libraries
cd ~/MagicMirror/modules
git clone https://github.com/Tomadelostacos/MMM-LesJoiesDuCode
cd MMM-LesJoiesDuCode
npm install
To use this module, add the following configuration block to the modules array in the config/config.js
file:
var config = {
modules: [
{
module: "MMM-LesJoiesDuCode",
position: "top_center",
config: {
updateInterval: 3600000,
rotateInterval: 60000,
grayscale: true,
language: "fr"
}
}
]
}
Option | Description |
---|---|
updateInterval |
Optional How frequently you want it to update (in ms). By default: One hour |
rotateInterval |
Optional Rotate time between each GIFs (in ms). By default: 60 secs |
grayscale |
Optional Makes all GIFs black and white (Looks better i think). By default: true |
language |
Optional "fr" for French, and "en" for English By default: "fr" |