MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. lavolp3
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 0
    • Followers 11
    • Topics 38
    • Posts 892
    • Groups 3

    Posts

    Recent Best Controversial
    • RE: MMM-SoccerLiveScore

      I have added a new feature to the module, it is not released yet on the master branch but it is available from a development branch here:
      https://github.com/0m4r/MMM-SoccerLiveScore/tree/feat/match-details

      It is now possible to show the goal scorers within the standings by settings “showDetails: true”.
      The scorers are shown right below the game row and they will scroll from right-to-left.

      Let me know what do you think!

      What I think?
      GREAT I think!!

      Now for the problem. There are two very good soccer modules now each with its own advantages.
      MMM-soccer and MMM-SoccerLiveScore.
      Yours has one major advantage which is the API.

      A shame that they are not one module.

      posted in Sport
      lavolp3L
      lavolp3
    • RE: MMM-TelegramBot : Control MM on Telegram

      @sdetweil said in MMM-TelegramBot : Control MM on Telegram:

      @lavolp3 @bugsounet has taken over quite a few of Sean’s modules.

      I know. No problem for me as long as the modules get troubleshooting support on this forum or at least on github. Which I don’t think they do anymore.

      posted in System
      lavolp3L
      lavolp3
    • RE: MMM-TelegramBot : Control MM on Telegram

      @bugsounet am I wrong? It’s a great module as a lot of the other ones @Sean has established. Happy for any support you can give to the people here.

      posted in System
      lavolp3L
      lavolp3
    • RE: QR Code automation in Calendar

      @lavolp3 Ah yeah here it is.
      https://github.com/corona-warn-app/cwa-event-qr-code/blob/main/README.md#usage-in-nodejs

      posted in Feature Requests
      lavolp3L
      lavolp3
    • RE: QR Code automation in Calendar

      @slevin7 You could try to use the notification function to use the calendar events in another module. The calendar can broadcast the events and yuor own module can fetch it via the notificationReceived-function.
      Then you would still need a link to the CWA platform to create the correct QR codes from that.
      Maybe there’s already some kind of npm module?

      posted in Feature Requests
      lavolp3L
      lavolp3
    • RE: QR Code automation in Calendar

      @slevin7 I think I don’t understand. The purpose of the qr codes is for restaurants or meeting places to create ONE code per appointment that anyone else can scan with their app. Or isn’t it?
      Do you want to create QR codes for other people to scan when they visit the place where the mirror is?

      posted in Feature Requests
      lavolp3L
      lavolp3
    • RE: QR Code automation in Calendar

      @slevin7 I think that would go beyond the scope of the calendar module.
      You would need to fetch the QR code from some CWA API somehow. Is that even possible?

      I’d rather create an own module showing QR codes for the next appointments.

      posted in Feature Requests
      lavolp3L
      lavolp3
    • RE: MMM-TelegramBot : Control MM on Telegram

      I’m astonished by the power of this module and the telegram bot. I am using it to send messages and pictures to the mirror. And it is so much fun, especially for the kids.

      What I am missing is:
      can the last messages of the chat be loaded at startup? Does anyone know?
      They do not in my case.

      It’s a shame that there’s apparently no support from the owner anymore here, so I might decide to work with a fork and publish it here again to have a support and troubleshooting base on this forum again.

      posted in System
      lavolp3L
      lavolp3
    • RE: MMM-TelegramBot : Control MM on Telegram

      @oberfragger I’ve had a few issues getting i to work as well but eventually it works. Rebooted the RasPi on the way so that might help although I doubt it.
      And don’t forget to include your chatID as descripbed in the README.

      I think the error is not necessarily the problem. I got that as well when starting the mirror on the laptop as well, so having two front-end instances running. Module still worked

      posted in System
      lavolp3L
      lavolp3
    • RE: 'Official' recommended node.js version for MM?

      @karsten13 @administrator @sdetweil I have v15.12.0 installed and works like a charm

      posted in General Discussion
      lavolp3L
      lavolp3
    • RE: Touchscreen Mirror Smart Home controller

      @mozaku Have you had a look at MMM-Touch? It might be a way of giving other modules touch interaction.

      I’ve given a few modules touch support and I’m working on more of them. E.g. MMM-Keyboard already has, MMM-AVStock will have touch support. I’d rather keep that function inside the modules.
      Not sure how your other apporach would look but I’m not too fond of using iframes. Would rather setup a proper smarthome module.
      What are you trying to integrate for your smarthome appliance?

      posted in General Discussion
      lavolp3L
      lavolp3
    • RE: MMM-PaprikaMenu: Increase Font Size

      @fabian2
      have a look into the MMM-PaprikaMenu.css, then find out the respective font sizes.
      In this case there’s e.g.

      .MMM-PaprikaMenu table.menu {
        font-size: 17px;
        line-height: 1;
        border-collapse: collapse;
        table-layout: fixed;
        width: 100%;
      }
      .MMM-PaprikaMenu .menu .date {
        font-size: 14px;
      }
      
      .MMM-PaprikaMenu .menu .meal {
        font-size: 17px;
        text-overflow: ellipsis;
        overflow: hidden;
      }
      
      .MMM-PaprikaMenu .menu .today .date {
        font-size: 17px;
      }
      
      .MMM-PaprikaMenu .menu .today .meal {
        color: #FFF;
        font-size: 24px;
      }
      

      Not ure if I have all.

      You can now

      1. comment the font-size lines e.g. with a # in front of them, so they adapt to MagicMirror font sizes
      2. copy them to custom.css and adjust font sizes.

      Font size, like all css properties are interpreted top to down, so if you give the module(or the .MMM-PaprikaMenu class) a font-size, the property will be overwritten by the same property of every child element (e.g. by the font-size of .MMM-PaprikaMenu .menu .date).

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Exact matches for phrases in config.js?

      @tippon The reason is that the .indexOf()function searches a string for a character pattern, not for a word.
      You could try to include spaces, have it search for 'live ' and/or ' live'

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: MMM-Spotify

      @skuethe said in MMM-Spotify:

      what adjustments did you do to the picture and text sizes? This is currently still an open topic on my side - so if it is some general improvement for the module feel free to also create a PR for that

      My suggestions , generally as well as for mini mode:

      • font sizes are hardcoded here, I would rather use the MM classes as reference from main.css. Meaning: giving the module and sub-elements a class “small”, “xsmall” by including the config option classes. I have done that already and works well.
      • adjustable cover size.
      • option to hide module when nothing is played
      • spotify label small and more dimmed (like in MMM-NowPlayingOnSpotify

      All of the above is not difficult to manage I guess.

      A problem with the module is in my point of view the coding. It’s difficult for me to adept to sean’s style, e.g. leaving semicola completely out, indenting only with 2 spaces. But tha can be managed of course

      Let me know what you like to see as PR

      posted in Entertainment
      lavolp3L
      lavolp3
    • RE: MMM-Spotify

      @lavolp3 said in MMM-Spotify:

      Also, Volume is always at 100% for me. Played from the android app. API issue?

      Confirmed API issue. Spotify API returns volume 100%, which is not the case in the app itself. Unfortunately.
      Am I the only one having this issue?

      posted in Entertainment
      lavolp3L
      lavolp3
    • RE: MMM-Spotify

      @skuethe
      Module looks like this for me know

      d76d05f0-f325-4402-8631-aac257eaa68d-image.png

      width a width of 500.

      I unfortunately don’t know what you exactly mean by “the scrolling title”. Could you elaborate?

      You see it here. I’d need to see the rest of the title. It could scroll. That is already implemented in the minibar I think.

      Also, Volume is always at 100% for me. Played from the android app. API issue?

      posted in Entertainment
      lavolp3L
      lavolp3
    • RE: MMM-Spotify

      @luizcarlosnery Hi @skuethe, first of all: great module.

      I have set style: "mini" in my config which works well. However I have made some adjustments to picture size and text size in custom.css.
      But I’m missing the scrolling title in this mode.

      Also, what happens to minibar mode.
      I understand you plan to remove that?

      I have also corrected one issue resulting in an error if you’re not showing the account name, will send a PR on github for that.

      posted in Entertainment
      lavolp3L
      lavolp3
    • RE: MMM-Scoreboard, screen all black

      @carlslylike1 Interesting. Never experienced this while posting config extracts.

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: MMM-Scoreboard, screen all black

      @carlslylike1 Next time, try to provide the config entry and the two modules around it so we can debug it.
      Also, look into the link in my signature for troubleshooting advice.
      My first troubleshooting action would be

      npm run config:check
      

      and send the resuls here if you don’t understand yourself

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Compliments: RemoteFile Configuration

      @jacktar Here is the underlying function

      	/* complimentFile(callback)
      	 * Retrieve a file from the local filesystem
      	 */
      	complimentFile: function (callback) {
      		var xobj = new XMLHttpRequest(),
      			isRemote = this.config.remoteFile.indexOf("http://") === 0 || this.config.remoteFile.indexOf("https://") === 0,
      			path = isRemote ? this.config.remoteFile : this.file(this.config.remoteFile);
      		xobj.overrideMimeType("application/json");
      		xobj.open("GET", path, true);
      		xobj.onreadystatechange = function () {
      			if (xobj.readyState === 4 && xobj.status === 200) {
      				callback(xobj.responseText);
      			}
      		};
      		xobj.send(null);
      	},
      

      Whenever you use a “http://” or “https://” path it takes the path as you have provided. If not it converts it to an absolute path using the this.file(this.config.remoteFile) method. This method uses the modules directory (like you can see in my post above) and appends the path you have given

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • 1
    • 2
    • 3
    • 4
    • 5
    • 44
    • 45
    • 3 / 45