@sdetweil: THANKS, I knew it was something simple… I guess i read the instructions [“Go to Fitbit …”] and just went to Fitbit, using my usual approach of launching it via my password manager. When I instead went to the dev site, it was straightforward to create an app. Thanks again!
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Fitbit2
-
RE: MMM-Fitbit2
I would love to try this module, but at stuck at the starting block of creating an app on the Fitbit site… When I go to Settings -> Applications on the FitBit site there is a place where it would list the authorized applications, but does not allow creation of a new application. I tried in Firefox and Chrome, but get the same output. My web searching seems to indicate most of the results are adding an app to the actual FitBit wearable, not to the account. This is an older ‘Alta’ model, and it has no fancy bells and whistles - just basic tracking which DOES show up on the FitBit web site. I feel like I am missing something very basic, but am just not seeing it.
-
RE: MMM-Worldclock
@bkeyport - Thanks! It works as you describe. I thought I had already tried removing that code to no avail, but obviously hadn’t. Thanks again!
-
RE: 3 Appointments from 2013 Appear in Calendar Every Day
Never mind… I think i have fixed it for now. I went into Google Calendar in the browser, searched for each event and deleted all recurrences. Within a couple of update cycles on the MagicMirror the events disappeared.
-
3 Appointments from 2013 Appear in Calendar Every Day
The Calendar module displays what appear to be all my current appointments [pulled from Google Calendar using the public .ics url].
In addition, every day at the top of the list are three that are not on my current Google calendar: one instance of one and two instances of a second. Both appear to have been weekly repeating appointments last used ~2013.
Since I don’t see them daily on the Google Calendar, nor on my Microsoft Outlook that is synced with the Google Calendar, I am stumped on how to troubleshoot this.
Any ideas?
-
RE: MMM-Worldclock
Hummm - It looks like the forum stripped out leading tabs and/or spaces, but the content look OK…
-
RE: MMM-Worldclock
Here you go:
{ module: “MMM-Worldclock”,
position: “bottom_right”, // This can be any of the regions, best results in top_left or top_right regions
config: { // See ‘Configuration options’ for more information.
timeFormat: ‘hh:mm A’, //defined in moment.js format()
style: ‘top’, //predefined 4 styles; ‘top’, ‘left’,‘right’,‘bottom’
offsetTimezone: null, // Or you can setEurope/Berlin
to get timegap difference from this timezone.null
will be UTC timegap.
clocks: [
{ title: “Home”,
flag: “us” },
{
title: “Italy”,
timezone: “Europe/Rome”,
flag: “it”,
},
{
title: “Durban, So Africa”, // Too long title could cause ugly text align.
timezone: “Africa/Johannesburg”, //When omitted, Localtime will be displayed. It might be not your purporse, I bet.
flag: “za”,
},
{ title: “Aruba”,
timezone: “America/Curacao”,
flag: “aw”,
},
] // Close clocks list
} // Close Worldclock config
}, // Close module MMM-Worldclock -
RE: MMM-Worldclock
Thanks for the module. I have installed it and have it working, but do have one question: How do I keep the top ‘home’ time zone from displaying? I already have the clock module running, so I don’t need a 2nd module telling me the local time… Unfortunately, when i remove the code for the home timezone, it still displays. Thanks in advance,