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

    pikasso

    @pikasso

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    pikasso Unfollow Follow

    Latest posts made by pikasso

    • RE: MMM-Soccer - Standings, Schedules and Top Scorers

      Hello

      Successfully installed a Smart Mirror. All went with some struggles but I managed to make it go then improve step by step to my goal…

      With the initial MMM-soccer installed, an API key and all perfectly working, I tried to install the branch 42 following the commands you shared… git to extract-api-provider

      cd ~/MagicMirror/modules/MMM-soccer
      git fetch
      git checkout feature/extract-api-provider
      git pull
      npm i --production 
      

      While all was good with inital version once updated to v3, I can see the caroussel but it’s empty either if I use the default configuration here

      Module loaded corretly but there seems to be no data when the caroussel switches. Bellow shows a message “No data available”.

      pi@smartmirror:~/MagicMirror/modules/MMM-soccer $ git pull
      Déjà à jour.
      pi@smartmirror:~/MagicMirror/modules/MMM-soccer $ git status
      Sur la branche feature/extract-api-provider
      Votre branche est à jour avec 'origin/feature/extract-api-provider'.
      
      Modifications qui ne seront pas validées :
        (utilisez "git add <fichier>..." pour mettre à jour ce qui sera validé)
        (utilisez "git checkout -- <fichier>..." pour annuler les modifications dans la copie de travail)
      
              modifié :         package-lock.json
      
      aucune modification n'a été ajoutée à la validation (utilisez "git add" ou "git commit -a")
      
      

      In my global config, the locale is set to ‘fr-FR’ and … again, my configuration is the one here . I tried as well with [Babene’s config] removing any other module… (https://forum.magicmirror.builders/post/92126) :

      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
                  module: 'MMM-soccer',
                  position: 'top_right',
                  config: {
                      colored: true,
                      logos: true,
                      rotationInterval: 20 * 1000, // 20 seconds instead of 15 (default)
                      provider: {
                          'football-data': {
                              apiKey: 'xxxxx' // Replace with your API key
                          }
                      },
                      competitions: [
                          {
                              code: 'EC', // European championship
                              standings: {
                                  provider: 'football-data',
                                  focusOn: 'GER', // Germany
                                  maxEntries: 5
                              },
                              schedules: {
                                  provider: 'football-data',
                                  maxEntries: 7
                              }
                          },
                      ]
                  }
              },
      
      
      	]
      

      But nothing comes… looks like my API Key is maybe not working for v3 ? It was perfectly working with initial version though

      Would you have any suggestion in order to make it work ?

      posted in Sport
      P
      pikasso