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: Help finding a lcd-controller: LC420WUD-SBG1

      @Krisalexroberts-0
      In fact it is not. There are lots of usecases to reuse displays and there are several companies on ebay (and alibaba and such) selling these controller boards. It is just lacking support for uncommon displays.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Commercial Smart Mirror?

      Hm, this is no real usecase for me. The mirror - at least for me - is a technical and modern way to replace old fashioned paper calendars / schedulers with some addons like weather forecast, traffic jams and public transport delays, without having to use the smartphone.
      I don’t want to browse websites while brushing my teeth or view the latest news while taking a shower :)

      posted in General Discussion
      yawnsY
      yawns
    • RE: Not really a mirror at all - but is really helpful

      @dinkybluebug245

      it looks like this.
      0_1479720459121_Unbenannt.PNG

      If I change it to timeFormat: 'absolute' I see the real date (e.g. November 26th) but still no time.

      posted in Showcase
      yawnsY
      yawns
    • RE: MMM-WorldTides, no output on screen

      @pjkoeleman
      Hi, I haven’t played around with the module for a long time and I don’t have a magic mirror in use currently.
      I will try to take a look into this tomorrow, but I cannot promise.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Music player

      @johnnyboy
      run sudo apt-get autoremove. SUDO says “I’m root” ;)

      posted in General Discussion
      yawnsY
      yawns
    • RE: Not really a mirror at all - but is really helpful

      According to his config on github he uses MMM-WunderGround

      posted in Showcase
      yawnsY
      yawns
    • RE: MMM-WorldTides, no output on screen

      I received a pull request on github which replaced the apiBase. I did not know the standard XMLHttpRequest() can handle https as well. You should be able to git pull on your device to update the version.
      Sure, play around with it and present it. WorldTides was my first module, there is a lot of space for improvement.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Medicine Cabinet For Magic Mirror Frame

      In fact there are several mirror projects using medicine cabinets and similar things.
      I won’t go this route for several reasons.

      1. If you go for the cabinet and still want to use it you have to live with the cabling and the technical components being visible while the cabinet is open.
      2. Cabinets are available in several sizes, but you have to adjust your mirror to the cabinet. If you build the mirror yourself you are free defining sizes.
      3. Users like me want to go for slim cases instead of “thick” cases standing away from the wall.
      4. As you already assumed several users like to build things. It’s not just having/using the mirror, it’s about building everything on your own.

      Of course it is absolutely legit buying a complete case/housing and start from there.

      posted in General Discussion
      yawnsY
      yawns
    • RE: Not really a mirror at all - but is really helpful

      @johnnyboy said in Not really a mirror at all - but is really helpful:

      @yawns
      Cant see picture of his mirror… can you add it again please?

      Thanks

      Done

      posted in Showcase
      yawnsY
      yawns
    • RE: Syntax Error on Mail Module

      @ca035830
      There should be a comma after the ], if I’m not mistaken

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Simple Music Player Module

      Are you talking about this one? https://github.com/masters1222/mm-hide-all

      open a terminal:

      cd ~/MagicMirror/modules
      git clone https://github.com/masters1222/mm-hide-all.git
      
      posted in Entertainment
      yawnsY
      yawns
    • RE: Magic Mirror minus the mirror

      @billp100
      Boolean values and numbers should be written without " or ’

      posted in General Discussion
      yawnsY
      yawns
    • RE: MM is eating all memory and crash!

      @juergschwarz

      Uninstall PiHole. If you search this forum for PiHole you will find two other threads with similar memory issues, both related to PiHole. After removing it the issue was gone.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: MMM-MovieInfo

      @SilentJbob1680
      For some reason they changed the variable containing the path to the image from posterPath to poster_path

      You could change this

      const poster = document.createElement('img');
                  poster.classList.add('poster');
                  poster.src = `https://image.tmdb.org/t/p/w185_and_h278_bestv2/${movie.posterPath}`;
                  wrapper.appendChild(poster);
      

      to this

      const poster = document.createElement('img');
                  poster.classList.add('poster');
                  poster.src = `https://image.tmdb.org/t/p/w185_and_h278_bestv2/${movie.poster_path}`;
                  wrapper.appendChild(poster);
      

      for an immediate fix, or you could wait for strawberry to fix it on github and provide a new version. If you fix it on your own you will need to revert the changes before you can update once strawberry provided the update.

      posted in Entertainment
      yawnsY
      yawns
    • RE: Lock folders?

      One problem I see there is this:
      If you lock down folder access rights, your scripts might fail too and it will be a hassle to get this right. I second “FlatPepsi” … make a backup and let them play

      posted in General Discussion
      yawnsY
      yawns
    • RE: first attempt .. gone wrong :)

      Did you run the installation with sudo? It’s trying to install in /root/MagicMirror and that’s wrong

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: MMM-MovieInfo

      @SilentJbob1680
      So, please open a terminal on your raspberry, change into the ~/MagicMirror/modules/MMM-MovieInfo folder and do git pull to retrieve the update

      posted in Entertainment
      yawnsY
      yawns
    • RE: 7" touchscreen as a alarm clock?

      –> https://forum.magicmirror.builders/topic/695/my-mini-magic-alarm-clock

      posted in General Discussion
      yawnsY
      yawns
    • RE: Need help with internet monitor-module

      Both schlachtkreuzer6 and doubleT are totally right. I tried to change the post with your config, but akismet.com flags this as spam.
      Besides wrong quotes the position of your added module was incorrect.
      Please try this config:

      /* 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",
      port: 8080,
      ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
      
      language: "en",
      timeFormat: 24,
      units: "metric",
      
      modules: [
      	{
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	{
      		module: "clock",
      		position: "top_left"
      	},
      	{
      		module: "calendar",
      		header: "US Holidays",
      		position: "top_left",
      		config: {
      			calendars: [
      				{
      					symbol: "calendar-check-o ",
      					url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
      				}
      			]
      		}
      	},
      	{
      		module: "compliments",
      		position: "lower_third"
      	},
      	{
      		module: "currentweather",
      		position: "top_right",
      		config: {
      			location: "New York",
      			locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "YOUR_OPENWEATHER_API_KEY"
      		}
      	},
      	{
      		module: "weatherforecast",
      		position: "top_right",
      		header: "Weather Forecast",
      		config: {
      			location: "New York",
      			locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "YOUR_OPENWEATHER_API_KEY"
      		}
      	},
      	{
      		module: "newsfeed",
      		position: "bottom_bar",
      		config: {
      			feeds: [
      				{
      					title: "New York Times",
      					url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
      				}
      			],
      			showSourceTitle: true,
      			showPublishDate: true
      		}
      	},
      	{
      		module: "internet-monitor",
      		position: "top_center",
      		header: "Internet Monitor",
      		config: {
      			type: "",
      			maxTime: 20000,
      			updateInterval: 0,
      			verbose: false,
      			displayStrength: true,
      			displaySpeed: true,
      			strengthIconSize: 80,
      			maxGaugeScale: 100,
      			wifiSymbol: {
      				size: 50,
      				fullColor: "#3afc25",
      				almostColor: "#ffff0c",
      				halfColor: "#ff8c00",
      				noneColor: "#ff1111"
      			},
      		},
      	},
      ]
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Just testing. Please ignore.

      Okay, ignoring it :P

      posted in General Discussion
      yawnsY
      yawns
    • 1 / 1