• 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.

MMM-ResRobot - Public transport information for Sweden

Scheduled Pinned Locked Moved Transport
138 Posts 27 Posters 165.6k 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.
  • A Offline
    Alvinger @noorm91
    last edited by Dec 14, 2023, 8:02 AM

    @noorm91 Please post your entire config for ResRobot (with the secrets masked).

    N 1 Reply Last reply Dec 14, 2023, 10:32 PM Reply Quote 0
    • P Offline
      Populus
      last edited by Dec 14, 2023, 8:31 PM

      I quickly looked but couldn’t find if “Kalmar län” is included?

      A N 2 Replies Last reply Dec 14, 2023, 10:30 PM Reply Quote 0
      • A Offline
        Alvinger @Populus
        last edited by Dec 14, 2023, 10:30 PM

        @Populus ResRobot covers all of Sweden as far as I know.

        P 1 Reply Last reply Dec 16, 2023, 8:14 PM Reply Quote 0
        • N Offline
          noorm91 @Alvinger
          last edited by Dec 14, 2023, 10:32 PM

          @Alvinger It’s all good, thank you!
          It seems that you have to restart the rpi for every change you do.

          Is there a way to see how many changes you have to do?
          For example 1. Bus departure station > 2. Transit station > 3. Final destination.
          Would also be nice to see how many minutes it takes from A-B.

          1 Reply Last reply Reply Quote 0
          • N Offline
            noorm91 @Populus
            last edited by Dec 14, 2023, 10:39 PM

            @Populus which stations are you looking for in Kalmar?

            1 Reply Last reply Reply Quote 0
            • P Offline
              Populus @Alvinger
              last edited by Dec 16, 2023, 8:14 PM

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

              @Populus ResRobot covers all of Sweden as far as I know.

              It doesn’t appear to have my local stations. Our network is “Kalmar Länstrafik”.

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

              @Populus which stations are you looking for in Kalmar?

              A 1 Reply Last reply Dec 16, 2023, 8:53 PM Reply Quote 0
              • A Offline
                Alvinger @Populus
                last edited by Dec 16, 2023, 8:53 PM

                @Populus According to Samtrafikens webpage Kalmar länstrafik is part of their network and should be included. Is there a specific station I could try to look up?

                P 1 Reply Last reply Dec 17, 2023, 6:39 PM Reply Quote 0
                • P Offline
                  Populus @Alvinger
                  last edited by Dec 17, 2023, 6:39 PM

                  This post is deleted!
                  1 Reply Last reply Reply Quote 0
                  • A Offline
                    axllin
                    last edited by axllin Feb 11, 2024, 5:58 PM Feb 11, 2024, 5:54 PM

                    Hi @Alvinger I have a question for you!

                    When I run npm run start I get the message:

                    [name-here]@raspberrypi:~/MagicMirror $ npm run start
                    
                    > magicmirror@2.26.0 start
                    > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
                    
                    [11.02.2024 18:46.51.586] [LOG]   Starting MagicMirror: v2.26.0
                    [11.02.2024 18:46.51.592] [LOG]   Loading config ...
                    [11.02.2024 18:46.51.596] [DEBUG] config template file not exists, no envsubst
                    [11.02.2024 18:46.51.600] [LOG]   Loading module helpers ...
                    [11.02.2024 18:46.51.603] [LOG]   No helper found for module: alert.
                    [11.02.2024 18:46.51.649] [LOG]   Initializing new module helper ...
                    [11.02.2024 18:46.51.651] [LOG]   Module helper loaded: updatenotification
                    [11.02.2024 18:46.51.655] [LOG]   No helper found for module: clock.
                    [11.02.2024 18:46.51.659] [LOG]   No helper found for module: weather.
                    [11.02.2024 18:46.51.661] [WARN]  No /home/[name-here]/MagicMirror/js/../modules/MMM-ResRobot/MMM-ResRobot.js found for module: MMM-ResRobot.
                    [11.02.2024 18:46.51.663] [LOG]   No helper found for module: MMM-ResRobot.
                    

                    The module doesn’t load and it posts something about not finding a .js for the module?

                    My current config in the config.js looks like this where I have pulled the station IDs from Trafiklab:

                    {
                                module: "MMM-ResRobot",
                                position: "top_right",
                                header: "Departures",
                                config: {
                                    routes: [
                                        {from: "[removed]", to: "[removed]"},
                                        ],
                                    skipMinutes: 0,
                                    maximumEntries: 3,
                                    maximumDuration: 60,
                                            getRelative: 10, 
                                    truncateAfter: 5,
                                    truncateLineAfter: 5,
                                                showTrack: true,
                                    coloredIcons: false,
                                    apiKey: "[my-api-key]",
                                          }
                                },
                    

                    Do you know what would be the issue with the module loading?

                    EDIT: I found the issue. I had the folder in /modules named as MMM-ResRobot-master. Removing the -master made it match the given module name in the config.js. It now works.

                    S 1 Reply Last reply Feb 11, 2024, 6:03 PM Reply Quote 0
                    • S Away
                      sdetweil @axllin
                      last edited by Feb 11, 2024, 6:03 PM

                      @axllin the
                      module name
                      folder name
                      modulename.js
                      and
                      register inside the modulename.js

                      must match exactly in text case

                      the message says we found the folder matching (cause there is an error for that too)
                      but not the js

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 10
                      • 11
                      • 12
                      • 13
                      • 14
                      • 14 / 14
                      • 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