MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. MagicMirrorN00b
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    M
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Groups 0

    MagicMirrorN00b

    @MagicMirrorN00b

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    MagicMirrorN00b Unfollow Follow

    Latest posts made by MagicMirrorN00b

    • RE: MMM-News-QR: No QR code displayed

      @sdetweil

      I didn’t realize the position line came right after the module. This solved my issue. Thanks so much!

      posted in Troubleshooting
      M
      MagicMirrorN00b
    • 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!

      posted in Troubleshooting
      M
      MagicMirrorN00b