You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, is there a way to check if the device is paused at each point of the data stream for FIT files? I can get the total time paused but I can't see a way to check at specific times.
Cheers
The text was updated successfully, but these errors were encountered:
You can check the getPause(): DataPause; method on the object (event) you get back or even the events. However not all services or file formats do add pauses or events
/**
* Gets only the start type of events
*/
getStartEvents(): DataStartEvent[];
/**
* Gets only the stop type of events
*/
getStopEvents(): DataStopEvent[];
/**
* Gets the stop all type of events
*/
getStopAllEvents(): DataStopAllEvent[];
Keep me posted if you need more help and sorry for the late reply
Hi, is there a way to check if the device is paused at each point of the data stream for FIT files? I can get the total time paused but I can't see a way to check at specific times.
Cheers
The text was updated successfully, but these errors were encountered: