@lolobyte
Are you happy with these 3rd party video controllers? I intend to buy one for my screen as well
Read the statement by Michael Teeuw here.
Posts
-
RE: disable NO signal message
-
RE: Compliments - remoteFile - How to?!
I never played around with this, but the sample file content in the readme looks different.
https://github.com/MichMich/MagicMirror/blob/master/modules/default/compliments/README.md
-
RE: Module scheduling
The module readme for MagicMirror shows this:
suspend() When a module is hidden (using the module.hide() method), the suspend() method will be called. By subclassing this method you can perform tasks like halting the update timers.I am not sure if this was added with the newest update, but this should be added to modules to pause updates/requests.
-
RE: My Mirror
- Is your screen that small or did you add a big margin-right/margin-left by intention?
- You used a mirror foil, no “real” mirror glas, right? At least it looks like there are some small bubbles.
- In my opinion there is too much information on screen, especially in the middle which is “ruining” the mirror aspect.
-
RE: Need help for MMM-Carousel
The way you put it overrides ignoreModules everytime. You need to define it as an array:
{ module: 'MMM-Carousel', config: { ignoreModules: [ 'alert', 'MMM-iCloud-Client', 'MMM-DWD-WarnWeather', 'calendar', 'compliments', 'MMM-swisstransport', 'clock' ], } }, -
RE: MMM-PIR-Sensor tuning
Yes, that is possible. When I had to run this command last time I was using 1.4.0 …
Just give it a try. Worst case is you have to delete the MMM-PIR-Sensor folder and git clone it again. -
RE: Complete translation possible?
@Foxi
Hi,looking at the moment.js documentation the locale code for Luxembourgish is “lb” instead of “lu”.
I just tried on my test laptop and now “Dienstag” (Tuesday) turned to “Dënschdeg”.Best, Stefan
-
RE: [ORDER CLOSED] Two way mirror order in Germany
@Goldjunge_Chriz
You are absolutely right!
I’m still in with the mirror glass you offer ;) I’m just interested in alternatives. -
RE: MMM-PIR-Sensor tuning
- please run
npm listand find out your version number of electron - change into the MMM-PIR-Sensor folder
cd ~/MagicMirror/modules/MMM-PIR-Sensor - run
npm rebuild --runtime=electron --target=ELECTRONVERSION --disturl=https://atom.io/download/atom-shell --abi=50and replace ELECTRONVERSION with the version number you found in step 1
- please run
-
RE: [ORDER CLOSED] Two way mirror order in Germany
@Labzz
Do you have some pictures of the glass on a working mirror? -
RE: Module scheduling
@ChrisLaurie
Good question indeed. Maybe @ianperrin can enlighten us :) -
RE: MagicMirror v2.1.0 Update error
@schlachtkreuzer6
The same approach. Add whatever you want to add, but do not modify the JavaScript module files.
Create a compliments file or add them to your config file. -
RE: MagicMirror v2.1.0 Update error
@schlachtkreuzer6 said in MagicMirror v2.1.0 Update error:
@yawns so how do i change the comments if i should´t change the comments.js ? ^^
I guess you are talking about compliments.js ?
The readme clearly states how to add own compliments: https://github.com/MichMich/MagicMirror/blob/master/modules/default/compliments/README.md -
RE: MagicMirror v2.1.0 Update error
So you modified the original files which you should not do.
Look at the first answer here to see your possibilities: http://stackoverflow.com/questions/15745045/how-do-i-resolve-git-saying-commit-your-changes-or-stash-them-before-you-can-me
-
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: 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: Calendar modification
I went to the web calendar on my computer (not on a smartphone or tablet!), went to settings (gear symbol top right) and clicked on options. The you see Publish Calendar and you are able to create the ics link.
-
RE: Calendar modification
@CCoates said in Calendar modification:
Anyone had any luck with Outlook 365 or Iphone calendars?
I use my outlook.com calendar without any problems