Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Clock face templates?

Are there any templates available that offer more than just the clock part?

I'm by no means a developer but I can somewhat get by going through some of this code but I dont know enough to be able to correctly setup all the elements I'm wanting on a clock face.

 

Are there any templates that are similar to a fitbit provided clockface that I would be able to use and modify?

I'm mostly just unsure how to add the date, day, heart rate and steps 

Best Answer
6 REPLIES 6

There are some threads around about HR, and other activity values.

check this: https://community.fitbit.com/t5/SDK-Development/Display-Current-Number-of-Steps-on-the-WatchFace/m-p...

 

I also posted a basic watch face thread asking for some feedback from experienced users. It is buggy for few things, but it does feature how to get the date.

https://community.fitbit.com/t5/SDK-Development/Basic-watch-face/m-p/2242201#M681

Best Answer
0 Votes

i'm new to this style of coding too, so had to do quite a bit of research myself to get something working.  theres a pic of my progress on instagram

 

i'd like to share my source, but it's still very messy and not all 100% working.  also, i don't guarantee my source, and the code snippet below, are the best or most efficient way to do it. and, additionally, the fitbit team hope to have some more complex sdk examples in the future, which will likely show the best way to do things.

 

if you're just working with text, date elements need to be converted to strings via an array, and you need to convert to get 12hr time

eg.

 

 

let today = new Date();
let hours = today.getHours();
let ampm = hours >= 12 ? 'PM' : 'AM'
let mins = util.zeroPad(today.getMinutes());

let hours = hours % 12;
let hours = hours ? hours : 12; // the hour '0' should be '12'

let monthNames = [
"January", "February", "March",
"April", "May", "June", "July",
"August", "September", "October",
"November", "December"
];
 
let weekdays = [
"Sunday", "Monday", "Tuesday",
"Wednesday", "Thursday", "Friday", "Saturday"
];

let weekdate = today.getDate();
let weekindex = today.getDay();
let monthIndex = today.getMonth();
 
time.innerText = `${hours}:${mins}`;
dateLabel1.innerText = `${weekdays[weekindex]}`;
dateLabel2.innerText = `${monthNames[monthIndex]} ${weekdate}`;
dateLabel3.innerText = `${ampm}`;

 

this isn't complete, as you still need the styles.css and inex.gui bits.  

 

for HRM, take a look at the HRM meter code on github.

 

have a look on this forum for other info about steps.

Best Answer

Thanks for this I will tinker around with it and see if I can get anywhere!

Best Answer
0 Votes

Totally agree... At the very least, zip up each of the current existing clock faces and allow as start up projects, this way those of us who are lazy (guilty as charged) and those new and learn by example can modify existing elements and tweak to our own customization. 

 

For example... the "Argyle" would be a perfect template for anyone who simply wants their own images with date, time and clickable stats.  Simply replacing img1, img2 and img3 with one the want would be enough custom for most.  

 

Please, if any of you programming gurus can recreate the "Argyle" and add the project to github it would be awesome.

 

If you are a fitbit developer and created the Argyle... It would be even better if you would share the project files so nobody has to recreate the wheel 🙂

Best Answer

Added as a suggestion... please feel free to vote Smiley Very Happy

 

Feature-Suggestions - Existing clock faces download project files

Best Answer
0 Votes

The Studio has sample projects. I just used one of those and fiddled with settings from the documentation and asked a few questions on here for specific things. 🙂

Best Answer
0 Votes