MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. yawns
    3. Posts
    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: Hurricane status?

      Hm, wunderground provides hurricane data. That should not be too complicated on first sight.

      posted in Requests
      yawnsY
      yawns
    • RE: raspberry-pi alternatives

      That kind of depends what you intend to do. Basically you can use every box (spare laptop, full workstation, small devices like raspberry, …) running Windows, Linux or MacOS.
      However the raspberry is strong enough for most users, so I’m curious why you are asking for a stronger alternative.
      Don’t be to anxious about Linux, once you setup your magicmirror you don’t have to twiddle around with Linux all day long.

      posted in Hardware
      yawnsY
      yawns
    • RE: Mobile app (bachelor thesis)

      I just completed it

      posted in Development
      yawnsY
      yawns
    • MMM-RNV

      Description:

      It monitors a given station in the RNV traffic network and shows the 10 upcoming departures with destination, type and delay. It also shows additional information if provided by the vendor.

      Screenshots:

      0_1478724161007_mmm-rnv.PNG

      Download:

      [card:yawnsde/MMM-RNV]


      Version 1.0.0

      • initial release

      Version 1.1.0

      • some more error handling
      • added some tweaks in case the start time is after midnight, then the parsing failed
      • added the alert ticker if some alert is present
      • updated the readme
      • removed odd default value for stationID from the module
      posted in Transport
      yawnsY
      yawns
    • RE: Modul Plug in RNV Abfrage

      @Guschdl
      Hi, glad you like it. Please let me know if anything should be changed.

      I updated the module.

      • some more error handling
      • added some tweaks in case the start time is after midnight, then the parsing failed
      • added the alert ticker if some alert is present
      • updated the readme
      • removed odd default value for stationID from the module

      Please run a “git pull” inside the MMM-RNV directory to receive the update. Please update your config file in case you left out the stationID.

      Maybe @paviro or another moderator could mark this as resolved?

      posted in Requests
      yawnsY
      yawns
    • RE: Modul Plug in RNV Abfrage

      @Guschdl
      All right, I’m almost done. The module will need some tweaking and some cleanup, but you can use it. I will provide some installation and configuration instructions this evening (my wife is working long this evening :D ). Feel free to provide feedback and improvements.

      [card:yawnsde/MMM-RNV]

      posted in Requests
      yawnsY
      yawns
    • RE: Where to get (cheap) acrylic mirror from in Germany

      @Steff
      No need to apologize, this is just a fun thing, we all have our real live and more important stuff to do.
      Did they ship the mirror or did you have to pick it up your self?

      posted in Hardware
      yawnsY
      yawns
    • RE: Help please with refresh of webpage

      Take A look here: https://forum.magicmirror.builders/topic/946/refresh-hello-world-module/3

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: MMM-Temperature/Humidity Module (DHT11, DHT22 and AM2302 sensors.)

      Right. I have the 4 pin version and this requires a resistor

      posted in Utilities
      yawnsY
      yawns
    • RE: MMM-Temperature/Humidity Module (DHT11, DHT22 and AM2302 sensors.)

      @psk
      That depends on the sensor you buy. If you use a sensor with 4 pins you need the resistor. If you use the sensor with 3 pins mounted to a circuit board you don’t need the resistor.

      posted in Utilities
      yawnsY
      yawns
    • RE: Modul Plug in RNV Abfrage

      Ok, understood. I don’t know if I find the time tomorrow. Maybe I have to wait until Wednesday to continue with the module. I keep you posted

      posted in Requests
      yawnsY
      yawns
    • RE: Medos Bathroom Mirror

      Haha, sounds like my wife.

      posted in Show your Mirror
      yawnsY
      yawns
    • RE: Error found: Error: Module version mismatch. Expected 50, got 46.

      please run npm list, which electron version are you running?

      If it is 1.4 then please run

      npm rebuild --runtime=electron --target=1.4.0 --disturl=https://atom.io/download/atom-shell --build-from-source

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Error found: Error: Module version mismatch. Expected 50, got 46.

      Open a terminal, change into the MMM-Button folder and run this:
      npm rebuild --runtime=electron --target=1.3.4 --disturl=https://atom.io/download/atom-shell --abi=50

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Modul Plug in RNV Abfrage

      The vendor provided an api-key really fast and sending queries to their server is somehow simple. To go on I need a more detailed description of what you want to see on your mirror.

      posted in Requests
      yawnsY
      yawns
    • RE: Refresh Hello World module

      Hi,

      simplest way is to create a new module. So you don’t run into update problems in the future if someone changes the original hello world module.

      Copy the whole helloworld folder from modules/default/ to modules/ and rename it to something different, lets say “mmm-iframe”.

      1. Rename the folder itself to mmm-iframe
      2. Rename the helloworld.js file to mmm-iframe.js

      Then overwrite the content of mmm-iframe.js with this:

      /* global Module */
      
      /* Magic Mirror
       * Module: mmm-iframe
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      Module.register("mmm-iframe",{
      
      	// Default module config.
      	defaults: {
      		text: "Hello World!",
      		animationSpeed: 1000,
      	},
      
      	start: function() {
      		Log.info('Starting module: ' + this.name);
      		var self = this;
      		setInterval(function() {
      			self.updateDom();
      		}, this.config.animationSpeed);
      
      	},
      
      	// Override dom generator.
      	getDom: function() {
      		var wrapper = document.createElement("div");
      		wrapper.innerHTML = this.config.text;
      		return wrapper;
      	}
      });
      
      1. Now update your config file and replace the helloworld entry to load the mmm-iframe module instead.

      I did not test this, I don’t have a magicmirror available currently, but this should get you going.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Black screen for copy of hellowold module

      So you created a copy of the helloworld module and moved it to modules/Titus?
      Then you renamed helloworld.js to Titus.js?
      Did you modify Titus.js and changed this line
      javascript Module.register("helloworld",{
      to
      javascript Module.register("Titus",{
      to tell MagicMirror there is a new module called Titus?

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Medos Bathroom Mirror

      Good job. Very detailed description and the end result is very nice!

      posted in Show your Mirror
      yawnsY
      yawns
    • RE: MMM-Tube-Status (London Underground)

      @djbenny07
      enter the MMM-Tube-Status folder and run git pull, that should pull all changes from github
      If you run the clone command again it will tell you the target directory already exists

      posted in Transport
      yawnsY
      yawns
    • RE: Trouble changing to 12 hour time and to Fahrenheit.

      Looks fine to me except for the last line. The ’ ’ around undefined are not the right ones. But that could be a copy and paste problem. I don’t have a computer with MagicMirror currently, so I can’t test your config file right now.

      posted in Troubleshooting
      yawnsY
      yawns
    • 1
    • 2
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 44 / 49