• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Changing MMM-Traffic into using TomTom API

Scheduled Pinned Locked Moved Development
17 Posts 2 Posters 3.2k Views 2 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Away
    sdetweil @rxlDavid
    last edited by Sep 19, 2021, 3:52 PM

    @rxldavid javascript provides a built in library call JSON

    which provides 2 useful functions

    parse (text) = converts to javascript object
    stringify(object,routine(most if the time u would use null ),indentation ) = returns string of text

    so then u could

    console.log("mesage="+JSON.stringify(pointer_to_data_returned_from_api))
    

    to see it on the console (or somefile.txt if u redirect to a file)

    Sam

    How to add modules

    learning how to use browser developers window for css changes

    R 1 Reply Last reply Sep 19, 2021, 4:35 PM Reply Quote 0
    • R Offline
      rxlDavid @sdetweil
      last edited by rxlDavid Sep 19, 2021, 4:35 PM Sep 19, 2021, 4:35 PM

      @sdetweil
      I do know I think this project is too hard for me lol
      I now changed this:

        getCommute: function (api_url) {
          var self = this;
          fetch('https://api.tomtom.com/routing/1/calculateRoute/4x.xxx%2C9.xxx%3A4x.xxx%2C9.xx/json?avoid=unpavedRoads&key=<key>')
      	  .then(console.log('API SUCESS')
            .then(json => {
              self.duration = Math.round(json.routes[0].duration / 60);
              self.errorMessage = self.errorDescription = undefined;
              self.loading = false;
              self.updateDom();
            })
            .catch(e => {
              self.errorMessage = payload.error.message;
              self.errorDescription = payload.error.description;
              self.loading = false;
              self.updateDom();
            });
      
        },
      

      Now the "loading does not even appear I don’t know if that’s good or bad, but I cant even see my (console.log(‘API SUCESS’) in the .txt

      S 1 Reply Last reply Sep 19, 2021, 4:42 PM Reply Quote 0
      • S Away
        sdetweil @rxlDavid
        last edited by Sep 19, 2021, 4:42 PM

        @rxldavid ah, you are doing this in the modulename.js side, not node_helper…

        all messages in the modulename are shown in the developers window console

        ctrl-shift-i on the MM screen,

        select the console tab in the window that pops up

        u can filter to messages from a module by adding some unique part of the module name to the filter field (middle above the list of messages)

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        R 1 Reply Last reply Sep 19, 2021, 5:00 PM Reply Quote 0
        • R Offline
          rxlDavid
          last edited by Sep 19, 2021, 4:52 PM

          This post is deleted!
          R 1 Reply Last reply Sep 19, 2021, 5:16 PM Reply Quote 0
          • R Offline
            rxlDavid @sdetweil
            last edited by rxlDavid Sep 19, 2021, 5:08 PM Sep 19, 2021, 5:00 PM

            @sdetweil
            So I forgot to close a bracket, so now its again showing the Loading screen.
            I get the following error:
            Screenshot_2.png
            What does the :69 mean?

            Edit: this is line 69

             .catch(e => {
                    Line 69 self.errorMessage = payload.error.message;
                    self.errorDescription = payload.error.description;
                    self.loading = false;
                    self.updateDom();
                  });
            
            1 Reply Last reply Reply Quote 0
            • R Offline
              rxlDavid @rxlDavid
              last edited by rxlDavid Sep 19, 2021, 5:16 PM Sep 19, 2021, 5:16 PM

              @sdetweil
              The Same Error accured for Line 70, so I both commented those 2 lines.
              Now I get no Error, and the Loading disappeared, it now says:
              Screenshot_4.png

              1 Reply Last reply Reply Quote 0
              • 1
              • 2
              • 2 / 2
              2 / 2
              • First post
                16/17
                Last post
              Enjoying MagicMirror? Please consider a donation!
              MagicMirror created by Michael Teeuw.
              Forum managed by Sam, technical setup by Karsten.
              This forum is using NodeBB as its core | Contributors
              Contact | Privacy Policy