Read the statement by Michael Teeuw here.
-
@Klzow same here, sometimes it works for a few days but usually it stops working within 24h
-
I don’t get it to work. Followed the instructions in the readme and registered to get th APIkey. But it still doesn’t start.
What could be wrong? Here is the output:magicmirror@2.0.0 start /home/pi/MagicMirror
electron js/electron.jsLoading config …
Loading module helpers …
Initializing new module helper …
No helper found for module: faceemployee.
Initializing new module helper …
No helper found for module: compliments.
Initializing new module helper …
All module helpers loaded.
Starting server op port 8080 …
Server started …
Connecting socket for: MMM-Facial-Recognition
Staring module helper: MMM-Facial-Recognition
Connecting socket for: MMM-ResRobot
Starting node_helper for module: MMM-ResRobot
Connecting socket for: newsfeed
Starting module: newsfeed
Sockets connected & modules started …
Launching application.
Create new news fetcher for url: http://nyhetsbrev.viktoria.se/feed/ - Interval: 300000
[MMM-Facial-Recognition] Facerecognition started…
[MMM-Facial-Recognition] Loading training data…
[MMM-Facial-Recognition] ALGORITHM: LBPH
[MMM-Facial-Recognition] Training data loaded!
[MMM-Facial-Recognition] --------------------
[MMM-Facial-Recognition] PiCam connected -
Hi,
Could you please post your config? It seems that MMM-ResRobot is never executed. -
Here is my config:
{
module: “MMM-ResRobot”,
position: “left”,
header: “Departures”,
config: {
from: “740059355”, // ResRobot Station ID (or a comma-separated string of IDs)
to: “740059412”, // ResRobot Station ID of destination (or a comma-separated string of IDs)
maximumEntries: 6, // Number of departures to show on screen
truncateAfter: 5, // A value > 0 will truncate direction name at first space after characters. 0 = no truncation
apiKey: “a6e181d4-3065-4214-a30b-780163xxxxxx” // Your ResRobot apiKey
}
}, -
Hi,
I copied your config and eslint complained about the quote characters. Make sure that you use the standard " character, not “ or ”.
Using your config with my apiKey works as it should.
/j -
@Notumlord and @Klzow, I think I have found the issue. When the ResRobot API call failed for some reason the next update was never scheduled resulting in a “freeze”. I have pushed an update to github which schedules an update when the API call fails. (In my case the ResRobot site returned a “site unavailable” error every now and then which froze the module) Sorry for the bug!
-
@Alvinger Perfect! Thank you very much! Have been running it for 48 hours without any problem now.
-
New version out with one minor change: transportation type icons are now displayed (to the left of the linenumber). All rail-bound types are displayed as trains (fa-train), all buses are displayed as bus (fa-bus) and all waterborne transportation is displayed as ship (fa-ship).
-
Thanks @Alvinger for an awesome module! However, I have a problem when I add more than one destination (to:). Displays only the result of the destination that appears first.
Here is my config.js:
{ module: "MMM-ResRobot", position: "left", header: "Departures from Skanör C", config: { from: "740000950", // ResRobot Station ID (or a comma-separated string of IDs) to: "740000003,740001586", // ResRobot Station ID of destination (or a comma-separated string of IDs) maximumEntries: 6, // Number of departures to show on screen truncateAfter: 5, // A value > 0 will truncate direction name at first space after characters. 0 = no truncation apiKey: ”[My API-key]" // Your ResRobot apiKey } },
-
Hi,
you need to specify a station id in “from” as well. “from” is used to find the station’s departures, “to” is used to differentiate between destinations going from the “from” station.Change “from” to ‘from: “740000950,740000950”’ to make it work as you want.