Teensy/Arduino Configuration Management Tool

Don Kelly

Well-known member
Is there a friendly CM tool for Teensy / Arduino that captures the whole Teensy environment? It'd be nice if there was a simple tool that captured:
- The current C code (sketch) with all tabs
- A snapshot of all libs used, both Arduino native and user add-ons
- The current version of Arduino IDE
- The current Teensy converter

The reason I think this would be helpful is that I find myself going back and wanting to run something from a year or two ago, and find the libs don't work, or there are multiple names of the same lib and I can't remember which one I used, etc. etc. I guess GitHub could be set up to do this, but I was wondering if there happened to be something already setup for this purpose.

Thanks for any suggestions! Sorry if there's already something out there and I'm just not aware of it!
 
If you are willing to step away from the Arduino IDE, try out PlatformIO. https://platformio.org

You can specify specific versions of libraries on a per-project basis, both from different sources as well as versioning within a single source.
 
Back
Top