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

    Odissine

    @Odissine

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

    Odissine Unfollow Follow

    Latest posts made by Odissine

    • RE: MMM-Paris-RATP-PG - Paris: Bus, Metro, RER, Tramway & Velib

      Je ne suis pas developpeur mais le problème se situe ici pour moi … !this.loaded … comme il n’arrive pas a charger je ne sais quoi … il m’affiche le message “chargement” ou “loading…” …

      If someone can help me :)

      if (lines.length > 0) {
      if (!this.loaded) {
      wrapper.innerHTML = “Chargement …”;
      wrapper.className = “dimmed light small”;
      return wrapper;
      } else {
      wrapper.className = “paristransport”;
      wrapper.appendChild(table);
      table.className = “small”;
      }
      } else {
      wrapper.className = “small”;
      wrapper.innerHTML = “Configuration now requires a ‘lines’ element.
      Check github da4throux/MMM-Paris-RATP-PG
      for more information”;
      }

      posted in Transport
      O
      Odissine
    • Screenscrapper into MM ?

      Hello everyone !

      Just want to know if it’s possible to add a way to show everyday an information regarding a random Game of any specific system enterntainment.

      Website with all information regarding Games Data : https://www.screenscraper.fr/index.php

      Is there a way to use an iframe or directly a specific API ?

      It should be great to have a random game information (or the birthday game information)

      Ex : It has been 20 years old : just came out James Bond 007 on Nintendo 64 (just an exemple :p)

      Anway thanks for your help :)

      posted in Requests
      O
      Odissine
    • RE: MMM-Ratp

      Hello

      J’ai semble-t-il le meme soucis … j’ai ajouté 3 fois le module MMM-Ratp pour avoir les infos sur le une ligne de bus, ensuite pour un rer et enfin le metro… Ceci donne :

      {
      		module: 'MMM-Ratp',
      		position: 'top_right',
      		header: 'Bus 113 (vers la gare)', // the title that will be displayed on top on the widget
           		config:{
      		        apiURL:'https://api-ratp.pierre-grimaud.fr/v4/schedules/buses/113/place%2Bde%2Bla%2Bresistance/R',
      	        }
      		},
      		{
      			 module: 'MMM-Ratp',
      			 position: 'top_right',
      			 header: 'RER A (vers Nation)', // the title that will be displayed on top on the widget
      			 config:{
      				 apiURL:'https://api-ratp.pierre-grimaud.fr/v4/schedules/rers/A/neuilly%2Bplaisance/A',
      				}
      		},
      		{
      			 module: 'MMM-Ratp',
      			 position: 'top_right',
      			 header: 'Metro 9 (vers Grands Boulevards)', // the title that will be displayed on top on the widget
      			 config:{
      				 apiURL:'https://api-ratp.pierre-grimaud.fr/v4/schedules/metros/9/nation/R',
      				}
      		},
      

      Tout fonctionne nicke mais les headers ne s’affichent pas … QUand je regarde le code html, je vois undefined en lieu et place de la valeur (avec en plus style=“display:none” … )

      Bref Si qq’un peut m’aider ;)

      Merci :p

      posted in Troubleshooting
      O
      Odissine
    • Sytadin, info traffic ... Possible ?

      Hello all
      I wanted to know if it should be possible to have Traffic from Sytadin.fr or info traffic direct on MM?

      Like a map with red, orange or green road ;) … juste like it shows on the site

      Thanks in advance is one dev car help me ^^

      posted in Requests
      O
      Odissine
    • RE: MMM-Paris-RATP-PG - Paris: Bus, Metro, RER, Tramway & Velib

      @da4throux hello
      Dis moi je voulais savoir si le module était toujours fonctionnel ? J’ai toujours le même message : loading … je sais plus quoi :)

      Ci dessous ma config de module je pige pas … j’ai testé un autre module et rien ne s’affiche du coup je me demandais si la ratp n’avait pas mis à jour son api ?

      {
        module: 'MMM-Paris-RATP-PG',
        position: 'top_right',
        header: 'Connections',
        config: {
              debug: false,
      	lineDefault: {
      	     updateInterval: 1 * 2 * 60 * 1000,
      	}, 
      	lines : [
      		{type: 'rers', line: 'A', stations: 'neuilly+plaisance', destination: 'A', label: 'RER A', firstCellColor: '#7BA3DC'},
      		//{type: 'traffic',  line : [ 'rers' ,  'A' ],  firstCellColor : 'Blue',  lineColor : 'red'},
      		//{type: 'metros',  line : '9',  stations : 'grands+boulevards', destination : 'A' ,  label : '9',  firstCellColor : '#6ECA97'},
      		//{type: 'pluie',  place : '93330',  updateInterval : 1 * 5 * 60 * 1000,  label : 'Paris' ,  iconSize : 0.70},
      	],
        },
      },
      
      posted in Transport
      O
      Odissine