@alexny007 Unless you have many (dozens) instances of the module running on the same account, it will stay far below the 200$ free tier limit, and it won’t cost you anything.
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-MyCommute
-
RE: MMM-MyCommute
Annoyingly enough, this is correct. Google is changing their Maps API access, and billing now needs to be set up for all uses of the API - including free tier. The 200$ limit is their free allowance, as long as you stay under that you don’t pay anything at all. Using only MMM-MyCommute should not even come close to that. But you still have to provide billing information, even if it’s never going to be used.
I have updated my account and project that I use for MMM-MyCommute, and it works just fine.
-
RE: MMM-MyCommute
@ATibbs I’m the author of the calendar-integration fork. It’s quite old but works stable enough for myself. OP has a very valid issue with it, in that it uses up a lot of API calls if you have many events refreshing often - so be careful to limit the showcalendarevents to a low value. I have it running with 3 events shown and haven’t had an API limit issue in many months of use.
I’ll take a look at upstream changes and update/rebase the fork to the current master, to keep it up to date and compatible.
-
RE: MMM-cryptocurrency - v1.4
Coinmarketcap changed the URLs to their sparkline graphs some time yesterday. Old URLs still load but don’t update anymore. I created a pull request with the updated URL.
-
RE: MMM-cryptocurrency - v1.4
I had the same issue on my mirror at first, too. The reason was me using an older version of Chromium. Older Electron versions could have the same issue - the color is transformed using CSS filtering, that has only become usable not very long ago. Try updating whichever display engine/browser you use, it should work then.
-
RE: MMM-PublicTransportBerlin - Public transport for Berlin and Brandenburg (departures)
@rudibarani Try the “direction” config value. It needs to be set to the target station ID. Only departures that go to that station will be shown then. I use it as well to filter out all the buses and only show the U-Bahn that I need from the local station. I need to add it to the documentation, forgot to do it.
-
RE: MMM-cryptocurrency - v1.4
@fox Can you post your module configuration from config.js? And have you pulled the latest code (master branch from https://github.com/matteodanelli/MMM-cryptocurrency)?
-
RE: MMM-cryptocurrency - v1.4
Hey,
thanks for this module! Exactly what I wanted for my mirror.
I took the liberty of implementing two new features, pull requests are up on Github:
-
Show weekly price graphs from coinmarketcap: https://github.com/matteodanelli/MMM-cryptocurrency/pull/6
-
Round the prices to a total number of significant digits, to keep a higher resolution on low-value prices: https://github.com/matteodanelli/MMM-cryptocurrency/pull/7
The property is set to 5 in the example. Note how BTC and ETH are both still showing two decimals, but XRP is showing 4, for a total of 5 or more digits.
Any comments are welcome! I tried to keep your coding conventions intact, though it wasn’t much code that I added :)
-
-
RE: MMM-MyCommute
@j.e.f.f I am aware of the API problem, which is why I set the config option to “off” by default. On my own mirror, I have 2 default destinations + max 3 calendar entries shown. With 5 destinations refreshing every 10 minutes, this amounts to a total of 720 requests per 24 hours, well below the limit. Of course users can set the calendar entries number higher, or configure more “static” destinations. Maybe one could implement an explicit console warning when too many destinations (10 or more) are configured, and one comes close to the limit?
-
RE: MMM-MyCommute
Hey,
I just found this module today, and it’s awesome, exactly what I was looking for! Multiple destinations - almost perfect. However I was missing the option of calendar integration. So I went ahead and built it: https://github.com/jclarke0000/MMM-MyCommute/pull/1
With it enabled, it shows extra destinations for upcoming events in all configured calendard that have a location (up to a maximum number). The destinations are configurable, same as normal ones - it only overwrites the location and title. Works perfectly for me so far. Any comments are welcome.