Hi…
since a few weeks I’m facing a problem that the current bus departures for one specific bus stop in Munich is not working. I’m running the MMM_PublicransportHafas Module 3 times on my mirror and two instances are running perfectly fine - one showing suburban trains “Mittersendling” , and another one for bus station “Heckenstallerstrasse”. But the third instance that is meant to show the bus departures from station “Adunistrasse” only feeds back something like “no reachable departures”.

I crosschecked it with DB website and here the next departures are shown.

the code used for “Heckenstallerstrasse” and for “Adunistrasse” is absolutely identical except the station numbers.
// MMM-PublicTransportHafas Heckenstallerstr
{
module: "MMM-PublicTransportHafas",
position: "bottom_right",
config: {
stationID: "000790109", // eigene stationID eintragen: Heckenstallerstr
stationName: "Heckenstallerstrasse", // Replace with your station name!
headerAppendix: "Richtung Harras", // wohin es gehen soll - wird nach dem station Name angezeigt
direction: "008004130", // Show only departures heading to this station. (A station ID.) Harras
ignoredLines: [], // Which lines should be ignored? (comma-separated list of line names)
excludedTransportationTypes: [], // Which transportation types should not be shown on the mirror? (comma-separated list of types) possible values: StN for tram, BuN for bus, s for suburban
timeToStation: 0, // How long do you need to walk to the next Station?
showTableHeaders: false, // ob die Überschriften angezeigt werden sollen
showColoredLineSymbols: true, // Want colored line symbols?
useColorForRealtimeInfo: true, // Want colored real time information (timeToStation, early)?
showTableHeadersAsSymbols: false, // Table Headers as symbols or text?
maxUnreachableDepartures: 0, // How many unreachable departures should be shown?
maxReachableDepartures: 5, // How many reachable departures should be shown?
customLineStyles: "mvg", // Prefix for the name of the custom css file. ex: Leipzig-lines.css (case sensitive)
showOnlyLineNumbers: true, // Display only the line number instead of the complete name, i. e. "11" instead of "STR 11"
replaceInDirections: { // Ersetzt gewisse Anzeigen in den Destinations z.B. München durch nix
"München": "", "\\,": "",
},
},
},
// MMM-PublicTransportHafas Adunistr
{
module: "MMM-PublicTransportHafas",
position: "bottom_right",
config: {
stationID: "000790090", // eigene stationID eintragen: Heckenstallerstr
stationName: "Adunistrasse", // Replace with your station name!
headerAppendix: "Richtung Harras", // wohin es gehen soll - wird nach dem station Name angezeigt
direction: "000624609", // Show only departures heading to this station. (A station ID.) Harras
ignoredLines: [], // Which lines should be ignored? (comma-separated list of line names)
excludedTransportationTypes: ["suburban", "regional"], // Which transportation types should not be shown on the mirror? (comma-separated list of types) possible values: StN for tram, BuN for bus, s for suburban
timeToStation: 0, // How long do you need to walk to the next Station?
showTableHeaders: false, // ob die Überschriften angezeigt werden sollen
showColoredLineSymbols: true, // Want colored line symbols?
useColorForRealtimeInfo: true, // Want colored real time information (timeToStation, early)?
showTableHeadersAsSymbols: false, // Table Headers as symbols or text?
maxUnreachableDepartures: 0, // How many unreachable departures should be shown?
maxReachableDepartures: 5, // How many reachable departures should be shown?
customLineStyles: "mvg", // Prefix for the name of the custom css file. ex: Leipzig-lines.css (case sensitive)
showOnlyLineNumbers: true, // Display only the line number instead of the complete name, i. e. "11" instead of "STR 11"
replaceInDirections: { // Ersetzt gewisse Anzeigen in den Destinations z.B. München durch nix
"München": "", "\\,": "",
},
},
},
What am I doing wrong?!