MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. strawberry 3.141
    3. Best
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 3
    • Followers 35
    • Topics 30
    • Posts 1,700
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: MMM-TTS

      @alexyak still in development was working most of the time on different modules

      [card:fewieden/MMM-voice]

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Copyright of modul?

      @schmucke here you go https://github.com/Ultimatum22/MMM-RandomBackground/blob/master/LICENSE

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Soccer - Standings, Schedules and Top Scorers

      @Henrik sorry I dont plan to add new feature to it, but feel free to send a pull request

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: For the life of me

      @Mykle1 he’s using the fontawesome class fa-ul, which has set a margin-left to (30em / 14)

      .MMM-NetworkScanner .fa-ul {
        margin-left: 0px;
      }
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-TTS

      voice recognition and installer are finished, but need to build the module itself

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Adding a jQuery Module

      @NiviJah i think the document ready is fired before the modules are loaded (didn’t test it) there is a broadcast of the core called DOM_OBJECTS_CREATED

      if you’re using console.log or Log.info it will be in the electron console, you can see the console by starting the mirror via npm start dev

      electron is based on chromium prefix would be -webkit

      If you tell for what you want to use jquery, we can help you to do it in vanilla javascript

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-OlympicGames

      @iwaldrum sadly the api doesnt exist anymore, i will have a look after the olympic games have started for a new one

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: absolute date in calendar module

      @qqqqqqqq with the current implementation this is the expected behaviour

      } else if (event.startDate - now < 2 * oneDay && event.startDate - now > 0) {
        if (this.translate("DAYAFTERTOMORROW") !== "DAYAFTERTOMORROW") {
          timeWrapper.innerHTML = this.capFirst(this.translate("DAYAFTERTOMORROW"));
        } else {
          timeWrapper.innerHTML = this.capFirst(moment(event.startDate, "x").fromNow());
        }
      }
      

      it will be always relative

      EDIT: this is only for fullday events

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Motion Detector

      can you guys try sudo modprobe bcm2835-v4l2 in the console before starting the mirror

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Mobile app (bachelor thesis)

      @1m2 if you want to, i can help via a remote desktop session

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      Fixed issues reported (shows NFL undefined 2017)

      [card:fewieden/MMM-NFL]

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Sending notification from MMM-Remote-Control to MMM-ProfileSwitcher

      @tismepaulo thats a diffenrent use case the example shown in your link is for using inside a module and not as a http request, so therefore you need the quotes

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-NetworkScanner

      @desq are you sure you did this step?

      cd ~/
      sudo apt-get install arp-scan   
      
      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Please **review** my code, since I lack experience - mmm_velib, A module for bike sharing schemes in Europe

      @poutr in thefetcher you still name the functions like news, would be better to name it something with bike
      the module js has unused methods like capitalizeFirstLetter and getTranslations, you can remove them completely and you could shorten your switch case to something like:

      
      this.stations = {
        PARIS: "Velib'",
        LYON: "Vélo'v",
        MULHOUSE: "VéloCité",
        BESANCON: "VéloCité",
        MARSEILLE: "Le vélo",
        TOULOUSE: "VélôToulouse",
        ROUEN: "Cy'clic",
        AMIENS: "Velib",
        NANTES: "Bicloo",
        NANCY: "vélOstan'lib",
        "CERGY-PONTOISE": "VélO2",
        "PLAINE-COMMUNE": "Velcom",
        CRETEIL: "Cristolib"
      };
      
      
      var marque = "Cyclocity";
      var contractName = this.stationsData[0].contract_name.toUpperCase();
      if(this.stations.hasOwnProperty(contractName)){
        marque = contractName;
      }
      
      
      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Soccer - Standings, Schedules and Top Scorers

      @evroom well we had problems in v1 already that logos were taken down due to copyrights and I sent the api owner updated links, that were never added, so I don’t think that it will come back in v2. For the same reason I also don’t want to host the files on github. I think mostly the german league was the problem, why I added a logic to overwrite broken image links from the api.

      It looked like this:

      {
      		'CLUBNAME': 'https://CLUBLOGO.svg'
          },
      

      if you want to start collecting the logo links in an object where the key is the club name then i can add them to my list. But I don’t have the time to do so myself.

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Alignment with module "random_quotes"

      @qqqqqqqq because the module gets stretched to the width of the widest module in a region, to fix that, you can manually set the width for the module in custom.css

      .MMM-SystemStats {
        width: 200px;
      }
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-voice

      @daveyg_71 i had this experience couple of weeks ago, what helped in my case was shutdown the rpi switch the microphone into another usb slot an restart the pi, then run the command cat /proc/asound/cards to get the same output as in the installer. Sometimes I had to do it a few times until it worked again. But since two months I didn’t had tis issue again.

      @Nonamexp Glad you could fix your issue

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: Mobile app (bachelor thesis)

      @Beh thats not related to my moduel run npm install in mmm-remotecontrol /home/pi/MagicMirror/modules/MMM-Remote-Control/node_helper.js:15:20

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      There are several options (good and bad ones), but I’m busy. Therefore I will wait at least until this weekend, before I take an action here. Getting a new api most of the times also means rewriting most of the module which is time intensive. Maybe there are also volunteers.

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Get back to desktop ?

      @johnnyboy the mouse is hidden by MagicMirror, try to use alt+tab to switch between applications

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • 1
    • 2
    • 12
    • 13
    • 14
    • 15
    • 16
    • 26
    • 27
    • 14 / 27