@zwirbel move it above the body { line
Read the statement by Michael Teeuw here.
Posts
-
RE: Update Font Awesome to version 5?
-
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); } -
RE: remoteFile in compliments module
@schlachtkreuzer6
you are in your home directory, not in your MagicMirror folder.
Runcd MagicMirrorfirst -
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. -
RE: Image Galery
@fragator said in Image Galery:
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.
-
RE: MagicMirror is voted number 1 in the MagPi Top 50!
whoop whoop
Congratulations -
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 installDanach den MagicMirror neu starten und testen.
Grüße aus Solingen, Stefan -
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 -
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 :)
-
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.