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.

    MMM-ResRobot - Public transport information for Sweden

    Scheduled Pinned Locked Moved Transport
    138 Posts 27 Posters 199.5k Views 28 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.
    • AlvingerA Offline
      Alvinger @sweup
      last edited by

      @sweup did you restart the MagicMirror service after you updated?

      1 Reply Last reply Reply Quote 0
      • sweupS Offline
        sweup @sdetweil
        last edited by sweup

        @sdetweil - I only got this

        pi@raspberrypi:~ $ cd ~/MagicMirror/modules/MMM-ResRobot
        pi@raspberrypi:~/MagicMirror/modules/MMM-ResRobot $ git pull
        Updating 1618fcc..695f70d
        error: Your local changes to the following files would be overwritten by merge:
        	package.json
        Please commit your changes or stash them before you merge.
        Aborting
        pi@raspberrypi:~/MagicMirror/modules/MMM-ResRobot $ npm install
        npm WARN npm npm does not support Node.js v10.21.0
        npm WARN npm You should probably upgrade to a newer version of node as we
        npm WARN npm can't make any promises that npm will work with this version.
        npm WARN npm Supported releases of Node.js are the latest release of 4, 6, 7, 8, 9.
        npm WARN npm You can find the latest version at https://nodejs.org/
        up to date in 1.083s
        pi@raspberrypi:~/MagicMirror/modules/MMM-ResRobot $ 
        
        

        @Alvinger - I did a sudo reboot

        AlvingerA 1 Reply Last reply Reply Quote 0
        • AlvingerA Offline
          Alvinger @sweup
          last edited by

          @sweup it seems you have changed the file package.json

          Stash it away with “git stash” and try the update again.

          sweupS 1 Reply Last reply Reply Quote 0
          • sweupS Offline
            sweup @Alvinger
            last edited by sweup

            @Alvinger said in MMM-ResRobot - Public transport information for Sweden:

            git stash

            Like this?

            cd ~/MagicMirror/modules/MMM-ResRobot
            git stash
            npm install
            

            Edit:misspell

            AlvingerA 1 Reply Last reply Reply Quote 0
            • AlvingerA Offline
              Alvinger @sweup
              last edited by Alvinger

              @sweup
              git stash
              git pull
              npm install

              sweupS 1 Reply Last reply Reply Quote 0
              • sweupS Offline
                sweup @Alvinger
                last edited by

                @Alvinger - hmm something email adress. Any advice?

                pi@raspberrypi:~ $ cd ~/MagicMirror/modules/MMM-ResRobot
                pi@raspberrypi:~/MagicMirror/modules/MMM-ResRobot $ git stash
                
                *** Please tell me who you are.
                
                Run
                
                  git config --global user.email "you@example.com"
                  git config --global user.name "Your Name"
                
                to set your account's default identity.
                Omit --global to set the identity only in this repository.
                
                fatal: unable to auto-detect email address (got 'pi@raspberrypi.(none)')
                Cannot save the current index state
                pi@raspberrypi:~/MagicMirror/modules/MMM-ResRobot $ git pull
                Updating 1618fcc..695f70d
                error: Your local changes to the following files would be overwritten by merge:
                	package.json
                Please commit your changes or stash them before you merge.
                Aborting
                pi@raspberrypi:~/MagicMirror/modules/MMM-ResRobot $ npm install
                npm WARN npm npm does not support Node.js v10.21.0
                npm WARN npm You should probably upgrade to a newer version of node as we
                npm WARN npm can't make any promises that npm will work with this version.
                npm WARN npm Supported releases of Node.js are the latest release of 4, 6, 7, 8, 9.
                npm WARN npm You can find the latest version at https://nodejs.org/
                up to date in 1.02s
                
                
                S 1 Reply Last reply Reply Quote 0
                • S Do not disturb
                  sdetweil @sweup
                  last edited by

                  @sweup let’s find out what u changed
                  do

                  git diff

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  sweupS 1 Reply Last reply Reply Quote 0
                  • sweupS Offline
                    sweup @sdetweil
                    last edited by

                    @sdetweil - sry I’m a bit lost, do I do “git diff” after?

                    cd ~/MagicMirror/modules/MMM-ResRobot
                    git stash
                    git pull
                    npm install
                    
                    S 1 Reply Last reply Reply Quote 0
                    • S Do not disturb
                      sdetweil @sweup
                      last edited by

                      @sweup git stash fails cause u are not registered to git on your machine
                      git pull fails cause it would overwrite a change u.made to package.json

                      so, I was trying to find out what the change was, and how important it is…

                      the other commands won’t work til we resolve the diff(erence) issue

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      1 Reply Last reply Reply Quote 0
                      • sweupS Offline
                        sweup
                        last edited by

                        @sdetweil @Alvinger - thx guys, after

                        $ git config --global user.email "you@example.com" 
                        $ git config --global user.name "Your Name"
                        

                        I could solve it with git stash

                        S 1 Reply Last reply Reply Quote 0
                        • S Do not disturb
                          sdetweil @sweup
                          last edited by

                          @sweup yeh, but we don’t know what change u lost/stashed

                          Sam

                          How to add modules

                          learning how to use browser developers window for css changes

                          AlvingerA 1 Reply Last reply Reply Quote 0
                          • AlvingerA Offline
                            Alvinger @sdetweil
                            last edited by

                            @sdetweil @sweup
                            My guess is that it is an unintended change probably caused by saving rather than exiting when viewing the file.
                            Anyway, package.json only contains information about the module and can without issue be replaced with a “git pull”.

                            @sweup Great that you solved it. A small suggestion for the future: as most modules (and MagicMirror itself) uses Github you should read up on GIT and its basic commands. It will make life easier for you!

                            1 Reply Last reply Reply Quote 0
                            • AlvingerA Offline
                              Alvinger
                              last edited by

                              @sweup I just pushed a minor update with some new options. Feel free to try the new version out.

                              sweupS 1 Reply Last reply Reply Quote 0
                              • Z Offline
                                Zapman
                                last edited by

                                Hello! :D

                                Got some issue with the module. The module loads when starting up MagicMirror, but stays at “Fetching departures …”. I tried my API key here;
                                (https://api.resrobot.se/v2/trip?key=API-KEY-HERE&originId=740047279&destId=740010151&format=xml) and it worked fine. So the key itself seams to work. I’m using the API key from “ResRobot - Reseplanerare”. I set the key in the config.js.

                                My current config.js;

                                                {
                                			module: "MMM-ResRobot",
                                                        position: "top_right",
                                                        header: "Departures",
                                                        config: {
                                                                routes: [ // stations from: 
                                                                        {from: "740015972", to: ""}, 
                                                                ],
                                                                apiKey: "API-KEY-HERE"
                                                        },
                                                },
                                

                                Terminal message;

                                [2020-09-23 03:21:58.036] [LOG]    node_helper for MMM-ResRobot received a socket notification: CONFIG - Payload: {
                                  "updateInterval": 60000,
                                  "animationSpeed": 2000,
                                  "fade": true,
                                  "fadePoint": 0.25,
                                  "apiBase": "https://api.resrobot.se/v2/departureBoard?format=json&passlist=0",
                                  "apiKey": "API-KEY-HERE",
                                  "routes": [
                                    {
                                      "from": "740015972",
                                      "to": ""
                                    }
                                  ],
                                  "skipMinutes": 0,
                                  "maximumEntries": 6,
                                  "truncateAfter": 5,
                                  "truncateLineAfter": 5,
                                  "showTrack": true,
                                  "getRelative": 0,
                                  "coloredIcons": false,
                                  "iconTable": {
                                    "B": "fa fa-bus",
                                    "S": "fa fa-subway",
                                    "J": "fa fa-train",
                                    "U": "fa fa-subway",
                                    "F": "fa fa-ship"
                                  },
                                  "colorTable": {
                                    "B": "#DA4439",
                                    "S": "#019CD5",
                                    "J": "#FDB813",
                                    "U": "#019CD5",
                                    "F": "#444400"
                                  }
                                }
                                
                                

                                Maybe someone can have an idea what might be wrong here :crazy_face:

                                AlvingerA 2 Replies Last reply Reply Quote 0
                                • AlvingerA Offline
                                  Alvinger @Zapman
                                  last edited by

                                  @Zapman I’ll have a look. Your config looks fine at a first look.

                                  1 Reply Last reply Reply Quote 1
                                  • sweupS Offline
                                    sweup @Alvinger
                                    last edited by

                                    @Alvinger - thx for you work in this module!
                                    Sidenote, after updated my Rpi (3B) my wifi reception is far worst, never had problem with it before but now it’s loosing connection after a couple of minutes - but I was fast and manage to update to latest ResRobot :) working nicely

                                    1 Reply Last reply Reply Quote 0
                                    • AlvingerA Offline
                                      Alvinger @Zapman
                                      last edited by

                                      @Zapman said in MMM-ResRobot - Public transport information for Sweden:

                                                      {
                                      			module: "MMM-ResRobot",
                                                              position: "top_right",
                                                              header: "Departures",
                                                              config: {
                                                                      routes: [ // stations from: 
                                                                              {from: "740015972", to: ""}, 
                                                                      ],
                                                                      apiKey: "API-KEY-HERE"
                                                              },
                                                      },
                                      

                                      @Zapman You can’t have a comment in the middle of the config. Remove the " // stations from: " and it should work.

                                      This is what it looks like for me:
                                      a0a58f9d-1271-4144-bca1-34d3746a4ed6-image.png

                                      S 1 Reply Last reply Reply Quote 0
                                      • S Do not disturb
                                        sdetweil @Alvinger
                                        last edited by

                                        @Alvinger said in MMM-ResRobot - Public transport information for Sweden:

                                        @Zapman You can’t have a comment in the middle of the config. Remove the " // stations from: " and it should work.

                                        sure you can, they are ignored, there are comments all over the place

                                        Sam

                                        How to add modules

                                        learning how to use browser developers window for css changes

                                        AlvingerA 1 Reply Last reply Reply Quote 0
                                        • AlvingerA Offline
                                          Alvinger @sdetweil
                                          last edited by

                                          @sdetweil Yes, they should be. However, when I pasted @Zapman’s config into my test site, it didn’t work. When I removed the comment it worked. Go figure!

                                          Z S 2 Replies Last reply Reply Quote 0
                                          • Z Offline
                                            Zapman @Alvinger
                                            last edited by

                                            @Alvinger Everything is working great now! Thank you for the fast response to my issue! I’ll use this module a lot from now on :smiling_face_with_open_mouth:

                                            AlvingerA 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 2 / 7
                                            • First post
                                              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