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

    Posts

    Recent Best Controversial
    • RE: Need assistance with a Background

      @pirateroberts
      Look at mykles signature. There is “how to add modules” which should help you

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Verse Smartmirror

      I don’t really know what makes you angry about it?
      MichMich did not invent smart mirrors. He liked the idea and built his own software. As others said, this forum is about the MagicMirror and DIY (do it yourself). I’m sure there are lots of people who don’t want to build it on their own but purchase a full working solution, and that’s fine.
      Verse Smartmirror is not a fraud, they did not steal intellectual properties. And to be honest, their presentation looks very nice.

      posted in General Discussion
      yawnsY
      yawns
    • RE: Hey Guys, I need help

      Paste your entire code into http://jshint.com

      There seem to be some missing brackets and commas

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: PIR gives black screen

      After running git clone https://github.com/paviro/MMM-PIR-Sensor.git in ~/MagicMirror/modules, did you run

      cd MMM-PIR-Sensor
      npm install
      

      ? The npm install in this directory should have installed onoff as a dependency.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: npm install - electron fails to install

      Your cloned MagicMirror folder resides in /root, but it should be /home/pi

      User pi does not have rights to do much in root folder.

      You are logged in as pi, right?

      Try this please

      cd ~
      git clone https://github.com/MichMich/MagicMirror
      cd ~/MagicMirror
      npm install
      npm start
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Move Module to Side of screen

      @MagicMirrorAid
      Why don’t you place it in top_left then? The same position your clock is in?

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Updating MM (and/or disabling the update available message)
      cd ~/MagicMirror
      git pull
      npm install
      

      Alternatively you can remove this part from your config.js, but then you won’t get any notification about pending updates for MagicMirror or any of the modules

      {
      	module: "updatenotification",
      	position: "top_bar"
      },
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Need help with Config.js!

      You missed 2 or 3 commas in newsfeed module. The comma Charley spotted, and 2 commas after each newsfeed { }

      This is passing jshint without any error.

      
      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       *
       * For more information how you can configurate this file
       * See https://github.com/MichMich/MagicMirror#configuration
       *
       */
      
      var config = {
      	address: "localhost", // Address to listen on, can be:
      	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      	                      // - another specific IPv4/6 to listen on a specific interface
      	                      // - "", "0.0.0.0", "::" to listen on any interface
      	                      // Default, when address config is left out, is "localhost"
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.168.1.5 :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      language: "en",
      	timeFormat: 12,
      	units: "imperial",
      
      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
          module: 'MMM-Remote-Control',
          // uncomment the following line to show the URL of the remote control on the mirror
          position: 'bottom_left'
          // you can hide this module afterwards from the remote control itself
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
      			module: "calendar",
      			header: "Upcoming",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check-o ",
      						url: "xxxx"
      					}
      				]
      			}
      		},
      		{
      			module: "compliments",
      			position: "lower_third",
      			config: {
      							compliments: {
      											anytime: [
      														"Hi there!",
      														"I love you!",
      														"You look great!",
      														"You can do anything!",
      														"Don't forget your keys!"
      											],
      											morning: [
      														"Good morning beautiful!",
      														"Good morning handsome!",
      														"You is an icon",
      														"Enjoy your day!"
      											],
      											afternoon: [
      														"Looking good!",
      														"You look nice!",
      														"Have a good one!"
      											],
      											evening: [
      														"Wow, you look great!",
      														"Good evening!"
      											],
      											rain: [
      														"Stay dry!",
      														"Grab a jacket!"
      											],
      											showers: [
      														"Stay dry!",
      														"Grab a coat!"
      											],
      											day_sunny: [
      														"Suns out, guns out!",
      														"It's sunny! Go to a park!",
      														"It's a beautiful day!"
      											]
      					}
      				}
      		},
      		{
      			module: "currentweather",
      			position: "top_right",
      			config: {
      				location: "Seattle",
      				locationID: "5809844",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "xxxx",
      				roundTemp: "true"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "Seattle",
      				locationID: "5809844",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "xxxx",
      				roundTemp: "true"
      			}
      		},
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      					{
      						title: "New York Times",
      						url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
      					},
      					{
      						title: "Reuters",
      						url: "http://feeds.reuters.com/reuters/topNews"
      					},
      					{
      						title: "Google News",
      						url: "https://news.google.com/news/rss/?ned=us&gl=US&hl=en"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      	]
      
      };
          
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Problem viewing this site on phone

      Yes, I have the same problem. You cannot access the menu by using the button and you cannot swipe from right to left to open the menu as well. I try to raise this with the admins

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: how to remove a forked repo...

      @justjim1220 said in how to remove a forked repo...:

      @mykle1

      If I do this with a forked repo, it won’t delete the original repo, right? just the forked one from my repos???

      Yes, right. I had the same worries in the beginning, but you don’t even have rights to delete someone elses repository.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Magic mirror startup question...

      I took the same approach as @D90
      My background is plain black, almost all elements were removed from taskbar, all icons from desktop removed and I think I even changed colors of taskbar.
      In addition I followed a tutorial to remove most boot up text and display the MagicMirror splash screen instead. Still not “ideal”

      I know there are some people around running an alternative Window manager, but I did not find time to play around with that.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Black screen after MM v2.4.0 update.

      According to another similar thread please set this instead:

      dtoverlay=vc4-fkms-v3d (with an additional f )

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: MagicMirror sleep in 5 minutes

      @mykle1 said in MagicMirror sleep in 5 minutes:

      @matimilko

      Fantastic! Now if you would mark the post that solved your issue. :-)

      I did that on behalf of @matimilko

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Contribute to a module. Volunteers wanted! Easy!

      Sorry, late to the party :)

      n987 Solingen - Germany - CET - Central European Time

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Updated, but 'MMM-EventHorizon' still shows as being behind.

      @richard238 said in Updated, but 'MMM-EventHorizon' still shows as being behind.:

      Please, commit your changes or stash them before you can merge

      If you are sure you did not make any changes, then run this in the MMM-EventHorizon folder:

      git reset --hard
      git pull
      npm install
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: I am stuck need help

      @dcarls91 said in I am stuck need help:

      @yawns thank you for doing that, I’m very new to this, what else do i need to do to the above config file you posted

      Sorry, I did not see your reply. Copy the config I posted, save it as config.js and add your API keys and links to calendars again. Or, to clearly see the changes I made, use this:
      https://www.diffchecker.com/QQhBPpNO

      Left is your config, right is my fixed config.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: CANNOT ADD MODULES

      I prefer jshint.com
      In this case you missed a single comma in line userlon, so it should be:

      		userlat: "47.302604", //MUST HAVE BOTH
      	        userlon: "-122.33621",  //MUST HAVE BOTH
      		zip: "98023"
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Problems with font sizes

      You could try hooking up a usb keyboard to your raspberry (or whatever machine you are using for your magicmirror, and then press CTRL + 0 (zero). Maybe your zoom was active, this shortcut should reset to 100% zoom

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: How do I now get back out of the magic mirror to the terminal?

      Are you working directly on your raspberry (or using vnc)?
      Then press alt + tab to switch to desktop or terminal (if it’s running). Or press ctrl+q in browser

      posted in Troubleshooting
      yawnsY
      yawns
    • 1 / 1