@jimjay203 Actually I don’t know. But I know for sure that the module displays just the data which are given to the HAFAS system. If your provider delivers such information then it would be possible to display them.
Read the statement by Michael Teeuw here.
Posts made by raywo
-
RE: MMM-PublicTransportHafas – Public transport information for all stations known to Deutsche Bahn
-
RE: MMM-PublicTransportHafas – Public transport information for all stations known to Deutsche Bahn
@Vauxdvihl Unfortunately I can’t do anything about this. Obviously MVG or DB didn’t update their data accordingly.
-
RE: MM docker container problem with mac and linux
@tomasz2101 In my
config.js
I put""
in theaddress
setting. I also have"::ffff:192.168.2.1/120"
included in myipWhitelist
. My home network is192.168.2.0
.my
config.js
var config = { address: "", // - "", "0.0.0.0", "::" to listen on any interface // Default, when address config is left out, is "localhost" port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.2.1/120", "192.168.2.110", "172.17.0.1"] /* module config */ }
-
RE: MM docker container problem with mac and linux
@tomasz2101 This looks okay to me. Although the log states
"WARNING! Could not find config file. Please create one. Starting with default configuration."
.
Where did you put yourconfig.js
file? Is it in~/magic_mirror/config
on your mac? -
RE: MM docker container problem with mac and linux
@tomasz2101 Why is that not according to documentation?
I have a simliar setup like you. I run docker on my mac and access the mirror instance via my mac it works just fine.Maybe you should try it without creating your own docker image. Try the solution as described in the MagicMirror documentation.
-
RE: MM docker container problem with mac and linux
@tomasz2101 Try to set
ipWhitelist
to[ "127.0.0.1", "::ffff:127.0.0.1", "::1" ]
. If you want to access the mirror from your Linux or Mac machine add their respective IPs too. -
RE: MMM-PublicTransportHafas – Public transport information for all stations known to Deutsche Bahn
@onkelbobby I’ve made an update to the module. It is now possible to provide key-value pair which are used to replace strings in the displayed directions. Use the option
replaceInDirections
. For more information see the documentation. -
[MMM-GameOfLife] A Game of Life simulation for your MagicMirror
Here’s another module I programmed. It is probably one of the best modules ever for the MagicMirror because it does absolutely nothing useful. It just displays and simulates a game board for the Game of Life.
Conway’s Game of Life is a very interesting thing in information since. Every true nerd should simulate the game on their MagicMirror.
-
RE: MMM-PublicTransportHafas – Public transport information for all stations known to Deutsche Bahn
@onkelbobby If your mirror displays
"STR"
your transport provider sends it that way.One way to suppress that would be to set the option
showOnlyLineNumbers
totrue
and providing a custom css file with a rule like so:.str11:before { content: "Tram "; }