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: Update Font Awesome to version 5?

      @zwirbel move it above the body { line

      posted in Feature Requests
      yawnsY
      yawns
    • RE: Default Module: Weather Forecast

      Edit:
      Oh, the developer branch has this option. If you are on the developer branch, then maybe there is no rain at that day/days?

      if (this.config.showRainAmount) {
      				var rainCell = document.createElement("td");
      				if (isNaN(forecast.rain)) {
      					rainCell.innerHTML = "";
      				} else {
      					rainCell.innerHTML = forecast.rain + " mm";
      				}
      				rainCell.className = "align-right bright rain";
      				row.appendChild(rainCell);
      			}
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: remoteFile in compliments module

      @schlachtkreuzer6
      you are in your home directory, not in your MagicMirror folder.
      Run cd MagicMirror first

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: List Good Monitors To Build With

      @Timeeee said in List Good Monitors To Build With:

      HDMI CEC

      using https://github.com/Pulse-Eight/libcec indeed works fine, I use the same thing on my pi. It is not yet connected to the PIR sensor, so I cannot provide a out-of-the-box solution for you.
      One thing you should keep in mind is the “boot delay” the screen needs when you resume out of standby.

      posted in Hardware
      yawnsY
      yawns
    • RE: Image Galery

      @fragator said in Image Galery:

      0_1480979655148_thumbnail_IMG_0109.jpg
      @yawns

      Works perfectly, thanks for the info.
      I also just want to enlarge the image, what and the code for that.

      Looks really cool. I did not anticipate that.

      posted in Requests
      yawnsY
      yawns
    • RE: MagicMirror is voted number 1 in the MagPi Top 50!

      whoop whoop
      Congratulations

      posted in Announcements
      yawnsY
      yawns
    • RE: Mistake in the config.js and i dont no

      Okay, dann eben auf deutsch.
      Ich habe deine config Datei komplett kopiert und bei mir eingefügt. Das funktioniert, also kopiere bitte das hier drunter komplett und ersetze deine config Datei dadurch.

      var config = {
      	port: 8080,
      	
      	language: 'de',
      	timeFormat: 24,
      	units: 'metric',
      
      	modules: [
      		{
      			module: 'alert',
      		},
      		{
      			module: 'clock',
      			position: 'top_left'
      		},
      		{
      			module: 'compliments',
      			position: 'lower_third'
      		},
      		{
      			module: 'currentweather',
      			position: 'top_right',
      			config: {
      				location: 'New York',
      				locationID: '',  //ID from http://www.openweathermap.org
      				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
      				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: "MMM-Fuel",
      			position: "top_left",
      			config: {
      				api_key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      				lat: 52.518611,
      				lng: 13.408333,
      				types: ["diesel"],
      			}                
      		 },
      
      ]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      
      

      Hier fehlen natürlich die Keys für Currentweather/Forecast und MMM-Fuel, aber ich sehe Ausgaben auf dem Bildschirm.
      Hast du MMM-Fuel auch als Modul bei dir installiert? Oder hast du nur die Einträge in der config Datei gesetzt? Wenn ich nur die Einträge setze, sehe ich einen schwarzen Bildschirm. Wenn ich aber das Modul installiere, dann funktioniert es. Öffne eine Konsole auf dem Raspberry oder nutze eine SSH shell, um auf dem Raspberry zu arbeiten:

      cd ~/MagicMirror/modules
      git clone https://github.com/fewieden/MMM-Fuel.git
      cd MMM-Fuel
      npm install
      

      Danach den MagicMirror neu starten und testen.
      Grüße aus Solingen, Stefan

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: remoteFile in compliments module

      @DvdEnde
      no, this information is wrong. And you should avoid modifying module files.
      Try what I have written above, it is working fine

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: [ORDER CLOSED] Two way mirror order in Germany

      @lolobyte said in [ORDER CLOSED] Two way mirror order in Germany:

      That’s all for Heilbronn Team?

      Haha, I can smell your fear :)

      posted in Hardware
      yawnsY
      yawns
    • RE: Looking for an image carousel

      Where would you like to store these pictures? There already is an instagram module which collects pictures and displays them in a random order, one by one. In addition there is one for Flickr, and one for independant servers.

      MMM-Instagram
      MMM-Instagram Fork
      MMM-Flickr
      MMM-RandomPhoto

      posted in Requests
      yawnsY
      yawns
    • 1
    • 2
    • 12
    • 13
    • 14
    • 15
    • 16
    • 31
    • 32
    • 14 / 32