I'm using ANT+ communication to receive data from a bicycle power meter in my app. I create a session with this code:
ActivityRecording.createSession({:sport=>Toybox.ActivityRecording.SPORT_CYCLING,:name=>"myCycleApp"});
The reason for this is that I want to display additional data measured by the SPORT_CYCLING profile in Garmin Connect. Without specifying this, it's categorized as an "Other" type activity, and extra stats won't be displayed.
So, I definitely need :sport=>SPORT_CYCLING
, but then the myCycleApp
name becomes Cycling
in Garmin Connect.
Another answer I found mentioned specifying a location, but that didn't help. Additionally, it's mentioned that SPORT_CYCLING is already deprecated. So how can I display this additional data in Garmin Connect without setting SPORT_CYCLING and at the same time, have the activity name as myCycleApp
?
Thanks!