Hi,
I expected the following code to display the exercise name on the watch but it only displays "Go" and the reps to do. I want to display the free text "Air Squat" rather than an exercise from the enum, but non of the info is shown so far......
I can't find any code example of a strength workout, does anybody know what step properties I should be setting?
workoutStepMesg.SetWktStepName("Air Squat");
workoutStepMesg.SetExerciseCategory(ExerciseCategory.Squat);
workoutStepMesg.SetExerciseName(SquatExerciseName.Squat);
workoutStepMesg.SetNotes("Deep Squat");
workoutStepMesg.SetIntensity(Intensity.Active);
workoutStepMesg.SetDurationType(WktStepDuration.Reps);
workoutStepMesg.SetDurationValue(10);
workoutStepMesg.SetTargetType(WktStepTarget.Invalid);
Thanks
Luke