codemumbler / fitTimer

Workout/yoga session timer that prompts user to change exercise/move/pose.
MIT License
0 stars 0 forks source link

configurable workouts #1

Open jeremybuis opened 8 years ago

jeremybuis commented 8 years ago

Is it possible to allow xml/json pre configured workouts that can be either added to this repo, or by a user?

For me, if I could configure a list of exercises and the timings for breaks between and how long to do each exercise, that would be really cool

This would probably be a pretty big feature

Would be pretty useful to have another repo that holds different workouts/routines where you could accept pull requests etc from other users, and include that other repo as a dependency where you can select the workout you want

Does this already exist?

codemumbler commented 8 years ago

These are great ideas. Users designing custom workouts is what I hope becomes core functionality. Eventually, the hope is users will be able to build workouts in the app, but that is a ways off yet. Storing the workouts in a separate repo is a good call. I have not yet considered the format of the workouts, but I like json.

The format could be pretty simple: { 'name': 'Basic yoga', 'poses': [ { 'name': 'Mountain pose', 'duration': 45 }, ... other poses ... ] }