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

    Posts

    Recent Best Controversial
    • RE: Limit length of specific modules output

      Set it to center in config.js
      //position: “bottom_bar”,
      position: “bottom_center”,

      posted in Troubleshooting
      T
      TamP
    • RE: Fit background fade to text

      @lavolp3 Thanks for that.
      Out of curiosity I will give it a try

      I have just this minute managed to get what wanted by positioning the module newsfeed by changing it to center instead of bottom bar
      module: “newsfeed”,
      //position: “bottom_bar”,
      position: “bottom_center”,

      and the complimentets I changed to center. Although this is top center, I am happy with that

      posted in Troubleshooting
      T
      TamP
    • RE: GooglePhotos on MagicMirror2

      I followed the following tutorial from youtube
      link text

      posted in Troubleshooting
      T
      TamP
    • Fit background fade to text

      Can anyone help me
      I have a fade, on my compliments background. The text is black.
      The problem is, that the fade is fully across the screen, from side to side. I would like it to fit the length of the compliment text only.
      This is my custom css contents
      body {
      color: #000;
      }

      .dimmed {
      color: #000;
      }

      .normal {
      color: #000;
      }

      .bright {
      color: #000;
      }

      .module.clock {
      background-color:rgba(255,255,255,0.6);
      border-radius:8px;
      padding:8px;
      }

      .module.compliments {
      background-color:rgba(255,255,255,0.6);
      border-radius:8px;
      padding:8px;
      }

      .module.calendar {
      background-color:rgba(255,255,255,0.6);
      border-radius:8px;
      padding:8px;
      }

      .module.newsfeed {
      background-color:rgba(255,255,255,0.6);
      border-radius:8px;
      padding:8px;
      }
      Also, how do I mark a previous post as solved ?

      posted in Troubleshooting
      T
      TamP
    • RE: Remote-Control shows but does not respond

      @Stoffbeuteluwe I had previously tried that to no avail.
      I will give it another look tomorrow

      Fool that I am !!
      Changing to
      // Private Methods
      self.socket = io(“/” + self.moduleName);
      was the fix right enough
      When I initially tried it I added , at the end of the line instead of ;
      I’m kicking myself

      Thanks all

      posted in Troubleshooting
      T
      TamP
    • RE: Remote-Control shows but does not respond

      @Stoffbeuteluwe I had previously tried that to no avail.
      I will give it another look tomorrow

      posted in Troubleshooting
      T
      TamP
    • RE: Remote-Control shows but does not respond

      @TamP As an update.
      From the PC the Remote shows the following
      Power
      Edit view
      Edit config.js
      Updates
      Alert
      MagicMirror2

      Any of the first 5 items do nothing, although some bring up sub menus that also do nothing
      However, clicking the MagicMirror2 button displays the pi and Magic mirror on the PC screen

      I’m stumped !!

      posted in Troubleshooting
      T
      TamP
    • Remote-Control shows but does not respond

      Entering 192.168.0.28:8080/remote.html on my PC brings up the remote screen but none of the items respond. If I click Edit the screen changes to “Loading” then nothing, no matter how long I wait. The Config file is Address: “0.0.0.0”, and the whitelist is []
      The same on my phone
      Any help appreciated

      posted in Troubleshooting
      T
      TamP
    • RE: GooglePhotos on MagicMirror2

      Managed to get it fixed. I had “center” in the config file when should have been “fullscreen_below”

      posted in Troubleshooting
      T
      TamP
    • GooglePhotos on MagicMirror2

      A Pi4 with raspian buster
      I have MagicMirror2 working well except the GooglePhotos module
      The photos display fine, except they are on the right side of the screen from about the middle.
      I have tried a few things in the css file in the GooglePhotos folder but cant see how to fix this
      I want the photos full screen.
      Any help appreciated

      posted in Troubleshooting
      T
      TamP
    • RE: BBC News feed

      @justjim1220 Yes that is what I did and all is OK
      Thanks again

      posted in Utilities
      T
      TamP
    • RE: BBC News feed

      @justjim1220 I tried altering the code as you suggest but unfortunately I am still not seeing the BBC title

      posted in Utilities
      T
      TamP
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      Thanks for that, It does as you say and starts without the playbutton

      posted in Education
      T
      TamP
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      @Mykle1 line 38 is correct but I did a git pull anyway but to no avail

      posted in Education
      T
      TamP
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      When my MagicMirror starts, the ISS module appears, but I have to click a play button on it, to start the app. Is this as should be, or is there a way to get the live stream, when the mirror starts without any interaction.
      Great module though

      posted in Education
      T
      TamP
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      @stacywebb said in MMM-EARTH-Live & MMM-ISS-Live:

      @Mykle1 Two excellent modules.
      Your work is greatly appreciated.
      And I wholeheartedly agree

      posted in Education
      T
      TamP
    • RE: BBC News feed

      Yes isnt it. I try this and it didnt seem to do anything
      Its not a big deal but I just wonder if I had done something wrong

      posted in Utilities
      T
      TamP
    • RE: BBC News feed

      Thanks for that, I have it displayed now, except the title is not showing. This is what I have in the config

      // Newsfeed BBC
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      config: {
      				feeds: [
      					{
      						title: "BBC UK",
      					 	url: "http://feeds.bbci.co.uk/news/uk/rss.xml"
      					},
      
      					{
      						title: "BBC World",
      					    url: "http://feeds.bbci.co.uk/news/world/rss.xml",
      					},
      
      				],
      				showSourceTitle: true,
      				showPublishDate: false,
      				showDescription: true
      			}
      		},
      	]
      
      };
      
      posted in Utilities
      T
      TamP
    • BBC News feed

      I cant seem to find an up to date BBC news feed
      Min is showing news from 3 years ago !!!
      Can anyone help ?

      posted in Utilities
      T
      TamP
    • 1 / 1