A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
MMM-News-QR: No QR code displayed
-
Hi - relatively new to building magic mirrors here. I am having trouble running this module. I copied the repo into the modules folder, added the configuration to my config file, but when loading it just doesn’t show up. It’s as if the module doesn’t exist. I’m not sure if there’s some installation process needed or not, it seems like some modules need it and some don’t. The repo is here:
https://github.com/nischi/MMM-News-QR
My code for my newsfeed and the QR module are here:
{ module: "newsfeed", position: "top_bar", config: { feeds: [ { title: "New York Times", url: "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml" } ], showSourceTitle: true, showPublishDate: true, broadcastNewsFeeds: true, updateInterval:20000, broadcastNewsUpdates: true } }, { module: 'MMM-News-QR', 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', position:'top_left', // Size of the Code imageSize: 150 } },
Any help would be greatly appreciated!
-
@magicmirrorn00b need a position after module: line
where do.u want qr to appear
-
I didn’t realize the position line came right after the module. This solved my issue. Thanks so much!