<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MMM-MyCommute and Japanese addresses]]></title><description><![CDATA[<p dir="auto">Hey Magic Mirror community.<br />
Has anyone any recommendations for modules using public transit departure times through google maps api?<br />
I tried MyCommute, however it does not seem to like my Japanese address.<br />
Here is my config:</p>
<pre><code>/* Magic Mirror Config Sample
 *
 * By Michael Teeuw http://michaelteeuw.nl
 * MIT Licensed.
 *
 * For more information how you can configurate this file
 * See https://github.com/MichMich/MagicMirror#configuration
 *
 */

var config = {
	address: "localhost", // Address to listen on, can be:
	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
	                      // - another specific IPv4/6 to listen on a specific interface
	                      // - "", "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"], // Set [] to allow all IP addresses
	                                                       // or add a specific IPv4 of 192.168.1.5 :
	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
	                                                       // or IPv4 range of 192.168.3.0 --&gt; 192.168.3.15 use CIDR format :
	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],

	language: "en",
	timeFormat: 24,
	units: "metric",

	modules: [
		{
			module: "alert",
		},
		{
			module: "updatenotification",
			position: "top_bar"
		},
		{
			module: "clock",
			position: "top_left"
		},
		{
			module: "calendar",
			header: "Upcoming Holidays",
			position: "top_left",
			config: {
				calendars: [
					{
						symbol: "calendar-check-o ",
						url: "webcal:https://calendar.google.com/calendar/ical/en.japanese%23holiday%40group.v.calendar.google.com/public/basic.ics"
					}
				]
			}
		},

{
  module: 'MMM-MyCommute',
  position: 'bottom_left',
  config: {
    apikey: 'correct api key, requests code 200 on maps api',
    origin: '東京都新宿区市谷加賀町２丁目３',
    startTime: '06:00',
    endTime: '21:59',
    destinations: [
      {
        destination: 'Kojimachi Station, ４丁目 麹町 千代田区 東京都',
        label: 'Kojimachi Station',
        mode: 'transit',
        color: '#82E5AA'
      },
      {
        destination: 'Shinjuku Station, ３丁目-３８ 新宿 新宿区 東京都',
        label: 'Shinjuku Station',
        mode: 'transit'
      },
    ]
  }
},

			{
			module: "currentweather",
			position: "top_right",
			config: {
				location: "",
				locationID: "1850147",  //ID from http://www.openweathermap.org/help/city_list.txt
				appid: "6f1d84ecbb4354040e5f04388ccab61b"
			}
		},

	]

};




/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}

</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/10457/mmm-mycommute-and-japanese-addresses</link><generator>RSS for Node</generator><lastBuildDate>Thu, 13 Aug 2026 09:44:43 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/10457.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 16 May 2019 04:17:49 GMT</pubDate><ttl>60</ttl></channel></rss>