Read the statement by Michael Teeuw here.
MMM-MyCommute
-
@jeffers1984 you have two issues:
label: "Sarah Work", mode: "driving", }, } destination: "...", label: "Nursery", mode: "driving", }, { destination: "...", label: "... Community",
you start the block with label nursery with a closing instead of an opening bracket.
second issue is in the newsfeed you have duplicated feeds, because you created one object for all instead of one for each feed. Therefore you will only get the last newsfeed, if you want all you have to do:
feeds: [ { title: "Everton FC", url: "feeds.evertonfc.com/everton-news?format=xml", },{ title: "BBC Headline", url: "http://feeds.bbci.co.uk/news/rss.xml", },{ title: "BBC Technology", url: "http://feeds.bbci.co.uk/news/technology/rss.xml", },{ title: "BBC Science", url: "http://feeds.bbci.co.uk/news/science_and_environment/rss.xml", } ]
I doubt that those issues are coming from the node 10 upgrade and it worked before :face_with_stuck-out_tongue_winking_eye:
-
@strawberry-3-141 ahh - now you say that… I did add the nursery route at the same time!
🙈 thanks for your help!! I will try and action your changes later!
-
This post is deleted! -
This post is deleted! -
Is this still working as designed? I reinstalled my magicmirror recently, and when I went to get this module working, it pointed me to get an API key at https://developers.google.com/maps/documentation/javascript/get-api-key which no longer appears to be free?
This is all I had for my config previously, so I can’t find if/what my key previously was:
{ module: 'MMM-MyCommute', position: 'top_left', header: 'Commute Times', classes: 'default everyone', config: { travelTimeFormat: "h[h] m[m]" } },
I don’t know how it even was working since it doesn’t have the API key, but it definitely was working fine for months.
-
so i need to pay for the google API or why do they want to know my creditcard or bankaccount…?
-
@kecko Google changed the rules. As long as you are under a certain number of request, the. It’s still free. But if you go above that then you’ll automatically be billed. It used to be that you’d just get cut off at the threshold. I don’t remember exactly what the threshold is but I’m sure a quick search will turn it up.
-
@j-e-f-f allright thanks for the info!
-
Hi, thanks for the Module but i have a Problem with.
I have add 4 Stations and sometime the Modul works for 2 Stations.
But after 10 min i got a red Error on the working stations.Whats the Problem?
Thanks.
-
Each To->From request costs 1 transaction query. In my case, I have 3 copies of the module, with 3, 2, and 1 lookup respectively, giving me 6 queries every time the module refreshes (which is every 10 minutes).
Note that Google gives $200 free credits per month for the Developer API’s. See this link for more details
https://developers.google.com/maps/documentation/directions/usage-and-billing
If I’m reading it right, then based on the above you’d need to have 20,000 queries per month to exceed the free credits. Based on my usage, I’ll have around 26,000 per month (36 queries per hour * 24 hours * 30 days), so I’ll probably reduce the number of queries to get under the limit.