/MMM-CatFacts

MagicMirrorModule (MMM) for streaming random cat facts on your MagicMirror

Primary LanguageJavaScriptMIT LicenseMIT

Module: MMM-CatFacts

Just a little simple plugin for MagicMirror to access the API of CatFacts as a stream for your mirror.

Screenshot

Installation

In your terminal, go to your MagicMirror's Module folder:

cd ~/MagicMirror/modules

Clone this repository:

git clone https://github.com/sebastianwindeck/MMM-CatFacts.git

Configure the module in your config.js file.

Using the module

To use this module, add it to the modules array in the config/config.js file:

modules: 
[
	{
		module: 'MMM-CatFacts',
		position: 'fullscreen_above',
		config: { // See 'Configuration options' for more information.
			title: "CatFacts",
			updateInterval: 300 * 1000, // every 300 seconds
			fadeSpeed: 4 * 1000, // four seconds
			},
	}
]

Configuration options

The following property can be configured:

Option Description
updateInterval Defines the time of one fact in milliseconds.
Default value: 300 * 1000
fadeSpeed Defines the speed of fading from one fact to another.
Default value: 4 * 1000