01-18-2018 15:09
01-18-2018 15:09
Hey folks,
As the subject says, i'm creating a Fallout themed watch face, and I'm trying to get a walking pip boy when i'm showing my current steps. I have the gif broken into separate .pngs, but I don't know the code to loop them.
Thanks!
01-23-2018 09:00
01-23-2018 09:00
@A_handcannon Welcome to the Fitbit forums! I moved your post to the SDK Board as there are more chances for you to receive an answer to your inquiry here.
I'm sure that users that check this board often will be able to answer your question. By being here on this board, I;m sure it will not take long to receive an answer.
See you around!
02-04-2018 11:52 - edited 02-04-2018 11:56
02-04-2018 11:52 - edited 02-04-2018 11:56
I am no experienced Javascript developer - and I think there are very many fallpits.
From the sample in https://github.com/Fitbit/sdk-bart/blob/master/app/index.js at least you could find this segment:
setInterval(function() { console.log("BART App running - Connectivity status=" + messaging.peerSocket.readyState + " Connected? " + (messaging.peerSocket.readyState == messaging.peerSocket.OPEN ? "YES" : "no")); }, 3000);
It gives a hint that you can set an interval, and make repeated calls. So if you replace the logging line with a call to a function that iterate through your pictures, maybe you'll succeed.
The bart sample also has example showing two different pictures depending if a train allows bicycles or not. https://github.com/Fitbit/sdk-bart
02-04-2018 20:16
02-04-2018 20:16
There's also a guide on the website about the different ways to create animations https://dev.fitbit.com/build/guides/user-interface/animations/
02-05-2018 03:29
02-05-2018 03:29
@JonFitbit do those animation features (scaling/rotation) work on image tags too?