I don't see lap data in Activity::Info. Is it possible to add it in future release?
Apart from all the data that can be displayed using built-in data fields it would be nice to have startLocation and startTime too.
Thanks.
Current lap, current lap time and current distance can all be done programmatically .. I just did it recently for my app and I am not a proficient Connect IQ developer yet. So it is not that hard to do.
I will send you a PM.
thanks. What I need to be able to do is determine when the lap button is hit for use in a simpleDataField so that I can reset a counter. I figured that if I could capture the lap button when its pressed using the onKey function, that would do the trick but being a newbie, no luck yet with capturing the button event. Any thoughts?
thanks. What I need to be able to do is determine when the lap button is hit for use in a simpleDataField so that I can reset a counter. I figured that if I could capture the lap button when its pressed using the onKey function, that would do the trick but being a newbie, no luck yet with capturing the button event. Any thoughts?
If there's an answer to this then maybe post to the thread if possible. I'd love to know how to capture lap button presses as well.
thanks. What I need to be able to do is determine when the lap button is hit for use in a simpleDataField so that I can reset a counter. I figured that if I could capture the lap button when its pressed using the onKey function, that would do the trick but being a newbie, no luck yet with capturing the button event. Any thoughts?
- (Object) onTimerLap
The function onTimerLap will be called when a lap is added to the current activity.
- (Object) onTimerPause
The function onTimerPause will be called when the activity timer goes from the running state to the paused state.
- (Object) onTimerReset
The function onTimerReset will be called when the current activity is ended.
- (Object) onTimerResume
The function onTimerResume will be called when the activity timer goes from the paused state to the running state.
- (Object) onTimerStart
The function onTimerStart will be called when the activity timer goes from the stopped state to the started state.
- (Object) onTimerStop
The function onTimerStop will be called when the activity timer goes from the running state to the stopped state.