Skip to content

Latest commit

 

History

History
56 lines (46 loc) · 1.99 KB

README.md

File metadata and controls

56 lines (46 loc) · 1.99 KB

MMM-News-QR

Create a QR-Code of the News which is currently showing in the default Newsfeed Module

Thanks to Evghenii Marinescu for the inspiration of this module and the prework with your Module MMM-QRCode.

Screenshot

Screenshot of QR-code

Setup the Module

Install the module

In your MagicMirror directory:

cd modules
git clone https://github.com/raywo/MMM-NowPlayingOnSpotify.git
cd MMM-NowPlayingOnSpotify
npm install

Configure the module

Config Description
updateType Possible Values are polling, push. Push works only for MagicMirror 2.8+ because this Version has a Broadcast built in. Please make sure your newsfeed moduel has broadcastNewsFeeds activated.
Default Value: push
interval If you set updateType to polling you need to set the interval of get the newsfeed information
Default Value: 2000
animationSpeed Animation Speed between change
Default Value: 2500
colorDark Color of the Code
Default Value: #fff
colorLight Background color
Default Value: #000
imageSize Size of the QR-Code in px
Default Value: 150

Full configuration of the module

{
    module: 'MMM-News-QR',
    position: "bottom_bar",
    config: {
        // possible values (polling, push)
        // push only works with MagicMirror 2.8+ and broadcastNewsFeeds activated
        updateType : 'push',
        // Interval to check the news
        // only needed if updateType is polling
        interval: 2000,
        // Animation between change
        animationSpeed: 2500,
        // Color of the Code
        colorDark: '#fff',
        // Background Color
        colorLight: '#000',
        // Size of the Code
        imageSize: 150
    }
}